PGDMP  ' owspolicy8.2.48.2.48 00ENCODINGENCODINGSET client_encoding = 'UTF8'; false9 00 STDSTRINGS STDSTRINGS)SET standard_conforming_strings = 'off'; false: 126224572wspolicyDATABASEFCREATE DATABASE wspolicy WITH TEMPLATE = template0 ENCODING = 'UTF8'; DROP DATABASE wspolicy; postgresfalse26152200publicSCHEMACREATE SCHEMA public; DROP SCHEMA public; postgresfalse; 00 SCHEMA publicCOMMENT6COMMENT ON SCHEMA public IS 'Standard public schema'; postgresfalse5< 00publicACL|REVOKE ALL ON SCHEMA public FROM PUBLIC; REVOKE ALL ON SCHEMA public FROM postgres; GRANT ALL ON SCHEMA public TO postgres; postgresfalse5261526797upgradeSCHEMACREATE SCHEMA upgrade; DROP SCHEMA upgrade; postgresfalse261224576plpgsqlPROCEDURAL LANGUAGE$CREATE PROCEDURAL LANGUAGE plpgsql; "DROP PROCEDURAL LANGUAGE plpgsql; postgresfalseF124724578 AddResultTYPECREATE TYPE "AddResult" AS ( "NewID" integer, "DeletedBy" text, "ExternalID" integer, "ExternalIDStatus" integer, "LastViewID" integer ); DROP TYPE public."AddResult"; publicpostgresfalse1515G124724580 DeleteResultTYPECREATE TYPE "DeleteResult" AS ( "Result" boolean, "ReferencedBy" text, "CheckedOutBy" text, "DeletedBy" text, "LastViewID" integer ); !DROP TYPE public."DeleteResult"; publicpostgresfalse1516H124724582 EditResultTYPEsCREATE TYPE "EditResult" AS ( "Result" boolean, "CheckedOutBy" text, "DeletedBy" text, "LastViewID" integer ); DROP TYPE public."EditResult"; publicpostgresfalse1517I124724584GetVersionsSinceResultTYPEyCREATE TYPE "GetVersionsSinceResult" AS ( "ObjectID" integer, "TypeID" smallint, "ViewID" integer, "Type" integer ); +DROP TYPE public."GetVersionsSinceResult"; publicpostgresfalse1518S124724586ReferenceResultTYPEbCREATE TYPE "ReferenceResult" AS ( "Result" boolean, "DeletedBy" text, "LastViewID" integer ); $DROP TYPE public."ReferenceResult"; publicpostgresfalse1519125524587$AccessCheck(bytea, integer, integer)FUNCTIONCREATE FUNCTION "AccessCheck"(token bytea, object_id integer, acc integer) RETURNS integer AS $$ DECLARE role_id integer[]; ret integer; BEGIN role_id := "GetUserRoleFromToken"(token); IF role_id IS NULL THEN RETURN 2; END IF; IF "AccessCheckByRoles"(role_id, object_id, acc) THEN ret := 1; ELSE ret := 0; END IF; RETURN ret; END $$ LANGUAGE plpgsql; QDROP FUNCTION public."AccessCheck"(token bytea, object_id integer, acc integer); publicpostgresfalse5105125524588/AccessCheckByRoles(integer[], integer, integer)FUNCTION'CREATE FUNCTION "AccessCheckByRoles"(role_id integer[], object_id integer, acc integer) RETURNS boolean AS $$ DECLARE ret integer; cur_rights integer; cur_desc_rights integer; is_folder boolean; use_desc boolean; ar_low integer; ar_up integer; object_exist boolean; BEGIN object_exist := false; ret := 0; ar_low := COALESCE(array_lower(role_id, 1), 0); ar_up := COALESCE(array_upper(role_id, 1), -1); for i in ar_low..ar_up loop use_desc := false; FOR is_folder, cur_desc_rights, cur_rights IN SELECT tt."IsFolder", COALESCE(ac."DescendantRights", 0), COALESCE(ac."SelfRights", 0) FROM "GetReverseAnsectorsOf"(object_id) AS path INNER JOIN "TypeToTable" AS tt ON path."TypeID" = tt."TypeID" LEFT OUTER JOIN "AccessControl" AS ac ON ac."ObjectID" = path."ID" AND ac."UserRoleID" = role_id[i] LOOP object_exist := true; IF use_desc THEN ret := ret | cur_desc_rights; ELSE ret := ret | cur_rights; END IF; IF (ret & acc) = acc THEN RETURN true; END IF; use_desc := use_desc OR is_folder; END LOOP; IF NOT object_exist THEN RETURN true; END IF; end loop; RETURN false; END $$ LANGUAGE plpgsql; ^DROP FUNCTION public."AccessCheckByRoles"(role_id integer[], object_id integer, acc integer); publicpostgresfalse51051255245894AddAuditRecord(timestamp with time zone, text, text)FUNCTION#CREATE FUNCTION "AddAuditRecord"(dateof timestamp with time zone, username text, "action" text) RETURNS void AS $$ DECLARE BEGIN INSERT INTO "AuditLog" ("Date", "User", "Action", "Display") VALUES (dateof, username, action, true); END $$ LANGUAGE plpgsql; fDROP FUNCTION public."AddAuditRecord"(dateof timestamp with time zone, username text, "action" text); publicpostgresfalse5105125524590#AddAuditRecordInternal(bytea, text)FUNCTIONCREATE FUNCTION "AddAuditRecordInternal"(token bytea, "action" text) RETURNS void AS $$ DECLARE username text; can_audit boolean; BEGIN SELECT "UserName", "CanAudit" INTO username, can_audit FROM "Tokens" WHERE "Data" = token; INSERT INTO "AuditLog" ("Date", "User", "Action", "Display") VALUES (transaction_timestamp(), username, action, can_audit); END $$ LANGUAGE plpgsql; KDROP FUNCTION public."AddAuditRecordInternal"(token bytea, "action" text); publicpostgresfalse5105V125526775'AddReference(integer, integer, integer)FUNCTIONCREATE FUNCTION "AddReference"(integer, integer, integer) RETURNS void AS $_$ DECLARE src integer; dst integer; count integer; BEGIN src := $1; dst := $2; count := $3; IF src = 0 OR dst = 0 OR count = 0 THEN RETURN; END IF; UPDATE "References" SET "Count" = "Count" + count WHERE "Src" = src AND "Dst" = dst; IF NOT FOUND THEN INSERT INTO "References" ("Src", "Dst", "Count") VALUES (src, dst, count); END IF; DELETE FROM "References" WHERE "Count" = 0; END; $_$ LANGUAGE plpgsql; @DROP FUNCTION public."AddReference"(integer, integer, integer); publicpostgresfalse51051255245911AddUserRights(integer, integer, integer, integer)FUNCTION~CREATE FUNCTION "AddUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer) RETURNS void AS $$ DECLARE cur_role_id integer; BEGIN IF self_rights != 0 OR desc_rights != 0 THEN UPDATE "AccessControl" SET "SelfRights" = "SelfRights" | self_rights, "DescendantRights" = "DescendantRights" | desc_rights WHERE "ObjectID" = object_id AND "UserRoleID" = role_id; IF NOT FOUND THEN INSERT INTO "AccessControl" ("ObjectID", "UserRoleID", "SelfRights", "DescendantRights") VALUES (object_id, role_id, self_rights, desc_rights); END IF; END IF; END $$ LANGUAGE plpgsql; tDROP FUNCTION public."AddUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer); publicpostgresfalse5105125524592BAddVersionedObjectEntry(integer, integer, smallint, integer, text)FUNCTIONCREATE FUNCTION "AddVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer, audit_name text) RETURNS integer AS $$ DECLARE ext_id_can_alloc boolean; ext_id integer; path integer[]; ret integer; rec RECORD; BEGIN IF "HasExternalID"(type_id) THEN SELECT eidp."CanAlloc", eidp."Value" INTO ext_id_can_alloc, ext_id FROM "ExternalIDPending" AS eidp INNER JOIN "AddsPending" AS ap ON eidp."ObjectID" = ap."ObjectID" WHERE eidp."ObjectID" = object_id AND ap."ChangelistID" = changelist_id ; END IF; DELETE FROM "AddsPending" WHERE "ObjectID" = object_id AND "ChangelistID" = changelist_id RETURNING "Path" INTO path; IF NOT FOUND THEN RAISE EXCEPTION 'Object not checked out for add'; END IF; INSERT INTO "VersionedObjects" ("ID", "TypeID", "Path", "AuditName") VALUES (object_id, type_id, path, "ExtractAuditName"(audit_name)); INSERT INTO "Versions" ("BeginViewID", "EndViewID", "ObjectID") VALUES (new_view_id, 2147483647, object_id) RETURNING "ID" INTO ret; IF NOT ext_id IS NULL THEN INSERT INTO "ExternalID" ("TypeID", "CanAlloc", "ObjectID", "Value") VALUES (type_id, ext_id_can_alloc, object_id, ext_id); END IF; RETURN ret; END $$ LANGUAGE plpgsql; DROP FUNCTION public."AddVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer, audit_name text); publicpostgresfalse5105125524593#AdvanceChangelist(integer, integer)FUNCTIONCREATE FUNCTION "AdvanceChangelist"(id integer, view_id integer) RETURNS void AS $_$ UPDATE "Changelists" SET "ViewID" = $2 WHERE "ID" = $1; $_$ LANGUAGE sql; GDROP FUNCTION public."AdvanceChangelist"(id integer, view_id integer); publicpostgresfalse5125924594 ChangelistsTABLECREATE TABLE "Changelists" ( "ID" integer NOT NULL, "ViewID" integer NOT NULL, "LastCheckPoint" integer DEFAULT 0 NOT NULL, "ClientDescription" text NOT NULL, "LastAccessed" timestamp with time zone NOT NULL ); !DROP TABLE public."Changelists"; publicpostgresfalse20215125524600AllocChangelist(integer, text)FUNCTION4CREATE FUNCTION "AllocChangelist"(view_id integer, client_desc text) RETURNS "Changelists" AS $_$ INSERT INTO "Changelists" ("ViewID", "ClientDescription", "LastAccessed") VALUES($1, $2, CURRENT_TIMESTAMP); SELECT * FROM "Changelists" WHERE "ID"=currval('"Changelists_ID_seq"'); $_$ LANGUAGE sql; KDROP FUNCTION public."AllocChangelist"(view_id integer, client_desc text); publicpostgresfalse3405 125524601AllocExternalID(smallint)FUNCTIONtCREATE FUNCTION "AllocExternalID"(type_id smallint) RETURNS integer AS $_$ SELECT COALESCE("BeginRange", 0) FROM ( SELECT "BeginRange", "ReserveExternalID"($1, "BeginRange") FROM ( SELECT "BeginRange" FROM "ExternalIDPool" WHERE "TypeID" = $1 AND "CanAlloc" ORDER BY "FreedAt", "BeginRange" ASC LIMIT 1) as first_free ) as dummy; $_$ LANGUAGE sql; :DROP FUNCTION public."AllocExternalID"(type_id smallint); publicpostgresfalse5125924602 ReferencesTABLECREATE TABLE "References" ( "Src" integer NOT NULL, "Dst" integer NOT NULL, "Count" integer NOT NULL, CONSTRAINT "Count" CHECK (("Count" >= 0)) ); DROP TABLE public."References"; publicpostgresfalse20225!125524605CanDelete(integer, integer[])FUNCTIONCREATE FUNCTION "CanDelete"(changelist_id integer, object_ids integer[]) RETURNS SETOF "References" AS $_$ SELECT ext_src.* FROM (SELECT refs.* FROM "GetPendingReferences"($1) AS refs WHERE "Dst" = ANY ($2) AND "Src" != ALL ($2) AND "Count" != 0) AS ext_src LEFT OUTER JOIN "CheckoutsPending" AS cp ON ext_src."Src" = cp."ObjectID" AND (cp."DeleteCheckPoint" != 2147483647) WHERE cp."ChangelistID" IS NULL OR cp."ChangelistID" != $1; $_$ LANGUAGE sql; ODROP FUNCTION public."CanDelete"(changelist_id integer, object_ids integer[]); publicpostgresfalse3425"125524606!CheckinReferencedObjects(integer)FUNCTIONCREATE FUNCTION "CheckinReferencedObjects"(changelist_id integer) RETURNS void AS $$ DECLARE entry RECORD; BEGIN FOR entry IN SELECT "Src", "Dst", "Count" FROM "ReferencesPending" WHERE "ChangelistID" = changelist_id LOOP UPDATE "References" SET "Count" = "Count" + entry."Count" WHERE "Src" = entry."Src" AND "Dst" = entry."Dst"; IF NOT FOUND THEN INSERT INTO "References" ("Src", "Dst", "Count") VALUES (entry."Src", entry."Dst", entry."Count"); END IF; END LOOP; DELETE FROM "References" WHERE "Count" = 0; DELETE FROM "ReferencesPending" WHERE "ChangelistID" = changelist_id; END; $$ LANGUAGE plpgsql; HDROP FUNCTION public."CheckinReferencedObjects"(changelist_id integer); publicpostgresfalse5105#1255246073CheckoutForAdd(integer, integer, smallint, integer)FUNCTION CREATE FUNCTION "CheckoutForAdd"(changelist_id integer, owner_id integer, type_id smallint, external_id integer) RETURNS "AddResult" AS $$ DECLARE checkout_cl_id integer; target_view_id integer; last_view_id integer; last_checkpoint integer; path integer[]; ext_id integer; ext_id_alloc boolean; ext_id_res_result integer; result "AddResult"; BEGIN --get the current check-out status SELECT "ChangelistID" INTO checkout_cl_id FROM "CheckoutsPending" WHERE "ObjectID" = owner_id AND "DeleteCheckPoint" != 2147483647; --if checked out return failure IF FOUND THEN result."DeletedBy" := "GetChangelistDescription"(checkout_cl_id); result."NewID" := 0; RETURN result; END IF; --check that the target view is latest for the parent SELECT "ViewID", "LastCheckPoint" INTO target_view_id, last_checkpoint FROM "Changelists" WHERE "ID" = changelist_id; SELECT "BeginViewID" INTO last_view_id FROM "Versions" WHERE "ObjectID" = owner_id AND "EndViewID" = 2147483647 AND "BeginViewID" > target_view_id; IF FOUND THEN result."LastViewID" = last_view_id; result."NewID" := 0; RETURN result; END IF; -- get the path SELECT "Path" || owner_id INTO path FROM ( SELECT "Path" FROM "VersionedObjects" WHERE "ID" = owner_id UNION ALL SELECT "Path" FROM "AddsPending" WHERE "ObjectID" = owner_id ) as combined; --make the add INSERT INTO "AddsPending" ("ChangelistID", "Path", "CheckPoint") VALUES (changelist_id, path, last_checkpoint); result."NewID" := currval('"AddsPending_ObjectID_seq"'); --allocate external ids if needed IF "HasExternalID"(type_id) THEN IF external_id = 0 THEN ext_id := "AllocExternalID"(type_id); ext_id_alloc := TRUE; ELSE ext_id_res_result := "ReserveExternalID"(type_id, external_id); IF ext_id_res_result = 0 THEN ext_id := 0; ext_id_alloc := FALSE; ELSE ext_id_alloc := (ext_id_res_result = 2); ext_id := external_id; END IF; END IF; IF ext_id = 0 THEN --the delete is not really neccessary since transaction rollback will take care of --it but at this stage I don't want to destabilize things - EG DELETE FROM "AddsPending" WHERE "ObjectID" = result."NewID"; IF ext_id_alloc THEN result."ExternalIDStatus" := 1; ELSE result."ExternalIDStatus" := 2; END IF; result."NewID" := 0; RETURN result; END IF; INSERT INTO "ExternalIDPending" ("TypeID", "CanAlloc", "ObjectID", "Value") VALUES (type_id, ext_id_alloc, result."NewID", ext_id); result."ExternalID" := ext_id; END IF; RETURN result; END $$ LANGUAGE plpgsql; wDROP FUNCTION public."CheckoutForAdd"(changelist_id integer, owner_id integer, type_id smallint, external_id integer); publicpostgresfalse3265105$125524608#CheckoutForDelete(integer, integer)FUNCTIONi CREATE FUNCTION "CheckoutForDelete"(changelist_id integer, object_id integer) RETURNS "DeleteResult" AS $$ DECLARE result "DeleteResult"; checkout_cl_id integer; for_delete bool; target_view_id integer; last_view_id integer; last_checkpoint integer; BEGIN --get the current check-out status SELECT "ChangelistID", ("DeleteCheckPoint" != 2147483647) AS "ForDelete" INTO checkout_cl_id, for_delete FROM "CheckoutsPending" WHERE "ObjectID" = object_id; IF FOUND THEN --check that whether the object is checked out for delete IF for_delete THEN result."DeletedBy" := "GetChangelistDescription"(checkout_cl_id); result."Result" := FALSE; RETURN result; END IF; --check whether the object is checked out for edit not by us IF (checkout_cl_id != changelist_id) THEN result."CheckedOutBy" := "GetChangelistDescription"(checkout_cl_id); result."Result" := FALSE; RETURN result; END IF; END IF; --check that the target view is latest for this object SELECT "ViewID", "LastCheckPoint" INTO target_view_id, last_checkpoint FROM "Changelists" WHERE "ID" = changelist_id; SELECT max("EndViewID") INTO last_view_id FROM "Versions" WHERE "ObjectID" = object_id AND "EndViewID" > target_view_id AND "EndViewID" < 2147483647; IF NOT last_view_id IS NULL THEN result."LastViewID" := last_view_id; result."Result" := FALSE; RETURN result; END IF; --check if the object is referenced by others (note: this is different from CanDelete) IF "IsReferencedByOthers"(changelist_id, object_id) THEN result."Result" := FALSE; RETURN result; END IF; --check if there are children added by others IF "IsChildrenAddedByOthers"(changelist_id, object_id) THEN result."Result" := FALSE; RETURN result; END IF; -- update data making sure checked out is completely removed UPDATE "CheckoutsPending" SET "DeleteCheckPoint" = last_checkpoint WHERE "ObjectID" = object_id AND "ChangelistID" = changelist_id; IF NOT FOUND THEN INSERT INTO "CheckoutsPending" ("ObjectID", "ChangelistID", "EditCheckPoint", "DeleteCheckPoint") VALUES (object_id, changelist_id, 2147483647, last_checkpoint); END IF; result."Result" := TRUE; RETURN result; END $$ LANGUAGE plpgsql; TDROP FUNCTION public."CheckoutForDelete"(changelist_id integer, object_id integer); publicpostgresfalse3275105%125524609!CheckoutForEdit(integer, integer)FUNCTION<CREATE FUNCTION "CheckoutForEdit"(changelist_id integer, object_id integer) RETURNS "EditResult" AS $$ DECLARE checkout_cl_id integer; for_delete bool; target_view_id integer; last_view_id integer; last_checkpoint integer; result "EditResult"; BEGIN --get the current check-out status SELECT "ChangelistID", ("DeleteCheckPoint" != 2147483647) AS "ForDelete" INTO checkout_cl_id, for_delete FROM "CheckoutsPending" WHERE "ObjectID" = object_id; --if checked out return failure IF FOUND THEN IF for_delete THEN result."DeletedBy" := "GetChangelistDescription"(checkout_cl_id); ELSE result."CheckedOutBy" := "GetChangelistDescription"(checkout_cl_id); END IF; result."Result" := FALSE; RETURN result; END IF; --check that the target view is latest for this object SELECT "ViewID", "LastCheckPoint" INTO target_view_id, last_checkpoint FROM "Changelists" WHERE "ID" = changelist_id; SELECT max("EndViewID") INTO last_view_id FROM "Versions" WHERE "ObjectID" = object_id AND "EndViewID" > target_view_id AND "EndViewID" < 2147483647; IF NOT last_view_id IS NULL THEN result."LastViewID" := last_view_id; result."Result" := FALSE; RETURN result; END IF; --make the checkout INSERT INTO "CheckoutsPending" ("ObjectID", "ChangelistID", "EditCheckPoint", "DeleteCheckPoint") VALUES (object_id, changelist_id, last_checkpoint, 2147483647); result."Result" := TRUE; RETURN result; END $$ LANGUAGE plpgsql; RDROP FUNCTION public."CheckoutForEdit"(changelist_id integer, object_id integer); publicpostgresfalse3285105&1255246108CheckoutForReference(integer, integer, integer, integer)FUNCTION2CREATE FUNCTION "CheckoutForReference"(changelist_id integer, object_id integer, src_id integer, delta integer) RETURNS "ReferenceResult" AS $$ DECLARE result "ReferenceResult"; checkout_cl_id integer; target_view_id integer; last_view_id integer; last_checkpoint integer; BEGIN --get the current check-out status SELECT "ChangelistID" INTO checkout_cl_id FROM "CheckoutsPending" WHERE "ObjectID" = object_id AND "DeleteCheckPoint" != 2147483647; IF FOUND THEN result."DeletedBy" := "GetChangelistDescription"(checkout_cl_id); result."Result" := FALSE; RETURN result; END IF; --check that the target view is latest for this object SELECT "ViewID", "LastCheckPoint" INTO target_view_id, last_checkpoint FROM "Changelists" WHERE "ID" = changelist_id; SELECT max("EndViewID") INTO last_view_id FROM "Versions" WHERE "ObjectID" = object_id AND "EndViewID" > target_view_id AND "EndViewID" < 2147483647; IF NOT last_view_id IS NULL THEN result."LastViewID" := last_view_id; result."Result" := FALSE; RETURN result; END IF; PERFORM "DoCheckoutForReference"(changelist_id, last_checkpoint, object_id, src_id, delta); result."Result" := TRUE; RETURN result; END $$ LANGUAGE plpgsql; vDROP FUNCTION public."CheckoutForReference"(changelist_id integer, object_id integer, src_id integer, delta integer); publicpostgresfalse3395105T125526461.CleanupStaleData(interval, interval, interval)FUNCTIONCREATE FUNCTION "CleanupStaleData"(cl_grace_period interval, view_grace_period interval, audit_grace_period interval) RETURNS void AS $_$ BEGIN --want to prevent delete execution if there is nothing to do IF (SELECT COUNT(*) FROM "Changelists" WHERE "LastAccessed" <= (CURRENT_TIMESTAMP - $1)) > 0 THEN DELETE FROM "Changelists" WHERE "LastAccessed" <= (CURRENT_TIMESTAMP - $1); END IF; PERFORM "DeleteOldVersions"($2); IF (SELECT COUNT(*) FROM "AuditLog" WHERE "Date" <= (CURRENT_TIMESTAMP - $3)) > 0 THEN DELETE FROM "AuditLog" WHERE "Date" <= (CURRENT_TIMESTAMP - $3); END IF; END $_$ LANGUAGE plpgsql; |DROP FUNCTION public."CleanupStaleData"(cl_grace_period interval, view_grace_period interval, audit_grace_period interval); publicpostgresfalse5105'125524611!ClearChangelist(integer, integer)FUNCTIONCREATE FUNCTION "ClearChangelist"(id integer, up_to_checkpoint integer) RETURNS void AS $_$ DELETE FROM "CheckoutsPending" WHERE "ChangelistID" = $1 AND "EditCheckPoint" >= $2 AND "DeleteCheckPoint" >= $2; UPDATE "CheckoutsPending" SET "DeleteCheckPoint" = 2147483647 WHERE "ChangelistID" = $1 AND "DeleteCheckPoint" >= $2; DELETE FROM "ReferencesPending" WHERE "ChangelistID" = $1 AND "CheckPoint" >= $2; SELECT "FreeExternalID"(to_free."TypeID", to_free."Value", to_free."CanAlloc") FROM ( SELECT "TypeID", "CanAlloc", "Value" FROM "ExternalIDPending" AS eidp INNER JOIN "AddsPending" AS ap ON eidp."ObjectID" = ap."ObjectID" WHERE ap."ChangelistID" = $1 AND ap."CheckPoint" >= $2 ) as to_free; DELETE FROM "AddsPending" WHERE "ChangelistID" = $1 AND "CheckPoint" >= $2; UPDATE "Changelists" SET "LastCheckPoint" = $2 - 1, "LastAccessed" = CURRENT_TIMESTAMP WHERE "ID" = $1; DELETE FROM "Changelists" WHERE "LastAccessed" <= (CURRENT_TIMESTAMP - '15 min'::interval); $_$ LANGUAGE sql; NDROP FUNCTION public."ClearChangelist"(id integer, up_to_checkpoint integer); publicpostgresfalse5(125524612CreateLocalToken(text, bytea)FUNCTIONOCREATE FUNCTION "CreateLocalToken"(username text, token bytea) RETURNS integer[] AS $$ DECLARE canonical_name text; role_id integer[]; can_audit boolean; priv integer; privs integer; ar_low integer; ar_up integer; BEGIN PERFORM "FreeStaleTokens"(); SELECT "LocalUsers"."Name", "LocalUsers"."UserRoleID", "LocalUsers"."CanAudit" INTO canonical_name, role_id, can_audit FROM "LocalUsers" INNER JOIN "Versions" ON "LocalUsers"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647 AND upper("LocalUsers"."Name") = upper(username); IF NOT FOUND THEN RAISE EXCEPTION 'Invalid username'; END IF; --should we check for uniqueness here? privs := 0; ar_low := COALESCE(array_lower(role_id, 1), 0); ar_up := COALESCE(array_upper(role_id, 1), -1); FOR i IN ar_low..ar_up LOOP SELECT "Privileges" INTO priv FROM "UserRoles" INNER JOIN "Versions" ON "UserRoles"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647 AND "Versions"."ObjectID" = role_id[i]; privs := privs | priv; END LOOP; INSERT INTO "Tokens" ("Data", "UserRoleID", "UserName", "Created", "CanAudit", "Privileges") VALUES (token, role_id, canonical_name, CURRENT_TIMESTAMP, can_audit, privs); RETURN role_id; END $$ LANGUAGE plpgsql; EDROP FUNCTION public."CreateLocalToken"(username text, token bytea); publicpostgresfalse5105)125524613)CreateRemoteToken(text, bytea, integer[])FUNCTION}CREATE FUNCTION "CreateRemoteToken"(username text, token bytea, role_id integer[]) RETURNS void AS $$ DECLARE priv integer; privs integer; ar_low integer; ar_up integer; BEGIN PERFORM "FreeStaleTokens"(); --should we check for uniqueness here? privs := 0; ar_low := COALESCE(array_lower(role_id, 1), 0); ar_up := COALESCE(array_upper(role_id, 1), -1); FOR i IN ar_low..ar_up LOOP SELECT "Privileges" INTO priv FROM "UserRoles" INNER JOIN "Versions" ON "UserRoles"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647 AND "Versions"."ObjectID" = role_id[i]; privs := privs | priv; END LOOP; INSERT INTO "Tokens" ("Data", "UserRoleID", "UserName", "Created", "CanAudit", "Privileges") VALUES (token, role_id, username, CURRENT_TIMESTAMP, TRUE, privs); END $$ LANGUAGE plpgsql; YDROP FUNCTION public."CreateRemoteToken"(username text, token bytea, role_id integer[]); publicpostgresfalse5105125924614ViewsTABLECREATE TABLE "Views" ( "ID" integer NOT NULL, "Time" timestamp with time zone NOT NULL, "LastAccessed" timestamp with time zone DEFAULT now() NOT NULL ); DROP TABLE public."Views"; publicpostgresfalse20245*125524616 CreateView()FUNCTIONCREATE FUNCTION "CreateView"() RETURNS "Views" AS $$ INSERT INTO "Views" ("Time") VALUES(CURRENT_TIMESTAMP); SELECT * FROM "Views" WHERE "ID"=currval('"Views_ID_seq"'); $$ LANGUAGE sql; %DROP FUNCTION public."CreateView"(); publicpostgresfalse3435S125526460DeleteOldVersions(interval)FUNCTIONECREATE FUNCTION "DeleteOldVersions"(since interval) RETURNS void AS $$ DECLARE view_count integer; cut_view_id integer; BEGIN SELECT COUNT("ID") INTO view_count FROM "Views"; IF view_count = 1 THEN RETURN; END IF; SELECT MAX("ID") FROM "Views" INTO cut_view_id WHERE "LastAccessed" <= (CURRENT_TIMESTAMP - since); IF cut_view_id IS NULL THEN RETURN; END IF; DELETE FROM "Versions" WHERE "EndViewID" <= cut_view_id; UPDATE "Versions" SET "BeginViewID" = cut_view_id WHERE "BeginViewID" < cut_view_id; DELETE FROM "VersionedObjects" AS vo WHERE vo."ID" != 0 AND NOT EXISTS (SELECT "ID" FROM "Versions" AS ver WHERE ver."ObjectID" = vo."ID"); DELETE FROM "Views" WHERE "ID" < cut_view_id; END $$ LANGUAGE plpgsql; :DROP FUNCTION public."DeleteOldVersions"(since interval); publicpostgresfalse5105Y125524619?DeleteVersionedObjectEntry(integer, integer, smallint, integer)FUNCTIONCREATE FUNCTION "DeleteVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer) RETURNS void AS $$ BEGIN DELETE FROM "CheckoutsPending" WHERE "ObjectID" = object_id AND "ChangelistID" = changelist_id AND "DeleteCheckPoint" != 2147483647; IF NOT FOUND THEN RAISE EXCEPTION 'Object not checked out for delete'; END IF; IF "HasExternalID"(type_id) THEN PERFORM "FreeExternalID"("TypeID", "Value", "CanAlloc") FROM ( SELECT "TypeID", "CanAlloc", "Value" FROM "ExternalID" WHERE "ObjectID" = object_id ) as to_free; DELETE FROM "ExternalID" WHERE "ObjectID" = object_id; END IF; IF "IsUserRole"(type_id) THEN DELETE FROM "AccessControl" WHERE "UserRoleID" = object_id; END IF; UPDATE "Versions" SET "EndViewID" = new_view_id WHERE "ObjectID" = object_id AND "EndViewID" = 2147483647; END $$ LANGUAGE plpgsql; DROP FUNCTION public."DeleteVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer); publicpostgresfalse5105+125524620CDoCheckoutForReference(integer, integer, integer, integer, integer)FUNCTIONVCREATE FUNCTION "DoCheckoutForReference"(changelist_id integer, last_checkpoint integer, object_id integer, src_id integer, delta integer) RETURNS void AS $$ DECLARE new_count integer; BEGIN UPDATE "ReferencesPending" SET "Count" = "Count" + delta WHERE "Src" = src_id AND "Dst" = object_id AND "ChangelistID" = changelist_id AND "CheckPoint" = last_checkpoint RETURNING "Count" INTO new_count; IF NOT FOUND THEN INSERT INTO "ReferencesPending" ("ChangelistID", "CheckPoint", "Src", "Dst", "Count") VALUES ( changelist_id, last_checkpoint, src_id, object_id, delta); ELSEIF new_count = 0 THEN DELETE FROM "ReferencesPending" WHERE "Src" = src_id AND "Dst" = object_id AND "ChangelistID" = changelist_id AND "CheckPoint" = last_checkpoint; END IF; END $$ LANGUAGE plpgsql; DROP FUNCTION public."DoCheckoutForReference"(changelist_id integer, last_checkpoint integer, object_id integer, src_id integer, delta integer); publicpostgresfalse5105,125524621ExtractAuditName(text)FUNCTIONoCREATE FUNCTION "ExtractAuditName"(string text) RETURNS text AS $_$ SELECT $1; $_$ LANGUAGE sql; 6DROP FUNCTION public."ExtractAuditName"(string text); publicpostgresfalse5-125524622FreeChangelist(integer)FUNCTIONCREATE FUNCTION "FreeChangelist"(id integer) RETURNS void AS $_$ DELETE FROM "Changelists" WHERE "ID" = $1; $_$ LANGUAGE sql; 3DROP FUNCTION public."FreeChangelist"(id integer); publicpostgresfalse5.125524623*FreeExternalID(smallint, integer, boolean)FUNCTIONCREATE FUNCTION "FreeExternalID"(type_id smallint, id integer, can_alloc boolean) RETURNS void AS $$ DECLARE begin_prefix integer; end_suffix integer; this_time timestamp with time zone; BEGIN this_time := transaction_timestamp(); --merge with prefix if possible UPDATE "ExternalIDPool" SET "EndRange" = id + 1 WHERE "TypeID" = type_id AND "CanAlloc" = can_alloc AND "EndRange" = id AND "FreedAt" = this_time RETURNING "BeginRange" INTO begin_prefix; --merge with suffix if possible UPDATE "ExternalIDPool" SET "BeginRange" = id WHERE "TypeID" = type_id AND "CanAlloc" = can_alloc AND "BeginRange" = id + 1 AND "FreedAt" = this_time RETURNING "EndRange" INTO end_suffix; IF (begin_prefix IS NULL) AND (end_suffix IS NULL) THEN --if neither merge happened insert new entry INSERT INTO "ExternalIDPool" ("TypeID", "CanAlloc", "BeginRange", "EndRange", "FreedAt") VALUES (type_id, can_alloc, id, id + 1, this_time); ELSEIF NOT (begin_prefix IS NULL) AND NOT (end_suffix IS NULL) THEN --if both merges happened unite both entries UPDATE "ExternalIDPool" SET "BeginRange" = begin_prefix, "EndRange" = end_suffix WHERE "TypeID" = type_id AND "CanAlloc" = can_alloc AND "EndRange" = id + 1; DELETE FROM "ExternalIDPool" WHERE "TypeID" = type_id AND "CanAlloc" = can_alloc AND "BeginRange" = id; END IF; END $$ LANGUAGE plpgsql; XDROP FUNCTION public."FreeExternalID"(type_id smallint, id integer, can_alloc boolean); publicpostgresfalse5105/125524624FreeStaleTokens()FUNCTIONCREATE FUNCTION "FreeStaleTokens"() RETURNS void AS $$ DECLARE BEGIN DELETE FROM "Tokens" WHERE "Created" <= (CURRENT_TIMESTAMP - '30 min'::interval); END $$ LANGUAGE plpgsql; *DROP FUNCTION public."FreeStaleTokens"(); publicpostgresfalse51050125524625FreeToken(bytea)FUNCTIONCREATE FUNCTION "FreeToken"(data bytea) RETURNS void AS $_$ DECLARE BEGIN DELETE FROM "Tokens" WHERE "Data" = $1; END $_$ LANGUAGE plpgsql; .DROP FUNCTION public."FreeToken"(data bytea); publicpostgresfalse5105125924626 AccessControlTABLECREATE TABLE "AccessControl" ( "ObjectID" integer NOT NULL, "UserRoleID" integer NOT NULL, "SelfRights" integer NOT NULL, "DescendantRights" integer NOT NULL ); #DROP TABLE public."AccessControl"; publicpostgresfalse51125524628GetAclFor(integer)FUNCTIONCREATE FUNCTION "GetAclFor"(object_id integer) RETURNS SETOF "AccessControl" AS $_$ SELECT * FROM "AccessControl" WHERE "ObjectID" = $1; $_$ LANGUAGE sql; 5DROP FUNCTION public."GetAclFor"(object_id integer); publicpostgresfalse3445125924629VersionedObjectsTABLECREATE TABLE "VersionedObjects" ( "ID" integer NOT NULL, "TypeID" smallint NOT NULL, "Path" integer[] NOT NULL, "DeletedBy" integer, "AuditName" text ); &DROP TABLE public."VersionedObjects"; publicpostgresfalse52125524634GetAnsectorsOf(integer)FUNCTIONCCREATE FUNCTION "GetAnsectorsOf"(object_id integer) RETURNS SETOF "VersionedObjects" AS $_$ SELECT vo.* FROM "VersionedObjects" AS vo INNER JOIN ( SELECT explode_array("Path" || $1) AS "ID" FROM "VersionedObjects" WHERE "ID" = $1 ) AS filter ON vo."ID" = filter."ID" ORDER BY "Path" ASC; $_$ LANGUAGE sql; :DROP FUNCTION public."GetAnsectorsOf"(object_id integer); publicpostgresfalse34553125524635GetAuditObjectName(integer)FUNCTIONCREATE FUNCTION "GetAuditObjectName"(object_id integer) RETURNS text AS $$ DECLARE par_id integer; par_name text; type_name text; res text; BEGIN IF object_id = 0 THEN RETURN 'none'; END IF; SELECT tt."AuditName" INTO type_name FROM "VersionedObjects" AS vo, "TypeToTable" AS tt WHERE vo."ID" = object_id AND vo."TypeID" = tt."TypeID"; res := type_name || ':'; FOR par_id, par_name IN SELECT "ID", "AuditName" FROM "GetAnsectorsOf"(object_id) LOOP res := res || '/'; IF NOT par_name IS NULL THEN res := res || "ExtractAuditName"(par_name); ELSE res := res || par_id; END IF; END LOOP; RETURN res; END $$ LANGUAGE plpgsql; >DROP FUNCTION public."GetAuditObjectName"(object_id integer); publicpostgresfalse5105125924636AuditLogTABLECREATE TABLE "AuditLog" ( "ID" integer NOT NULL, "Date" timestamp with time zone NOT NULL, "User" text NOT NULL, "Action" text, "Display" boolean DEFAULT true NOT NULL ); DROP TABLE public."AuditLog"; publicpostgresfalse202654125524642!GetAuditRecords(integer, integer)FUNCTIONCREATE FUNCTION "GetAuditRecords"(page_number integer, page_size integer) RETURNS SETOF "AuditLog" AS $_$ SELECT * FROM "AuditLog" WHERE "Display" = true ORDER BY "Date" DESC LIMIT $2 OFFSET $1 * $2; $_$ LANGUAGE sql; PDROP FUNCTION public."GetAuditRecords"(page_number integer, page_size integer); publicpostgresfalse34755125524643[GetAuditRecordsByDate(timestamp with time zone, timestamp with time zone, integer, integer)FUNCTION_CREATE FUNCTION "GetAuditRecordsByDate"(start_date timestamp with time zone, end_date timestamp with time zone, page_number integer, page_size integer) RETURNS SETOF "AuditLog" AS $_$ SELECT * FROM "AuditLog" WHERE "Date" >= $1 AND "Date" <= $2 AND "Display" = true ORDER BY "Date" DESC LIMIT $4 OFFSET $3 * $4; $_$ LANGUAGE sql; DROP FUNCTION public."GetAuditRecordsByDate"(start_date timestamp with time zone, end_date timestamp with time zone, page_number integer, page_size integer); publicpostgresfalse34756125524644GetAuditRecordsCount()FUNCTIONCREATE FUNCTION "GetAuditRecordsCount"() RETURNS integer AS $$ SELECT CAST(count(*) AS integer) FROM "AuditLog" WHERE "Display" = true; $$ LANGUAGE sql; /DROP FUNCTION public."GetAuditRecordsCount"(); publicpostgresfalse57125524645NGetAuditRecordsCountByDate(timestamp with time zone, timestamp with time zone)FUNCTIONCREATE FUNCTION "GetAuditRecordsCountByDate"(start_date timestamp with time zone, end_date timestamp with time zone) RETURNS integer AS $_$ SELECT CAST(count(*) AS integer) FROM "AuditLog" WHERE "Date" >= $1 AND "Date" <= $2 AND "Display" = true $_$ LANGUAGE sql; {DROP FUNCTION public."GetAuditRecordsCountByDate"(start_date timestamp with time zone, end_date timestamp with time zone); publicpostgresfalse58125524646!GetChangelistDescription(integer)FUNCTIONCREATE FUNCTION "GetChangelistDescription"(changelist_id integer) RETURNS text AS $_$ SELECT "ClientDescription" FROM "Changelists" WHERE "ID" = $1; $_$ LANGUAGE sql; HDROP FUNCTION public."GetChangelistDescription"(changelist_id integer); publicpostgresfalse59125524647GetCurrentViewID()FUNCTIONCREATE FUNCTION "GetCurrentViewID"() RETURNS integer AS $$ SELECT "ID" FROM "Views" ORDER BY "ID" DESC LIMIT 1; $$ LANGUAGE sql; +DROP FUNCTION public."GetCurrentViewID"(); publicpostgresfalse5:125524648GetDirectChildrenOf(integer)FUNCTIONCREATE FUNCTION "GetDirectChildrenOf"(object_id integer) RETURNS SETOF "VersionedObjects" AS $_$ SELECT child.* FROM "VersionedObjects" AS child JOIN "VersionedObjects" parent ON child."Path" = (parent."Path" || $1) WHERE parent."ID" = $1; $_$ LANGUAGE sql; ?DROP FUNCTION public."GetDirectChildrenOf"(object_id integer); publicpostgresfalse3455;125524649GetPassword(text)FUNCTION!CREATE FUNCTION "GetPassword"(username text) RETURNS bytea AS $_$ SELECT "LocalUsers"."pwdPassword" FROM "LocalUsers" INNER JOIN "Versions" ON "LocalUsers"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647 AND "LocalUsers"."Name" = $1; $_$ LANGUAGE sql; 3DROP FUNCTION public."GetPassword"(username text); publicpostgresfalse5<125524650GetPendingReferences(integer)FUNCTIONrCREATE FUNCTION "GetPendingReferences"(changelist_id integer) RETURNS SETOF "References" AS $_$ SELECT "Src", "Dst", CAST(SUM("aCount") AS integer) AS "Count" FROM ( SELECT COALESCE("References"."Src", pending."Src") AS "Src", COALESCE("References"."Dst", pending."Dst") AS "Dst", COALESCE("References"."Count", 0) + COALESCE(pending."Count", 0) AS "aCount" FROM "References" FULL OUTER JOIN (SELECT * FROM "ReferencesPending" WHERE "ChangelistID" = $1) AS pending ON "References"."Src" = pending."Src" AND "References"."Dst" = pending."Dst") AS result GROUP BY "Src", "Dst"; $_$ LANGUAGE sql; DDROP FUNCTION public."GetPendingReferences"(changelist_id integer); publicpostgresfalse3425=125524651GetRemoteUsers()FUNCTIONCREATE FUNCTION "GetRemoteUsers"() RETURNS SETOF record AS $$ SELECT "RemoteUsers"."Name", "RemoteUsers"."UserRoleID" FROM "RemoteUsers" INNER JOIN "Versions" ON "RemoteUsers"."VersionID" = "Versions"."ID" WHERE "Versions"."EndViewID" = 2147483647; $$ LANGUAGE sql; )DROP FUNCTION public."GetRemoteUsers"(); publicpostgresfalse5>125524652GetReverseAnsectorsOf(integer)FUNCTIONKCREATE FUNCTION "GetReverseAnsectorsOf"(object_id integer) RETURNS SETOF "VersionedObjects" AS $_$ SELECT vo.* FROM "VersionedObjects" AS vo INNER JOIN ( SELECT explode_array("Path" || $1) AS "ID" FROM "VersionedObjects" WHERE "ID" = $1 ) AS filter ON vo."ID" = filter."ID" ORDER BY "Path" DESC; $_$ LANGUAGE sql; ADROP FUNCTION public."GetReverseAnsectorsOf"(object_id integer); publicpostgresfalse3455?125524653GetRootObjectID()FUNCTIONCREATE FUNCTION "GetRootObjectID"() RETURNS integer AS $$ SELECT "ID" FROM "VersionedObjects" WHERE "Path" = ARRAY[0] AND "ID" != 0; $$ LANGUAGE sql STABLE; *DROP FUNCTION public."GetRootObjectID"(); publicpostgresfalse5@125524654GetTableName(integer)FUNCTIONCREATE FUNCTION "GetTableName"(object_id integer) RETURNS text AS $_$ SELECT "TableName" FROM "TypeToTable", "VersionedObjects" WHERE "VersionedObjects"."ID" = $1 AND "VersionedObjects"."TypeID" = "TypeToTable"."TypeID"; $_$ LANGUAGE sql STABLE; 8DROP FUNCTION public."GetTableName"(object_id integer); publicpostgresfalse5125924655 TypeToTableTABLECREATE TABLE "TypeToTable" ( "TypeID" smallint NOT NULL, "TableName" character varying(100) NOT NULL, "IsFolder" boolean NOT NULL, "AuditName" text NOT NULL ); !DROP TABLE public."TypeToTable"; publicpostgresfalse5A125524660 GetTypeMap()FUNCTIONCREATE FUNCTION "GetTypeMap"() RETURNS SETOF "TypeToTable" AS $$ SELECT * FROM "TypeToTable"; $$ LANGUAGE sql IMMUTABLE; %DROP FUNCTION public."GetTypeMap"(); publicpostgresfalse3495B125524661GetUserRoleFromToken(bytea)FUNCTIONCREATE FUNCTION "GetUserRoleFromToken"(token bytea) RETURNS integer[] AS $$ DECLARE role_id integer[]; BEGIN PERFORM "FreeStaleTokens"(); SELECT "UserRoleID" || 0 INTO role_id FROM "Tokens" WHERE "Data" = token; RETURN role_id; END $$ LANGUAGE plpgsql; :DROP FUNCTION public."GetUserRoleFromToken"(token bytea); publicpostgresfalse5105C125524662GetVersionsSince(integer)FUNCTIONCREATE FUNCTION "GetVersionsSince"(start_view_id integer) RETURNS SETOF "GetVersionsSinceResult" AS $_$ SELECT ver."ObjectID", vo."TypeID", CASE --deleted WHEN min(ver."BeginViewID") <= $1 AND max(ver."EndViewID") < 2147483647 THEN max(ver."EndViewID") --added WHEN min(ver."BeginViewID") > $1 AND max(ver."EndViewID") = 2147483647 THEN max(ver."BeginViewID") --edited WHEN min(ver."BeginViewID") <= $1 AND max(ver."EndViewID") = 2147483647 THEN max(ver."BeginViewID") END AS "ViewID", CASE --deleted WHEN min(ver."BeginViewID") <= $1 AND max(ver."EndViewID") < 2147483647 THEN 3 --added WHEN min(ver."BeginViewID") > $1 AND max(ver."EndViewID") = 2147483647 THEN 1 --edited WHEN min(ver."BeginViewID") <= $1 AND max(ver."EndViewID") = 2147483647 THEN 2 END AS "Type" FROM "Versions" AS ver, "VersionedObjects" AS vo WHERE vo."ID" = ver."ObjectID" AND ((ver."BeginViewID" <= $1 AND ver."EndViewID" > $1 AND ver."EndViewID" < 2147483647) OR ver."BeginViewID" > $1) GROUP BY ver."ObjectID", vo."TypeID" HAVING min(ver."BeginViewID") <= $1 OR max(ver."EndViewID") = 2147483647; $_$ LANGUAGE sql; @DROP FUNCTION public."GetVersionsSince"(start_view_id integer); publicpostgresfalse3295D125524663HasExternalID(smallint)FUNCTIONCREATE FUNCTION "HasExternalID"(type_id smallint) RETURNS boolean AS $_$ SELECT ($1 = 54) OR ($1 = 55) OR ($1 = 58); $_$ LANGUAGE sql; 8DROP FUNCTION public."HasExternalID"(type_id smallint); publicpostgresfalse5E125524664)IsChildrenAddedByOthers(integer, integer)FUNCTIONCREATE FUNCTION "IsChildrenAddedByOthers"(changelist_id integer, object_id integer) RETURNS boolean AS $_$ SELECT count(*) != 0 FROM "AddsPending" WHERE "ChangelistID" != $1 AND last_in_array("Path") = $2; $_$ LANGUAGE sql; ZDROP FUNCTION public."IsChildrenAddedByOthers"(changelist_id integer, object_id integer); publicpostgresfalse5F125524665&IsReferencedByOthers(integer, integer)FUNCTIONCREATE FUNCTION "IsReferencedByOthers"(changelist_id integer, object_id integer) RETURNS boolean AS $_$ SELECT count("Src") != 0 FROM "ReferencesPending" WHERE "ChangelistID" != $1 AND "Dst" = $2; $_$ LANGUAGE sql; WDROP FUNCTION public."IsReferencedByOthers"(changelist_id integer, object_id integer); publicpostgresfalse5X125526780IsUserRole(smallint)FUNCTIONtCREATE FUNCTION "IsUserRole"(type_id smallint) RETURNS boolean AS $_$ SELECT ($1 = 22); $_$ LANGUAGE sql; 5DROP FUNCTION public."IsUserRole"(type_id smallint); publicpostgresfalse5G125524666PrivilegeCheck(bytea, integer)FUNCTIONDCREATE FUNCTION "PrivilegeCheck"(token bytea, priv_mask integer) RETURNS integer AS $_$ SELECT "FreeStaleTokens"(); SELECT CASE ("Privileges" & $2) = $2 WHEN TRUE THEN 1 ELSE 0 END FROM "Tokens" where "Data" = $1 UNION ALL SELECT 2 WHERE NOT EXISTS (SELECT * FROM "Tokens" where "Data" = $1) $_$ LANGUAGE sql; GDROP FUNCTION public."PrivilegeCheck"(token bytea, priv_mask integer); publicpostgresfalse5W125526776RebuildReferences()FUNCTIONQCREATE FUNCTION "RebuildReferences"() RETURNS void AS $$ DECLARE entries_array INTEGER[]; i INTEGER; j INTEGER; idx INTEGER; ct INTEGER; referencesAdded INTEGER; referencesRemoved INTEGER; numReferencesOriginal INTEGER; sz INTEGER; src integer; dst integer; dstText text; sql text; version text; ref_map text[][]; ref_map_commas text[][]; BEGIN --Check to make sure we're working with a supported version (7.0-7.7 currently) SELECT INTO version "StringValue" FROM "Globals" WHERE "Name"='Version'; entries_array := string_to_array(version, '.'); IF entries_array[1] != 7 OR entries_array[2] > 7 THEN RAISE INFO 'Database version % is not supported by this version of the script. Exiting...', version; RETURN; END IF; IF (SELECT COUNT(*) FROM "Changelists") > 0 THEN RAISE INFO 'There are pending changelists. This means the Policy Database could be in use. Exiting...'; RETURN; END IF; ref_map :='{ {View_WSE_Categories, ObjectID, ParentID}, {View_WSE_Protocols, ObjectID, ParentID}, {View_WSE_UnfilteredUrls, ObjectID, CategoryID}, {View_WSE_RecategorizedUrls, ObjectID, CategoryID}, {View_WSE_Keywords, ObjectID, CategoryID}, {View_WSE_CategoryNotifications, ObjectID, CategoryID}, {View_WSE_ProtocolNotifications, ObjectID, ProtocolID}, {View_WSE_ClientRules, ObjectID, PolicyID}, {View_WSE_PolicyPeriods, ObjectID, TargetID}, {View_WSE_PolicyPeriods, ObjectID, TrafficID}, {View_WSE_DirectoryObjects, ObjectID, ManagingRoleID}, {View_WSE_Networks, ObjectID, ManagingRoleID}, {View_WSE_CategorySets, ObjectID, DefaultDispID}, {View_WSE_ProtocolSets, ObjectID, DefaultDispID}, {View_WSE_FileExtensionSets, ObjectID, FileTypeID} }'; ref_map_commas := '{ {View_WSE_CategorySets, ObjectID, Entries, 0}, {View_WSE_CategoryDispositions, ObjectID, BlockedFileTypes, 0}, {View_WSE_ProtocolSets, ObjectID, Entries, 0}, {View_WSE_ProtocolSetTemplates, ObjectID, Entries, 3}, {View_WSE_CategorySetTemplates, ObjectID, Entries, 3}, {View_WSE_Roles, ObjectID, CatsToRCs, 3} }'; numReferencesOriginal := 1; WHILE (EXISTS (SELECT * FROM "pg_tables" where "schemaname"='upgrade' AND "tablename"='References_Original_'||numReferencesOriginal)) LOOP numReferencesOriginal := numReferencesOriginal + 1; END LOOP; sql := 'CREATE TABLE upgrade."References_Original_' || numReferencesOriginal || '" AS (SELECT * FROM "References");'; EXECUTE sql; DELETE FROM "References"; FOR i IN array_lower(ref_map, 1) .. array_upper(ref_map, 1) LOOP sql := 'SELECT "AddReference"(src, dst, 1) FROM ( ' || 'SELECT "' || ref_map[i][2] || '" as src, "' || ref_map[i][3] || '" as dst FROM "' || ref_map[i][1] || '" ) as dummy;'; EXECUTE sql; END LOOP; CREATE TEMP TABLE listmappings (srcC INTEGER, dstC TEXT); FOR i IN array_lower(ref_map_commas, 1) .. array_upper(ref_map_commas, 1) LOOP sql := 'INSERT INTO listmappings SELECT "' || ref_map_commas[i][2] || '","'|| ref_map_commas[i][3] || '" FROM "' || ref_map_commas[i][1] || '";'; EXECUTE sql; FOR src,dstText IN SELECT srcC,dstC FROM listmappings LOOP SELECT string_to_array(dstText, ',') into entries_array; idx := 1; FOR j IN SELECT * FROM explode_array(entries_array) LOOP --if ref_map_commas[i][4] is 0 add a reference to every element, otherwise skip every Nth element IF ref_map_commas[i][4]::int = 0 OR idx % ref_map_commas[i][4]::int != 0 THEN PERFORM "AddReference"(src, j, 1); END IF; idx := idx + 1; END LOOP; END LOOP; DELETE FROM listmappings; END LOOP; RAISE INFO 'Version: %', (SELECT "StringValue" FROM "Globals" WHERE "Name"='Version'); RAISE INFO ''; RAISE INFO 'References removed from new Reference table:'; sql:='CREATE TEMP TABLE old_refs AS (SELECT * FROM upgrade."References_Original_'||numReferencesOriginal||'");'; EXECUTE sql; referencesRemoved:=0; FOR src, dst, ct IN SELECT * FROM old_refs EXCEPT SELECT * FROM "References" LOOP referencesRemoved := referencesRemoved + 1; RAISE INFO '%->% [%] %->%', src, dst, ct, (SELECT "TableName" FROM "VersionedObjects" AS vo JOIN "TypeToTable" as tt ON vo."TypeID" = tt."TypeID" where "ID" = src), (SELECT "TableName" FROM "VersionedObjects" AS vo JOIN "TypeToTable" as tt ON vo."TypeID" = tt."TypeID" where "ID" = dst); END LOOP; IF referencesRemoved=0 THEN RAISE INFO 'None.'; ELSE RAISE INFO '% Reference(s) removed.', referencesRemoved; END IF; RAISE INFO ''; RAISE INFO 'References added to the new Reference table:'; referencesAdded:=0; FOR src, dst, ct IN SELECT * FROM "References" EXCEPT SELECT * FROM old_refs LOOP referencesAdded := referencesAdded + 1; RAISE INFO '%->% [%] %->%', src, dst, ct, (SELECT "TableName" FROM "VersionedObjects" AS vo JOIN "TypeToTable" as tt ON vo."TypeID" = tt."TypeID" where "ID" = src), (SELECT "TableName" FROM "VersionedObjects" AS vo JOIN "TypeToTable" as tt ON vo."TypeID" = tt."TypeID" where "ID" = dst); END LOOP; IF referencesAdded=0 THEN RAISE INFO 'None.'; ELSE RAISE INFO '% Reference(s) added.', referencesAdded; IF referencesRemoved > 0 THEN RAISE INFO ''; --RAISE INFO 'ATTENTION: The rebuilt references table was different from the original references table. It is critical that this output be provided to Websense Engineering in the form of an escalated issue, along with a copy of the Policy Database associated with it.'; END IF; END IF; DROP TABLE IF EXISTS listmappings; DROP TABLE IF EXISTS old_refs; END; $$ LANGUAGE plpgsql; ,DROP FUNCTION public."RebuildReferences"(); publicpostgresfalse5105H125524667CRegisterVersionedTable(text, text, text, smallint, boolean, text[])FUNCTIONCREATE FUNCTION "RegisterVersionedTable"(schema_name text, table_name text, audit_name text, type_id smallint, is_folder boolean, columns text[]) RETURNS void AS $$ DECLARE sql text; BEGIN PERFORM public."RegisterView"(schema_name, table_name, type_id, columns); sql := 'ALTER TABLE ONLY ' || quote_ident(table_name) || ' ADD CONSTRAINT ' || quote_ident('PK_' || table_name) || ' PRIMARY KEY ("VersionID");'; EXECUTE sql; sql := 'ALTER TABLE ONLY ' || quote_ident(table_name) || ' ADD CONSTRAINT ' || quote_ident('FK_' || table_name || '_Versions') || ' FOREIGN KEY ("VersionID")' || ' REFERENCES "Versions"("ID") ON DELETE CASCADE;'; EXECUTE sql; INSERT INTO "TypeToTable" ("TypeID", "TableName", "IsFolder", "AuditName") VALUES (type_id, table_name, is_folder, audit_name); END; $$ LANGUAGE plpgsql; DROP FUNCTION public."RegisterVersionedTable"(schema_name text, table_name text, audit_name text, type_id smallint, is_folder boolean, columns text[]); publicpostgresfalse5105I125524668*RegisterView(text, text, smallint, text[])FUNCTIONCREATE FUNCTION "RegisterView"(schema_name text, table_name text, type_id smallint, columns text[]) RETURNS void AS $$ DECLARE sql text; i integer; ar_low integer; ar_up integer; BEGIN sql := 'CREATE VIEW ' || schema_name || '.' || quote_ident('View_' || table_name) || ' AS ' || 'SELECT "VersionedObjects"."ID" AS "ObjectID", ' || ' "Versions"."ID", ' || ' "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ' || ' ("CheckoutsPending"."DeleteCheckPoint" != 2147483647) AS "ForDelete", ' || ' "VersionedObjects"."Path" AS "ObjectPath"'; ar_low := COALESCE(array_lower(columns, 1), 0); ar_up := COALESCE(array_upper(columns, 1), -1); for i in ar_low..ar_up loop sql := sql || ', ' || quote_ident(table_name) || '.' || quote_ident(columns[i]); end loop; sql := sql || ' ' || 'FROM ' || quote_ident(table_name) || ' INNER JOIN "Versions" ' || 'ON ' || quote_ident(table_name) || '."VersionID" = "Versions"."ID" INNER JOIN "VersionedObjects" ' || 'ON "Versions"."ObjectID" = "VersionedObjects"."ID" LEFT OUTER JOIN "CheckoutsPending" ' || 'ON "CheckoutsPending"."ObjectID" = "VersionedObjects"."ID" ' || 'WHERE "VersionedObjects"."TypeID" = ' || type_id || '::int2 AND "Versions"."EndViewID" = 2147483647;'; EXECUTE sql; END; $$ LANGUAGE plpgsql; jDROP FUNCTION public."RegisterView"(schema_name text, table_name text, type_id smallint, columns text[]); publicpostgresfalse5105J1255246694RemoveUserRights(integer, integer, integer, integer)FUNCTIONYCREATE FUNCTION "RemoveUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer) RETURNS void AS $$ DECLARE cur_role_id integer; BEGIN IF self_rights != 0 OR desc_rights != 0 THEN UPDATE "AccessControl" SET "SelfRights" = "SelfRights" & ~self_rights, "DescendantRights" = "DescendantRights" & ~desc_rights WHERE "ObjectID" = object_id AND "UserRoleID" = role_id; DELETE FROM "AccessControl" WHERE "ObjectID" = object_id AND "UserRoleID" = role_id AND "SelfRights" = 0 AND "DescendantRights" = 0; END IF; END $$ LANGUAGE plpgsql; wDROP FUNCTION public."RemoveUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer); publicpostgresfalse5105U125526774RepairCatToRCs()FUNCTIONCREATE FUNCTION "RepairCatToRCs"() RETURNS void AS $$ DECLARE new_entries INTEGER[]; entries_array INTEGER[]; new_text TEXT; CatsToRCs TEXT; objID INTEGER; ID INTEGER; sz INTEGER; BEGIN FOR objID,CatsToRCs,ID IN SELECT "ObjectID","CatsToRCs","ID" FROM "View_WSE_Roles" LOOP new_entries := null; SELECT string_to_array(CatsToRCs, ',') INTO entries_array; sz := array_upper(entries_array,1); IF sz > 0 THEN FOR j IN 1 .. sz BY 3 LOOP --entries_array[j] is Category --entries_array[j+1] is the RiskClass --entries_array[j+2] is the mysterious 0 value IF (SELECT COUNT(*) FROM "View_WSE_Categories" WHERE "ObjectID"=entries_array[j]) > 0 THEN IF (SELECT COUNT(*) FROM "View_WSE_RiskClasses" WHERE "ObjectID"=entries_array[j+1]) > 0 THEN new_entries := array_cat(new_entries, ARRAY[entries_array[j], entries_array[j+1], entries_array[j+2]]); ELSE RAISE INFO 'RiskClass % did not exist, mapping %->% excluded', entries_array[j+1], entries_array[j+1], entries_array[j]; END IF; ELSE RAISE INFO 'Category % did not exist, mapping %->% excluded', entries_array[j], entries_array[j+1], entries_array[j]; END IF; END LOOP; --display result new_text := array_to_string(new_entries, ','); IF CatsToRCs != new_text THEN RAISE INFO 'Role % old CatToRCs text %', objID, CatsToRCs; RAISE INFO 'Role % new CatToRCs text %', objID, new_text; --replace CatsToRCs with the new text UPDATE "WSE_Roles" SET "CatsToRCs"=new_text WHERE "VersionID"=ID; ELSE RAISE INFO 'Role % CatsToRCs not modified', objID; END IF; ELSE RAISE INFO 'Role % does not have any CatsToRCs', objID; END IF; END LOOP; END; $$ LANGUAGE plpgsql; )DROP FUNCTION public."RepairCatToRCs"(); publicpostgresfalse5105K125524670$ReserveExternalID(smallint, integer)FUNCTIONCREATE FUNCTION "ReserveExternalID"(type_id smallint, id integer) RETURNS integer AS $$ DECLARE begin_original integer; end_original integer; can_alloc boolean; freed_at_original timestamp with time zone; BEGIN DELETE FROM "ExternalIDPool" WHERE "TypeID" = type_id AND "BeginRange" <= id AND "EndRange" > id RETURNING "BeginRange", "EndRange", "CanAlloc", "FreedAt" INTO begin_original, end_original, can_alloc, freed_at_original; IF NOT FOUND THEN RETURN 0; END IF; IF begin_original != id THEN INSERT INTO "ExternalIDPool" ("TypeID", "CanAlloc", "BeginRange", "EndRange", "FreedAt") VALUES (type_id, can_alloc, begin_original, id, freed_at_original); END IF; IF end_original != id + 1 THEN INSERT INTO "ExternalIDPool" ("TypeID", "CanAlloc", "BeginRange", "EndRange", "FreedAt") VALUES (type_id, can_alloc, id + 1, end_original, freed_at_original); END IF; IF can_alloc THEN RETURN 2; ELSE RETURN 1; END IF; END $$ LANGUAGE plpgsql; HDROP FUNCTION public."ReserveExternalID"(type_id smallint, id integer); publicpostgresfalse5105Q125524671SetCheckPoint(integer)FUNCTION*CREATE FUNCTION "SetCheckPoint"(changelist_id integer) RETURNS integer AS $_$ UPDATE "Changelists" SET "LastCheckPoint" = "LastCheckPoint" + 1, "LastAccessed" = CURRENT_TIMESTAMP WHERE "ID" = $1; SELECT "LastCheckPoint" FROM "Changelists" WHERE "ID" = $1; $_$ LANGUAGE sql; =DROP FUNCTION public."SetCheckPoint"(changelist_id integer); publicpostgresfalse5L1255246721SetUserRights(integer, integer, integer, integer)FUNCTIONCREATE FUNCTION "SetUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer) RETURNS void AS $$ DECLARE cur_role_id integer; BEGIN IF self_rights != 0 OR desc_rights != 0 THEN UPDATE "AccessControl" SET "SelfRights" = self_rights, "DescendantRights" = desc_rights WHERE "ObjectID" = object_id AND "UserRoleID" = role_id; IF NOT FOUND THEN INSERT INTO "AccessControl" ("ObjectID", "UserRoleID", "SelfRights", "DescendantRights") VALUES (object_id, role_id, self_rights, desc_rights); END IF; ELSE DELETE FROM "AccessControl" WHERE "ObjectID" = object_id AND "UserRoleID" = role_id; END IF; END $$ LANGUAGE plpgsql; tDROP FUNCTION public."SetUserRights"(object_id integer, role_id integer, self_rights integer, desc_rights integer); publicpostgresfalse5105M125524673(SetUserRights(integer, integer, integer)FUNCTIONCREATE FUNCTION "SetUserRights"(object_id integer, role_id integer, rights integer) RETURNS void AS $$ BEGIN PERFORM "SetUserRights"(object_id, role_id, rights, rights); END $$ LANGUAGE plpgsql; ZDROP FUNCTION public."SetUserRights"(object_id integer, role_id integer, rights integer); publicpostgresfalse5105R125526459%TouchClientData(integer[], integer[])FUNCTION-CREATE FUNCTION "TouchClientData"(view_ids integer[], changelist_ids integer[]) RETURNS void AS $_$ UPDATE "Views" SET "LastAccessed" = CURRENT_TIMESTAMP WHERE "ID" = ANY($1); UPDATE "Changelists" SET "LastAccessed" = CURRENT_TIMESTAMP WHERE "ID" = ANY($2); $_$ LANGUAGE sql; VDROP FUNCTION public."TouchClientData"(view_ids integer[], changelist_ids integer[]); publicpostgresfalse5N125524674EUpdateVersionedObjectEntry(integer, integer, smallint, integer, text)FUNCTIONCREATE FUNCTION "UpdateVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer, audit_name text) RETURNS integer AS $$ DECLARE ret integer; BEGIN DELETE FROM "CheckoutsPending" WHERE "ObjectID" = object_id AND "ChangelistID" = changelist_id AND "DeleteCheckPoint" = 2147483647; IF NOT FOUND THEN RAISE EXCEPTION 'Object not checked out for edit'; END IF; IF NOT audit_name IS NULL THEN UPDATE "VersionedObjects" SET "AuditName" = "ExtractAuditName"(audit_name) WHERE "ID" = object_id; END IF; UPDATE "Versions" SET "EndViewID" = new_view_id WHERE "ObjectID" = object_id AND "EndViewID" = 2147483647; INSERT INTO "Versions" ("BeginViewID", "EndViewID", "ObjectID") VALUES (new_view_id, 2147483647, object_id); ret := currval('"Versions_ID_seq"'); RETURN ret; END $$ LANGUAGE plpgsql; DROP FUNCTION public."UpdateVersionedObjectEntry"(changelist_id integer, object_id integer, type_id smallint, new_view_id integer, audit_name text); publicpostgresfalse5105O125524676explode_array(anyarray)FUNCTIONCREATE FUNCTION explode_array(in_array anyarray) RETURNS SETOF anyelement AS $_$ SELECT ($1)[s] FROM generate_series(1,array_upper($1, 1)) AS s; $_$ LANGUAGE sql IMMUTABLE; 7DROP FUNCTION public.explode_array(in_array anyarray); publicpostgresfalse5P125524677last_in_array(anyarray)FUNCTIONCREATE FUNCTION last_in_array(in_array anyarray) RETURNS anyelement AS $_$ SELECT ($1)[array_upper($1, 1)]; $_$ LANGUAGE sql IMMUTABLE; 7DROP FUNCTION public.last_in_array(in_array anyarray); publicpostgresfalse5[125526799GetDatabaseVersion(text)FUNCTIONBCREATE FUNCTION "GetDatabaseVersion"(name text) RETURNS integer AS $$ DECLARE ret integer; BEGIN IF "IsDatabaseVersionPresent"() THEN SELECT "Current" INTO ret FROM "__DatabaseVersion__" WHERE "Name" = name; IF NOT FOUND THEN ret := 1; END IF; END IF; RETURN ret; END $$ LANGUAGE plpgsql; 7DROP FUNCTION upgrade."GetDatabaseVersion"(name text); upgradepostgresfalse5106Z125526798IsDatabaseVersionPresent()FUNCTIONCREATE FUNCTION "IsDatabaseVersionPresent"() RETURNS boolean AS $$ SELECT count(*) = 1 FROM information_schema.tables WHERE table_name='__DatabaseVersion__' AND table_schema='public' AND table_type='BASE TABLE'; $$ LANGUAGE sql; 4DROP FUNCTION upgrade."IsDatabaseVersionPresent"(); upgradepostgresfalse6\125526800*SetDatabaseVersion(text, integer, integer)FUNCTIONCREATE FUNCTION "SetDatabaseVersion"(name text, min_compat integer, cur integer) RETURNS void AS $$ DECLARE BEGIN UPDATE "__DatabaseVersion__" SET "MinCompatible" = min_compat, "Current" = cur WHERE "Name" = name; IF NOT FOUND THEN INSERT INTO "__DatabaseVersion__" ("Name", "MinCompatible", "Current") VALUES (name, min_compat, cur); END IF; END $$ LANGUAGE plpgsql; XDROP FUNCTION upgrade."SetDatabaseVersion"(name text, min_compat integer, cur integer); upgradepostgresfalse5106125924681 AddsPendingTABLECREATE TABLE "AddsPending" ( "ObjectID" integer NOT NULL, "ChangelistID" integer NOT NULL, "Path" integer[] NOT NULL, "CheckPoint" integer NOT NULL ); !DROP TABLE public."AddsPending"; publicpostgresfalse5125924686AddsPending_ObjectID_seqSEQUENCEkCREATE SEQUENCE "AddsPending_ObjectID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; 1DROP SEQUENCE public."AddsPending_ObjectID_seq"; publicpostgresfalse15275= 00AddsPending_ObjectID_seqSEQUENCE OWNED BYMALTER SEQUENCE "AddsPending_ObjectID_seq" OWNED BY "AddsPending"."ObjectID"; publicpostgresfalse1528> 00AddsPending_ObjectID_seq SEQUENCE SETDSELECT pg_catalog.setval('"AddsPending_ObjectID_seq"', 3971, true); publicpostgresfalse1528125924688AuditLog_ID_seqSEQUENCEbCREATE SEQUENCE "AuditLog_ID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; (DROP SEQUENCE public."AuditLog_ID_seq"; publicpostgresfalse15255? 00AuditLog_ID_seqSEQUENCE OWNED BY;ALTER SEQUENCE "AuditLog_ID_seq" OWNED BY "AuditLog"."ID"; publicpostgresfalse1529@ 00AuditLog_ID_seq SEQUENCE SET;SELECT pg_catalog.setval('"AuditLog_ID_seq"', 8592, true); publicpostgresfalse1529125924690Changelists_ID_seqSEQUENCEeCREATE SEQUENCE "Changelists_ID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; +DROP SEQUENCE public."Changelists_ID_seq"; publicpostgresfalse15205A 00Changelists_ID_seqSEQUENCE OWNED BYAALTER SEQUENCE "Changelists_ID_seq" OWNED BY "Changelists"."ID"; publicpostgresfalse1530B 00Changelists_ID_seq SEQUENCE SET>SELECT pg_catalog.setval('"Changelists_ID_seq"', 3692, true); publicpostgresfalse1530125924692CheckoutsPendingTABLECREATE TABLE "CheckoutsPending" ( "ObjectID" integer NOT NULL, "ChangelistID" integer NOT NULL, "EditCheckPoint" integer NOT NULL, "DeleteCheckPoint" integer NOT NULL ); &DROP TABLE public."CheckoutsPending"; publicpostgresfalse5125924694 ExternalIDTABLECREATE TABLE "ExternalID" ( "TypeID" smallint NOT NULL, "CanAlloc" boolean NOT NULL, "ObjectID" integer NOT NULL, "Value" integer NOT NULL ); DROP TABLE public."ExternalID"; publicpostgresfalse5125924696ExternalIDPendingTABLECREATE TABLE "ExternalIDPending" ( "TypeID" smallint NOT NULL, "CanAlloc" boolean NOT NULL, "ObjectID" integer NOT NULL, "Value" integer NOT NULL ); 'DROP TABLE public."ExternalIDPending"; publicpostgresfalse5125924698ExternalIDPoolTABLECREATE TABLE "ExternalIDPool" ( "TypeID" smallint NOT NULL, "CanAlloc" boolean NOT NULL, "BeginRange" integer NOT NULL, "EndRange" integer NOT NULL, "FreedAt" timestamp with time zone NOT NULL ); $DROP TABLE public."ExternalIDPool"; publicpostgresfalse5125924700 GlobalContextTABLECREATE TABLE "GlobalContext" ( "VersionID" integer NOT NULL, "SecurityAccountsID" integer NOT NULL, "Extensions" text NOT NULL ); #DROP TABLE public."GlobalContext"; publicpostgresfalse5125924705GlobalsTABLECREATE TABLE "Globals" ( "Name" text NOT NULL, "ShortValue" smallint, "IntValue" integer, "BoolValue" boolean, "StringValue" text, "sensPasswordValue" text, "BlobValue" bytea, "IntArrayValue" integer[], "TimeValue" timestamp with time zone ); DROP TABLE public."Globals"; publicpostgresfalse5f125926755HWS_AuthenticationGatewayTABLECREATE TABLE "HWS_AuthenticationGateway" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "MetadataUrl" text NOT NULL ); /DROP TABLE public."HWS_AuthenticationGateway"; publicpostgresfalse5125924710HWS_HostedConfigTABLE@CREATE TABLE "HWS_HostedConfig" ( "VersionID" integer NOT NULL, "HostedAccount" text NOT NULL, "PacFileURL" text NOT NULL, "QueryURL" text NOT NULL, "MonitorURL" text NOT NULL, "RoamingURL" text NOT NULL, "UserPasswordURL" text NOT NULL, "sensPermToken" bytea NOT NULL, "GPOScriptKey" text DEFAULT ''::text NOT NULL, "Endpoints" text DEFAULT ''::text NOT NULL, "AuthenticationServices" text DEFAULT ''::text NOT NULL, "RootCertificate" text DEFAULT ''::text NOT NULL, "TricipherPacFileURL" text DEFAULT ''::text NOT NULL ); &DROP TABLE public."HWS_HostedConfig"; publicpostgresfalse202820292030203120325125924715HWS_HostedWebServiceTABLEmCREATE TABLE "HWS_HostedWebService" ( "VersionID" integer NOT NULL, "SettingsID" integer NOT NULL ); *DROP TABLE public."HWS_HostedWebService"; publicpostgresfalse5125924717HWS_HybridConnectionTABLE*CREATE TABLE "HWS_HybridConnection" ( "VersionID" integer NOT NULL, "SelectorType" smallint NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "TimeZone" text NOT NULL, "ConnectionTypeValue" text NOT NULL, "First" integer NOT NULL, "Last" integer NOT NULL, "Port" integer NOT NULL, "ConnectionType" smallint NOT NULL, "ProxyMode" integer DEFAULT 0 NOT NULL, "SSLPort" integer DEFAULT 0 NOT NULL, "FTPPort" integer DEFAULT 0 NOT NULL, "AssociatedProxies" text DEFAULT ''::text NOT NULL ); *DROP TABLE public."HWS_HybridConnection"; publicpostgresfalse20332034203520365125924722HWS_HybridDomainTABLECREATE TABLE "HWS_HybridDomain" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "IncludeSubdomains" boolean NOT NULL ); &DROP TABLE public."HWS_HybridDomain"; publicpostgresfalse5125924727 HWS_SettingTABLEwCREATE TABLE "HWS_Setting" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Value" bytea NOT NULL ); !DROP TABLE public."HWS_Setting"; publicpostgresfalse5125924732 HWS_SettingsTABLECREATE TABLE "HWS_Settings" ( "VersionID" integer NOT NULL, "HostedConfigID" integer NOT NULL, "WelcomePageType" smallint NOT NULL, "ContactEmail" text NOT NULL, "Country" text NOT NULL, "Language" text NOT NULL, "Timezone" text NOT NULL, "LogPollingInterval" integer NOT NULL, "FailOpen" boolean NOT NULL, "ForceUserIdent" boolean NOT NULL, "UseNTLM" boolean NOT NULL, "HostedLogging" boolean NOT NULL, "ProvisionRoamingUserPasswords" boolean NOT NULL, "HostnameVerifyLocation" text NOT NULL, "sensTempToken" bytea NOT NULL, "EndpointAgentEnabled" boolean DEFAULT false NOT NULL, "ManualDeploymentEnabled" boolean DEFAULT false NOT NULL, "DeployToAllUsers" boolean DEFAULT false NOT NULL, "EndpointInstallReminder" integer DEFAULT 0 NOT NULL, "EndpointAutoUpdateEnabled" boolean DEFAULT false NOT NULL, "SslTerminationEnabled" boolean DEFAULT false NOT NULL, "AuthenticationEnabled" boolean DEFAULT false NOT NULL ); "DROP TABLE public."HWS_Settings"; publicpostgresfalse20372038203920402041204220435C 00*COLUMN "HWS_Settings"."LogPollingInterval"COMMENTDCOMMENT ON COLUMN "HWS_Settings"."LogPollingInterval" IS 'minutes'; publicpostgresfalse1542D 00/COLUMN "HWS_Settings"."EndpointInstallReminder"COMMENTFCOMMENT ON COLUMN "HWS_Settings"."EndpointInstallReminder" IS 'days'; publicpostgresfalse1542125924737 LocalUsersTABLE[CREATE TABLE "LocalUsers" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "pwdPassword" bytea NOT NULL, "IsSpecial" boolean NOT NULL, "CanAudit" boolean NOT NULL, "UserRoleID" integer[] NOT NULL, "Flags" integer DEFAULT 0 NOT NULL, "UUID" text DEFAULT '00000000-0000-0000-0000-000000000000'::text NOT NULL ); DROP TABLE public."LocalUsers"; publicpostgresfalse204420455125924743LocksTABLE3CREATE TABLE "Locks" ( "Name" text NOT NULL ); DROP TABLE public."Locks"; publicpostgresfalse5 125924748ReferencesPendingTABLECREATE TABLE "ReferencesPending" ( "ChangelistID" integer NOT NULL, "CheckPoint" integer NOT NULL, "Src" integer NOT NULL, "Dst" integer NOT NULL, "Count" integer NOT NULL ); 'DROP TABLE public."ReferencesPending"; publicpostgresfalse5 125924750 RemoteUsersTABLECREATE TABLE "RemoteUsers" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "UserRoleID" integer[] NOT NULL, "Flags" integer DEFAULT 0 NOT NULL, "UUID" text DEFAULT '00000000-0000-0000-0000-000000000000'::text NOT NULL ); !DROP TABLE public."RemoteUsers"; publicpostgresfalse204620475 125924756SecurityAccountsTABLEFCREATE TABLE "SecurityAccounts" ( "VersionID" integer NOT NULL ); &DROP TABLE public."SecurityAccounts"; publicpostgresfalse5 125924758TokensTABLECREATE TABLE "Tokens" ( "UserName" text NOT NULL, "UserRoleID" integer[] NOT NULL, "Created" timestamp with time zone NOT NULL, "Data" bytea NOT NULL, "CanAudit" boolean NOT NULL, "Privileges" integer NOT NULL ); DROP TABLE public."Tokens"; publicpostgresfalse5 125924763 UserRolesTABLECREATE TABLE "UserRoles" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Privileges" integer NOT NULL ); DROP TABLE public."UserRoles"; publicpostgresfalse5125924768VersionsTABLECREATE TABLE "Versions" ( "ID" integer NOT NULL, "BeginViewID" integer NOT NULL, "EndViewID" integer NOT NULL, "ObjectID" integer NOT NULL ); DROP TABLE public."Versions"; publicpostgresfalse5125924770Versions_ID_seqSEQUENCEbCREATE SEQUENCE "Versions_ID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; (DROP SEQUENCE public."Versions_ID_seq"; publicpostgresfalse15505E 00Versions_ID_seqSEQUENCE OWNED BY;ALTER SEQUENCE "Versions_ID_seq" OWNED BY "Versions"."ID"; publicpostgresfalse1551F 00Versions_ID_seq SEQUENCE SET;SELECT pg_catalog.setval('"Versions_ID_seq"', 5005, true); publicpostgresfalse1551125924772View_GlobalContextVIEWCREATE VIEW "View_GlobalContext" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "GlobalContext"."Extensions" FROM ((("GlobalContext" JOIN "Versions" ON (("GlobalContext"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (20)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_GlobalContext"; publicpostgresfalse17145g125926760View_HWS_AuthenticationGatewayVIEW5CREATE VIEW "View_HWS_AuthenticationGateway" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "HWS_AuthenticationGateway"."Name", "HWS_AuthenticationGateway"."Description", "HWS_AuthenticationGateway"."MetadataUrl" FROM ((("HWS_AuthenticationGateway" JOIN "Versions" ON (("HWS_AuthenticationGateway"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (2054)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 3DROP VIEW public."View_HWS_AuthenticationGateway"; publicpostgresfalse17635d125926670View_HWS_HostedConfigVIEWPCREATE VIEW "View_HWS_HostedConfig" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "HWS_HostedConfig"."HostedAccount", "HWS_HostedConfig"."PacFileURL", "HWS_HostedConfig"."QueryURL", "HWS_HostedConfig"."MonitorURL", "HWS_HostedConfig"."RoamingURL", "HWS_HostedConfig"."UserPasswordURL", "HWS_HostedConfig"."sensPermToken", "HWS_HostedConfig"."GPOScriptKey", "HWS_HostedConfig"."Endpoints", "HWS_HostedConfig"."AuthenticationServices", "HWS_HostedConfig"."RootCertificate", "HWS_HostedConfig"."TricipherPacFileURL" FROM ((("HWS_HostedConfig" JOIN "Versions" ON (("HWS_HostedConfig"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (2053)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_HWS_HostedConfig"; publicpostgresfalse17615125924779View_HWS_HostedWebServiceVIEWCREATE VIEW "View_HWS_HostedWebService" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "HWS_HostedWebService"."SettingsID" FROM ((("HWS_HostedWebService" JOIN "Versions" ON (("HWS_HostedWebService"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (2048)::smallint) AND ("Versions"."EndViewID" = 2147483647)); .DROP VIEW public."View_HWS_HostedWebService"; publicpostgresfalse17155c125926616View_HWS_HybridConnectionVIEWCREATE VIEW "View_HWS_HybridConnection" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "HWS_HybridConnection"."SelectorType", "HWS_HybridConnection"."Name", "HWS_HybridConnection"."Description", "HWS_HybridConnection"."TimeZone", "HWS_HybridConnection"."ConnectionTypeValue", "HWS_HybridConnection"."First", "HWS_HybridConnection"."Last", "HWS_HybridConnection"."Port", "HWS_HybridConnection"."ConnectionType", "HWS_HybridConnection"."ProxyMode", "HWS_HybridConnection"."SSLPort", "HWS_HybridConnection"."FTPPort", "HWS_HybridConnection"."AssociatedProxies" FROM ((("HWS_HybridConnection" JOIN "Versions" ON (("HWS_HybridConnection"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (2052)::smallint) AND ("Versions"."EndViewID" = 2147483647)); .DROP VIEW public."View_HWS_HybridConnection"; publicpostgresfalse17605125924786View_HWS_HybridDomainVIEWCREATE VIEW "View_HWS_HybridDomain" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "HWS_HybridDomain"."Name", "HWS_HybridDomain"."Description", "HWS_HybridDomain"."IncludeSubdomains" FROM ((("HWS_HybridDomain" JOIN "Versions" ON (("HWS_HybridDomain"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (2051)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_HWS_HybridDomain"; publicpostgresfalse17165125924790View_HWS_SettingVIEWCREATE VIEW "View_HWS_Setting" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "HWS_Setting"."Name", "HWS_Setting"."Value" FROM ((("HWS_Setting" JOIN "Versions" ON (("HWS_Setting"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (2050)::smallint) AND ("Versions"."EndViewID" = 2147483647)); %DROP VIEW public."View_HWS_Setting"; publicpostgresfalse17175e125926751View_HWS_SettingsVIEWSCREATE VIEW "View_HWS_Settings" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "HWS_Settings"."WelcomePageType", "HWS_Settings"."ContactEmail", "HWS_Settings"."Country", "HWS_Settings"."Language", "HWS_Settings"."Timezone", "HWS_Settings"."LogPollingInterval", "HWS_Settings"."FailOpen", "HWS_Settings"."ForceUserIdent", "HWS_Settings"."UseNTLM", "HWS_Settings"."HostedLogging", "HWS_Settings"."ProvisionRoamingUserPasswords", "HWS_Settings"."HostnameVerifyLocation", "HWS_Settings"."sensTempToken", "HWS_Settings"."EndpointAgentEnabled", "HWS_Settings"."ManualDeploymentEnabled", "HWS_Settings"."DeployToAllUsers", "HWS_Settings"."EndpointInstallReminder", "HWS_Settings"."EndpointAutoUpdateEnabled", "HWS_Settings"."SslTerminationEnabled", "HWS_Settings"."AuthenticationEnabled" FROM ((("HWS_Settings" JOIN "Versions" ON (("HWS_Settings"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (2049)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_HWS_Settings"; publicpostgresfalse17625]125926482View_LocalUsersVIEW6CREATE VIEW "View_LocalUsers" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "LocalUsers"."Name", "LocalUsers"."pwdPassword", "LocalUsers"."IsSpecial", "LocalUsers"."CanAudit", "LocalUsers"."UserRoleID", "LocalUsers"."Flags", "LocalUsers"."UUID" FROM ((("LocalUsers" JOIN "Versions" ON (("LocalUsers"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (23)::smallint) AND ("Versions"."EndViewID" = 2147483647)); $DROP VIEW public."View_LocalUsers"; publicpostgresfalse17545125924801View_ReferencesVIEWCREATE VIEW "View_References" AS SELECT result."Src", result."Dst", sum(result."aCount") AS "Count" FROM (SELECT COALESCE("References"."Src", "ReferencesPending"."Src") AS "Src", "GetTableName"(COALESCE("References"."Src", "ReferencesPending"."Src")) AS "SrcTable", COALESCE("References"."Dst", "ReferencesPending"."Dst") AS "Dst", "GetTableName"(COALESCE("References"."Dst", "ReferencesPending"."Dst")) AS "DstTable", (COALESCE("References"."Count", 0) + COALESCE("ReferencesPending"."Count", 0)) AS "aCount" FROM ("References" FULL JOIN "ReferencesPending" ON ((("References"."Src" = "ReferencesPending"."Src") AND ("References"."Dst" = "ReferencesPending"."Dst"))))) result GROUP BY result."Src", result."Dst"; $DROP VIEW public."View_References"; publicpostgresfalse17185^125926486View_RemoteUsersVIEWCREATE VIEW "View_RemoteUsers" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "RemoteUsers"."Name", "RemoteUsers"."UserRoleID", "RemoteUsers"."Flags", "RemoteUsers"."UUID" FROM ((("RemoteUsers" JOIN "Versions" ON (("RemoteUsers"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (24)::smallint) AND ("Versions"."EndViewID" = 2147483647)); %DROP VIEW public."View_RemoteUsers"; publicpostgresfalse17555125924807View_SecurityAccountsVIEWCREATE VIEW "View_SecurityAccounts" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath" FROM ((("SecurityAccounts" JOIN "Versions" ON (("SecurityAccounts"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (21)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_SecurityAccounts"; publicpostgresfalse17195125924810View_UserRolesVIEWCREATE VIEW "View_UserRoles" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "UserRoles"."Name", "UserRoles"."Description", "UserRoles"."Privileges" FROM ((("UserRoles" JOIN "Versions" ON (("UserRoles"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (22)::smallint) AND ("Versions"."EndViewID" = 2147483647)); #DROP VIEW public."View_UserRoles"; publicpostgresfalse17205125924813WCG_ContentGatewayTABLEkCREATE TABLE "WCG_ContentGateway" ( "VersionID" integer NOT NULL, "SettingsID" integer NOT NULL ); (DROP TABLE public."WCG_ContentGateway"; publicpostgresfalse5125924815View_WCG_ContentGatewayVIEWCREATE VIEW "View_WCG_ContentGateway" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WCG_ContentGateway"."SettingsID" FROM ((("WCG_ContentGateway" JOIN "Versions" ON (("WCG_ContentGateway"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (1024)::smallint) AND ("Versions"."EndViewID" = 2147483647)); ,DROP VIEW public."View_WCG_ContentGateway"; publicpostgresfalse17215125924818WCG_ExceptionUrlsTABLECREATE TABLE "WCG_ExceptionUrls" ( "VersionID" integer NOT NULL, "Url" text, "RealTimeCat" smallint, "Threat" smallint, "ContentStripping" smallint, "Apd" smallint DEFAULT 2 NOT NULL ); 'DROP TABLE public."WCG_ExceptionUrls"; publicpostgresfalse20495125924824View_WCG_ExceptionUrlsVIEWBCREATE VIEW "View_WCG_ExceptionUrls" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WCG_ExceptionUrls"."Url", "WCG_ExceptionUrls"."RealTimeCat", "WCG_ExceptionUrls"."Threat", "WCG_ExceptionUrls"."ContentStripping", "WCG_ExceptionUrls"."Apd" FROM ((("WCG_ExceptionUrls" JOIN "Versions" ON (("WCG_ExceptionUrls"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (1026)::smallint) AND ("Versions"."EndViewID" = 2147483647)); +DROP VIEW public."View_WCG_ExceptionUrls"; publicpostgresfalse17225125924828 WCG_SettingTABLEwCREATE TABLE "WCG_Setting" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Value" bytea NOT NULL ); !DROP TABLE public."WCG_Setting"; publicpostgresfalse5125924833View_WCG_SettingVIEWCREATE VIEW "View_WCG_Setting" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WCG_Setting"."Name", "WCG_Setting"."Value" FROM ((("WCG_Setting" JOIN "Versions" ON (("WCG_Setting"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (1027)::smallint) AND ("Versions"."EndViewID" = 2147483647)); %DROP VIEW public."View_WCG_Setting"; publicpostgresfalse17235125924836 WCG_SettingsTABLE)CREATE TABLE "WCG_Settings" ( "VersionID" integer NOT NULL, "ContentCatOpt" smallint, "ContentScanOpt" smallint, "AppScanOpt" smallint, "FileSizeLimit" integer, "ExeFileNames" text, "ContentTypes" integer, "ExeFilesEnable" boolean DEFAULT true NOT NULL, "AEScanOpt" smallint DEFAULT 1 NOT NULL, "FileTypes" integer DEFAULT 35 NOT NULL, "SSLBypassHosts" text DEFAULT ''::text NOT NULL, "BandwidthReportEnable" boolean DEFAULT false NOT NULL, "OutboundScanEnable" boolean DEFAULT false NOT NULL, "ApdEnable" boolean DEFAULT true NOT NULL, "LinkAnalysisEnable" boolean DEFAULT false NOT NULL, "ExceptionClients" text DEFAULT ''::text NOT NULL, "FtpScanEnable" boolean DEFAULT true NOT NULL, "ScanTimeLimit" integer DEFAULT 1500 NOT NULL ); "DROP TABLE public."WCG_Settings"; publicpostgresfalse205020512052205320542055205620572058205920605b125926573View_WCG_SettingsVIEWCREATE VIEW "View_WCG_Settings" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WCG_Settings"."ContentCatOpt", "WCG_Settings"."ContentScanOpt", "WCG_Settings"."AppScanOpt", "WCG_Settings"."AEScanOpt", "WCG_Settings"."ExeFilesEnable", "WCG_Settings"."FileSizeLimit", "WCG_Settings"."ExeFileNames", "WCG_Settings"."ContentTypes", "WCG_Settings"."FileTypes", "WCG_Settings"."SSLBypassHosts", "WCG_Settings"."BandwidthReportEnable", "WCG_Settings"."OutboundScanEnable", "WCG_Settings"."ApdEnable", "WCG_Settings"."LinkAnalysisEnable", "WCG_Settings"."ExceptionClients", "WCG_Settings"."FtpScanEnable", "WCG_Settings"."ScanTimeLimit" FROM ((("WCG_Settings" JOIN "Versions" ON (("WCG_Settings"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (1025)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WCG_Settings"; publicpostgresfalse17595125924854WSE_CategoriesTABLECREATE TABLE "WSE_Categories" ( "VersionID" integer NOT NULL, "ParentID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); $DROP TABLE public."WSE_Categories"; publicpostgresfalse5125924859View_WSE_CategoriesVIEW CREATE VIEW "View_WSE_Categories" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Categories"."Name", "WSE_Categories"."Description", "WSE_Categories"."ParentID", "WSE_Categories"."ExternalID" FROM ((("WSE_Categories" JOIN "Versions" ON (("WSE_Categories"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (54)::smallint) AND ("Versions"."EndViewID" = 2147483647)); (DROP VIEW public."View_WSE_Categories"; publicpostgresfalse17245 125924863WSE_CategoryDispositionsTABLE}CREATE TABLE "WSE_CategoryDispositions" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Action" smallint NOT NULL, "BlockKeywords" boolean NOT NULL, "BlockedFileTypes" text NOT NULL, "BandwidthBlockType" smallint NOT NULL, "BandwidthLimit" integer NOT NULL, "BandwidthUseDefaultBandwidth" boolean NOT NULL ); .DROP TABLE public."WSE_CategoryDispositions"; publicpostgresfalse5!125924868View_WSE_CategoryDispositionsVIEWCREATE VIEW "View_WSE_CategoryDispositions" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_CategoryDispositions"."Name", "WSE_CategoryDispositions"."Description", "WSE_CategoryDispositions"."Action", "WSE_CategoryDispositions"."BlockKeywords", "WSE_CategoryDispositions"."BlockedFileTypes", "WSE_CategoryDispositions"."BandwidthBlockType", "WSE_CategoryDispositions"."BandwidthLimit", "WSE_CategoryDispositions"."BandwidthUseDefaultBandwidth" FROM ((("WSE_CategoryDispositions" JOIN "Versions" ON (("WSE_CategoryDispositions"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (63)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 2DROP VIEW public."View_WSE_CategoryDispositions"; publicpostgresfalse17255"125924872WSE_CategoryNotificationsTABLECREATE TABLE "WSE_CategoryNotifications" ( "VersionID" integer NOT NULL, "CategoryID" integer NOT NULL, "Log" boolean DEFAULT true NOT NULL, "AlertBlockedMin" integer DEFAULT 0 NOT NULL, "AlertBlockedDest" integer DEFAULT 0 NOT NULL, "AlertPermittedMin" integer DEFAULT 0 NOT NULL, "AlertPermittedDest" integer DEFAULT 0 NOT NULL, "Name" text NOT NULL, "SSLBypass" boolean DEFAULT false NOT NULL ); /DROP TABLE public."WSE_CategoryNotifications"; publicpostgresfalse2061206220632064206520665#125924883View_WSE_CategoryNotificationsVIEWCREATE VIEW "View_WSE_CategoryNotifications" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_CategoryNotifications"."CategoryID", "WSE_CategoryNotifications"."Log", "WSE_CategoryNotifications"."AlertBlockedMin", "WSE_CategoryNotifications"."AlertBlockedDest", "WSE_CategoryNotifications"."AlertPermittedMin", "WSE_CategoryNotifications"."AlertPermittedDest", "WSE_CategoryNotifications"."Name", "WSE_CategoryNotifications"."SSLBypass" FROM ((("WSE_CategoryNotifications" JOIN "Versions" ON (("WSE_CategoryNotifications"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (79)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 3DROP VIEW public."View_WSE_CategoryNotifications"; publicpostgresfalse17265$125924887WSE_CategorySetTemplatesTABLECREATE TABLE "WSE_CategorySetTemplates" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Entries" text NOT NULL ); .DROP TABLE public."WSE_CategorySetTemplates"; publicpostgresfalse5%125924892View_WSE_CategorySetTemplatesVIEWCREATE VIEW "View_WSE_CategorySetTemplates" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_CategorySetTemplates"."Name", "WSE_CategorySetTemplates"."Entries" FROM ((("WSE_CategorySetTemplates" JOIN "Versions" ON (("WSE_CategorySetTemplates"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (59)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 2DROP VIEW public."View_WSE_CategorySetTemplates"; publicpostgresfalse17275&125924895WSE_CategorySetsTABLECREATE TABLE "WSE_CategorySets" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Entries" text NOT NULL, "DefaultDispID" integer DEFAULT 0 NOT NULL, "Mode" smallint DEFAULT 0 NOT NULL ); &DROP TABLE public."WSE_CategorySets"; publicpostgresfalse206720685'125924902View_WSE_CategorySetsVIEW8CREATE VIEW "View_WSE_CategorySets" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_CategorySets"."Name", "WSE_CategorySets"."Description", "WSE_CategorySets"."Entries", "WSE_CategorySets"."DefaultDispID", "WSE_CategorySets"."Mode" FROM ((("WSE_CategorySets" JOIN "Versions" ON (("WSE_CategorySets"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (56)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_WSE_CategorySets"; publicpostgresfalse17285(125924906WSE_ClientRulesTABLE(CREATE TABLE "WSE_ClientRules" ( "VersionID" integer NOT NULL, "PolicyID" integer NOT NULL, "QuotaTime" integer NOT NULL, "sensPassword" text NOT NULL, "UserAccountOverrideEnabled" boolean DEFAULT false NOT NULL, "UserAccountOverrideTimeout" integer DEFAULT 0 NOT NULL ); %DROP TABLE public."WSE_ClientRules"; publicpostgresfalse206920705G 005COLUMN "WSE_ClientRules"."UserAccountOverrideEnabled"COMMENTOCOMMENT ON COLUMN "WSE_ClientRules"."UserAccountOverrideEnabled" IS 'seconds'; publicpostgresfalse1576H 005COLUMN "WSE_ClientRules"."UserAccountOverrideTimeout"COMMENTOCOMMENT ON COLUMN "WSE_ClientRules"."UserAccountOverrideTimeout" IS 'seconds'; publicpostgresfalse1576a125926533View_WSE_ClientRulesVIEWZCREATE VIEW "View_WSE_ClientRules" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ClientRules"."PolicyID", "WSE_ClientRules"."QuotaTime", "WSE_ClientRules"."sensPassword", "WSE_ClientRules"."UserAccountOverrideEnabled", "WSE_ClientRules"."UserAccountOverrideTimeout" FROM ((("WSE_ClientRules" JOIN "Versions" ON (("WSE_ClientRules"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (74)::smallint) AND ("Versions"."EndViewID" = 2147483647)); )DROP VIEW public."View_WSE_ClientRules"; publicpostgresfalse17585)125924915WSE_DirectoryObjectsTABLE CREATE TABLE "WSE_DirectoryObjects" ( "VersionID" integer NOT NULL, "Path" text NOT NULL, "Account" smallint NOT NULL, "ManagingRoleID" integer NOT NULL, "ClientRuleID" integer NOT NULL, "Name" text NOT NULL, "ReportingRoles" text DEFAULT ''::text NOT NULL ); *DROP TABLE public."WSE_DirectoryObjects"; publicpostgresfalse20715`125926512View_WSE_DirectoryObjectsVIEWCREATE VIEW "View_WSE_DirectoryObjects" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_DirectoryObjects"."Path", "WSE_DirectoryObjects"."Account", "WSE_DirectoryObjects"."ManagingRoleID", "WSE_DirectoryObjects"."ClientRuleID", "WSE_DirectoryObjects"."Name", "WSE_DirectoryObjects"."ReportingRoles" FROM ((("WSE_DirectoryObjects" JOIN "Versions" ON (("WSE_DirectoryObjects"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (68)::smallint) AND ("Versions"."EndViewID" = 2147483647)); .DROP VIEW public."View_WSE_DirectoryObjects"; publicpostgresfalse17575*125924924WSE_FileExtensionSetsTABLECREATE TABLE "WSE_FileExtensionSets" ( "VersionID" integer NOT NULL, "FileTypeID" integer NOT NULL, "Extensions" text NOT NULL, "Name" text NOT NULL ); +DROP TABLE public."WSE_FileExtensionSets"; publicpostgresfalse5+125924929View_WSE_FileExtensionSetsVIEWCREATE VIEW "View_WSE_FileExtensionSets" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_FileExtensionSets"."FileTypeID", "WSE_FileExtensionSets"."Extensions", "WSE_FileExtensionSets"."Name" FROM ((("WSE_FileExtensionSets" JOIN "Versions" ON (("WSE_FileExtensionSets"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (73)::smallint) AND ("Versions"."EndViewID" = 2147483647)); /DROP VIEW public."View_WSE_FileExtensionSets"; publicpostgresfalse17295,125924932 WSE_FileTypesTABLECREATE TABLE "WSE_FileTypes" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); #DROP TABLE public."WSE_FileTypes"; publicpostgresfalse5-125924937View_WSE_FileTypesVIEWCREATE VIEW "View_WSE_FileTypes" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_FileTypes"."Name", "WSE_FileTypes"."Description", "WSE_FileTypes"."ExternalID" FROM ((("WSE_FileTypes" JOIN "Versions" ON (("WSE_FileTypes"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (58)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_FileTypes"; publicpostgresfalse17305.125924941 WSE_KeywordsTABLECREATE TABLE "WSE_Keywords" ( "VersionID" integer NOT NULL, "CategoryID" integer NOT NULL, "SimpleValue" text NOT NULL, "RegExValue" text NOT NULL ); "DROP TABLE public."WSE_Keywords"; publicpostgresfalse5/125924946View_WSE_KeywordsVIEWCREATE VIEW "View_WSE_Keywords" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Keywords"."CategoryID", "WSE_Keywords"."SimpleValue", "WSE_Keywords"."RegExValue" FROM ((("WSE_Keywords" JOIN "Versions" ON (("WSE_Keywords"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (70)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_Keywords"; publicpostgresfalse173150125924949WSE_LoggingDispositionsTABLECREATE TABLE "WSE_LoggingDispositions" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Blocking" boolean NOT NULL, "ExternalID" integer NOT NULL ); -DROP TABLE public."WSE_LoggingDispositions"; publicpostgresfalse51125924954View_WSE_LoggingDispositionsVIEWLCREATE VIEW "View_WSE_LoggingDispositions" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_LoggingDispositions"."Name", "WSE_LoggingDispositions"."Description", "WSE_LoggingDispositions"."Blocking", "WSE_LoggingDispositions"."ExternalID" FROM ((("WSE_LoggingDispositions" JOIN "Versions" ON (("WSE_LoggingDispositions"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (81)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 1DROP VIEW public."View_WSE_LoggingDispositions"; publicpostgresfalse173252125924958 WSE_NetworksTABLECREATE TABLE "WSE_Networks" ( "VersionID" integer NOT NULL, "First" integer NOT NULL, "Last" integer NOT NULL, "ManagingRoleID" integer NOT NULL, "ClientRuleID" integer NOT NULL, "Name" text NOT NULL, "ReportingRoles" text DEFAULT ''::text NOT NULL ); "DROP TABLE public."WSE_Networks"; publicpostgresfalse20725_125926500View_WSE_NetworksVIEW9CREATE VIEW "View_WSE_Networks" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Networks"."First", "WSE_Networks"."Last", "WSE_Networks"."ManagingRoleID", "WSE_Networks"."ClientRuleID", "WSE_Networks"."Name", "WSE_Networks"."ReportingRoles" FROM ((("WSE_Networks" JOIN "Versions" ON (("WSE_Networks"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (67)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_Networks"; publicpostgresfalse175653125924967 WSE_PoliciesTABLECREATE TABLE "WSE_Policies" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "IsDefault" boolean DEFAULT false NOT NULL ); "DROP TABLE public."WSE_Policies"; publicpostgresfalse207354125924973View_WSE_PoliciesVIEWCREATE VIEW "View_WSE_Policies" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Policies"."Name", "WSE_Policies"."Description", "WSE_Policies"."IsDefault" FROM ((("WSE_Policies" JOIN "Versions" ON (("WSE_Policies"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (53)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_Policies"; publicpostgresfalse173355125924977WSE_PolicyPeriodsTABLE5CREATE TABLE "WSE_PolicyPeriods" ( "VersionID" integer NOT NULL, "TargetID" integer NOT NULL, "TargetTypeID" smallint NOT NULL, "TrafficID" integer NOT NULL, "TrafficTypeID" smallint NOT NULL, "StartTime" integer NOT NULL, "Length" integer NOT NULL, "Days" integer NOT NULL ); 'DROP TABLE public."WSE_PolicyPeriods"; publicpostgresfalse56125924979View_WSE_PolicyPeriodsVIEW=CREATE VIEW "View_WSE_PolicyPeriods" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_PolicyPeriods"."TargetID", "WSE_PolicyPeriods"."TrafficID", "WSE_PolicyPeriods"."StartTime", "WSE_PolicyPeriods"."Length", "WSE_PolicyPeriods"."Days" FROM ((("WSE_PolicyPeriods" JOIN "Versions" ON (("WSE_PolicyPeriods"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (66)::smallint) AND ("Versions"."EndViewID" = 2147483647)); +DROP VIEW public."View_WSE_PolicyPeriods"; publicpostgresfalse173457125924983WSE_ProtocolCriteriaTABLEiCREATE TABLE "WSE_ProtocolCriteria" ( "VersionID" integer NOT NULL, "sensData" bytea NOT NULL ); *DROP TABLE public."WSE_ProtocolCriteria"; publicpostgresfalse58125924988View_WSE_ProtocolCriteriaVIEWCREATE VIEW "View_WSE_ProtocolCriteria" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolCriteria"."sensData" FROM ((("WSE_ProtocolCriteria" JOIN "Versions" ON (("WSE_ProtocolCriteria"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (69)::smallint) AND ("Versions"."EndViewID" = 2147483647)); .DROP VIEW public."View_WSE_ProtocolCriteria"; publicpostgresfalse173559125924991WSE_ProtocolDispositionsTABLEMCREATE TABLE "WSE_ProtocolDispositions" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Action" smallint NOT NULL, "Log" boolean NOT NULL, "BandwidthBlockType" smallint NOT NULL, "BandwidthLimit" integer NOT NULL, "BandwidthUseDefaultBandwidth" boolean NOT NULL ); .DROP TABLE public."WSE_ProtocolDispositions"; publicpostgresfalse5:125924996View_WSE_ProtocolDispositionsVIEWCREATE VIEW "View_WSE_ProtocolDispositions" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolDispositions"."Name", "WSE_ProtocolDispositions"."Description", "WSE_ProtocolDispositions"."Action", "WSE_ProtocolDispositions"."Log", "WSE_ProtocolDispositions"."BandwidthBlockType", "WSE_ProtocolDispositions"."BandwidthLimit", "WSE_ProtocolDispositions"."BandwidthUseDefaultBandwidth" FROM ((("WSE_ProtocolDispositions" JOIN "Versions" ON (("WSE_ProtocolDispositions"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (65)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 2DROP VIEW public."View_WSE_ProtocolDispositions"; publicpostgresfalse17365;125925000WSE_ProtocolGroupsTABLECREATE TABLE "WSE_ProtocolGroups" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); (DROP TABLE public."WSE_ProtocolGroups"; publicpostgresfalse5<125925005View_WSE_ProtocolGroupsVIEWCREATE VIEW "View_WSE_ProtocolGroups" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolGroups"."Name", "WSE_ProtocolGroups"."Description", "WSE_ProtocolGroups"."ExternalID" FROM ((("WSE_ProtocolGroups" JOIN "Versions" ON (("WSE_ProtocolGroups"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (64)::smallint) AND ("Versions"."EndViewID" = 2147483647)); ,DROP VIEW public."View_WSE_ProtocolGroups"; publicpostgresfalse17375=125925009WSE_ProtocolNotificationsTABLEZCREATE TABLE "WSE_ProtocolNotifications" ( "VersionID" integer NOT NULL, "ProtocolID" integer NOT NULL, "AlertBlockedMin" integer DEFAULT 0 NOT NULL, "AlertBlockedDest" integer DEFAULT 0 NOT NULL, "AlertPermittedMin" integer DEFAULT 0 NOT NULL, "AlertPermittedDest" integer DEFAULT 0 NOT NULL, "Name" text NOT NULL ); /DROP TABLE public."WSE_ProtocolNotifications"; publicpostgresfalse20742075207620775>125925018View_WSE_ProtocolNotificationsVIEWCREATE VIEW "View_WSE_ProtocolNotifications" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolNotifications"."ProtocolID", "WSE_ProtocolNotifications"."AlertBlockedMin", "WSE_ProtocolNotifications"."AlertBlockedDest", "WSE_ProtocolNotifications"."AlertPermittedMin", "WSE_ProtocolNotifications"."AlertPermittedDest", "WSE_ProtocolNotifications"."Name" FROM ((("WSE_ProtocolNotifications" JOIN "Versions" ON (("WSE_ProtocolNotifications"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (80)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 3DROP VIEW public."View_WSE_ProtocolNotifications"; publicpostgresfalse17385?125925022WSE_ProtocolSetTemplatesTABLECREATE TABLE "WSE_ProtocolSetTemplates" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Entries" text NOT NULL ); .DROP TABLE public."WSE_ProtocolSetTemplates"; publicpostgresfalse5@125925027View_WSE_ProtocolSetTemplatesVIEWCREATE VIEW "View_WSE_ProtocolSetTemplates" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolSetTemplates"."Name", "WSE_ProtocolSetTemplates"."Entries" FROM ((("WSE_ProtocolSetTemplates" JOIN "Versions" ON (("WSE_ProtocolSetTemplates"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (60)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 2DROP VIEW public."View_WSE_ProtocolSetTemplates"; publicpostgresfalse17395A125925030WSE_ProtocolSetsTABLECREATE TABLE "WSE_ProtocolSets" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Entries" text NOT NULL, "DefaultDispID" integer DEFAULT 0 NOT NULL, "Mode" smallint DEFAULT 0 NOT NULL ); &DROP TABLE public."WSE_ProtocolSets"; publicpostgresfalse207820795B125925037View_WSE_ProtocolSetsVIEW8CREATE VIEW "View_WSE_ProtocolSets" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_ProtocolSets"."Name", "WSE_ProtocolSets"."Description", "WSE_ProtocolSets"."Entries", "WSE_ProtocolSets"."DefaultDispID", "WSE_ProtocolSets"."Mode" FROM ((("WSE_ProtocolSets" JOIN "Versions" ON (("WSE_ProtocolSets"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (57)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_WSE_ProtocolSets"; publicpostgresfalse17405C125925041 WSE_ProtocolsTABLECREATE TABLE "WSE_Protocols" ( "VersionID" integer NOT NULL, "ParentID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); #DROP TABLE public."WSE_Protocols"; publicpostgresfalse5D125925046View_WSE_ProtocolsVIEWCREATE VIEW "View_WSE_Protocols" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Protocols"."Name", "WSE_Protocols"."Description", "WSE_Protocols"."ParentID", "WSE_Protocols"."ExternalID" FROM ((("WSE_Protocols" JOIN "Versions" ON (("WSE_Protocols"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (55)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_Protocols"; publicpostgresfalse17415E125925050WSE_RecategorizedUrlsTABLECREATE TABLE "WSE_RecategorizedUrls" ( "VersionID" integer NOT NULL, "CategoryID" integer NOT NULL, "SimpleValue" text NOT NULL, "RegExValue" text NOT NULL ); +DROP TABLE public."WSE_RecategorizedUrls"; publicpostgresfalse5F125925055View_WSE_RecategorizedUrlsVIEW CREATE VIEW "View_WSE_RecategorizedUrls" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_RecategorizedUrls"."CategoryID", "WSE_RecategorizedUrls"."SimpleValue", "WSE_RecategorizedUrls"."RegExValue" FROM ((("WSE_RecategorizedUrls" JOIN "Versions" ON (("WSE_RecategorizedUrls"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (71)::smallint) AND ("Versions"."EndViewID" = 2147483647)); /DROP VIEW public."View_WSE_RecategorizedUrls"; publicpostgresfalse17425G125925059WSE_RiskClassesTABLECREATE TABLE "WSE_RiskClasses" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "ExternalID" integer NOT NULL ); %DROP TABLE public."WSE_RiskClasses"; publicpostgresfalse5H125925064View_WSE_RiskClassesVIEWCREATE VIEW "View_WSE_RiskClasses" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_RiskClasses"."Name", "WSE_RiskClasses"."Description", "WSE_RiskClasses"."ExternalID" FROM ((("WSE_RiskClasses" JOIN "Versions" ON (("WSE_RiskClasses"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (61)::smallint) AND ("Versions"."EndViewID" = 2147483647)); )DROP VIEW public."View_WSE_RiskClasses"; publicpostgresfalse17435I125925068 WSE_RoleLocksTABLECCREATE TABLE "WSE_RoleLocks" ( "VersionID" integer NOT NULL ); #DROP TABLE public."WSE_RoleLocks"; publicpostgresfalse5J125925070View_WSE_RoleLocksVIEWCREATE VIEW "View_WSE_RoleLocks" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath" FROM ((("WSE_RoleLocks" JOIN "Versions" ON (("WSE_RoleLocks"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (84)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_RoleLocks"; publicpostgresfalse17445K125925073 WSE_RolesTABLECREATE TABLE "WSE_Roles" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "IsRoot" boolean DEFAULT false NOT NULL, "Precedence" integer NOT NULL, "ReportingPermissions" integer NOT NULL, "CatsToRCs" text NOT NULL, "CSTemplateID" integer NOT NULL, "PSTemplateID" integer NOT NULL, "RoleLockID" integer NOT NULL ); DROP TABLE public."WSE_Roles"; publicpostgresfalse20805L125925079View_WSE_RolesVIEW]CREATE VIEW "View_WSE_Roles" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Roles"."Name", "WSE_Roles"."Description", "WSE_Roles"."IsRoot", "WSE_Roles"."Precedence", "WSE_Roles"."ReportingPermissions", "WSE_Roles"."CatsToRCs", "WSE_Roles"."CSTemplateID", "WSE_Roles"."PSTemplateID" FROM ((("WSE_Roles" JOIN "Versions" ON (("WSE_Roles"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (52)::smallint) AND ("Versions"."EndViewID" = 2147483647)); #DROP VIEW public."View_WSE_Roles"; publicpostgresfalse17455M125925083 WSE_SettingTABLEwCREATE TABLE "WSE_Setting" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Value" bytea NOT NULL ); !DROP TABLE public."WSE_Setting"; publicpostgresfalse5N125925088View_WSE_SettingVIEWCREATE VIEW "View_WSE_Setting" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_Setting"."Name", "WSE_Setting"."Value" FROM ((("WSE_Setting" JOIN "Versions" ON (("WSE_Setting"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (78)::smallint) AND ("Versions"."EndViewID" = 2147483647)); %DROP VIEW public."View_WSE_Setting"; publicpostgresfalse17465O125925091 WSE_SettingsTABLEBCREATE TABLE "WSE_Settings" ( "VersionID" integer NOT NULL ); "DROP TABLE public."WSE_Settings"; publicpostgresfalse5P125925093View_WSE_SettingsVIEWCREATE VIEW "View_WSE_Settings" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath" FROM ((("WSE_Settings" JOIN "Versions" ON (("WSE_Settings"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (77)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_Settings"; publicpostgresfalse17475Q125925096 WSE_SysAlertsTABLECREATE TABLE "WSE_SysAlerts" ( "VersionID" integer NOT NULL, "MaxPerEvent" integer NOT NULL, "SMTPEnable" boolean DEFAULT false NOT NULL, "SMTPServer" text DEFAULT ''::text NOT NULL, "SMTPFrom" text DEFAULT ''::text NOT NULL, "SMTPTo" text DEFAULT ''::text NOT NULL, "SMTPCc" text DEFAULT ''::text NOT NULL, "OnScreenEnable" boolean DEFAULT false NOT NULL, "OnScreenRecepients" text DEFAULT ''::text NOT NULL, "SNMPEnable" boolean DEFAULT false NOT NULL, "SNMPCommunity" text DEFAULT ''::text NOT NULL, "SNMPAddress" text DEFAULT ''::text NOT NULL, "SNMPPort" integer DEFAULT 0 NOT NULL ); #DROP TABLE public."WSE_SysAlerts"; publicpostgresfalse208120822083208420852086208720882089209020915R125925112View_WSE_SysAlertsVIEWCREATE VIEW "View_WSE_SysAlerts" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_SysAlerts"."MaxPerEvent", "WSE_SysAlerts"."SMTPEnable", "WSE_SysAlerts"."SMTPServer", "WSE_SysAlerts"."SMTPFrom", "WSE_SysAlerts"."SMTPTo", "WSE_SysAlerts"."SMTPCc", "WSE_SysAlerts"."OnScreenEnable", "WSE_SysAlerts"."OnScreenRecepients", "WSE_SysAlerts"."SNMPEnable", "WSE_SysAlerts"."SNMPCommunity", "WSE_SysAlerts"."SNMPAddress", "WSE_SysAlerts"."SNMPPort" FROM ((("WSE_SysAlerts" JOIN "Versions" ON (("WSE_SysAlerts"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (75)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_SysAlerts"; publicpostgresfalse17485S125925116 WSE_SysEventsTABLECREATE TABLE "WSE_SysEvents" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "Destinations" integer DEFAULT 0 NOT NULL ); #DROP TABLE public."WSE_SysEvents"; publicpostgresfalse20925T125925122View_WSE_SysEventsVIEWCREATE VIEW "View_WSE_SysEvents" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_SysEvents"."Name", "WSE_SysEvents"."Description", "WSE_SysEvents"."Destinations" FROM ((("WSE_SysEvents" JOIN "Versions" ON (("WSE_SysEvents"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (76)::smallint) AND ("Versions"."EndViewID" = 2147483647)); 'DROP VIEW public."View_WSE_SysEvents"; publicpostgresfalse17495U125925125WSE_UnfilteredUrlsTABLECREATE TABLE "WSE_UnfilteredUrls" ( "VersionID" integer NOT NULL, "CategoryID" integer NOT NULL, "SimpleValue" text NOT NULL, "RegExValue" text NOT NULL ); (DROP TABLE public."WSE_UnfilteredUrls"; publicpostgresfalse5V125925130View_WSE_UnfilteredUrlsVIEWCREATE VIEW "View_WSE_UnfilteredUrls" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_UnfilteredUrls"."CategoryID", "WSE_UnfilteredUrls"."SimpleValue", "WSE_UnfilteredUrls"."RegExValue" FROM ((("WSE_UnfilteredUrls" JOIN "Versions" ON (("WSE_UnfilteredUrls"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (72)::smallint) AND ("Versions"."EndViewID" = 2147483647)); ,DROP VIEW public."View_WSE_UnfilteredUrls"; publicpostgresfalse17505W125925134WSE_WebFilteringTABLECREATE TABLE "WSE_WebFiltering" ( "VersionID" integer NOT NULL, "RootRoleID" integer NOT NULL, "SysAlertsID" integer NOT NULL, "SettingsID" integer NOT NULL ); &DROP TABLE public."WSE_WebFiltering"; publicpostgresfalse5X125925136View_WSE_WebFilteringVIEWCREATE VIEW "View_WSE_WebFiltering" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_WebFiltering"."RootRoleID", "WSE_WebFiltering"."SysAlertsID", "WSE_WebFiltering"."SettingsID" FROM ((("WSE_WebFiltering" JOIN "Versions" ON (("WSE_WebFiltering"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (51)::smallint) AND ("Versions"."EndViewID" = 2147483647)); *DROP VIEW public."View_WSE_WebFiltering"; publicpostgresfalse17515Y125925140 WSE_YesListsTABLECREATE TABLE "WSE_YesLists" ( "VersionID" integer NOT NULL, "Name" text NOT NULL, "Description" text NOT NULL, "SimpleValue" text NOT NULL, "RegExValue" text NOT NULL ); "DROP TABLE public."WSE_YesLists"; publicpostgresfalse5Z125925145View_WSE_YesListsVIEWCREATE VIEW "View_WSE_YesLists" AS SELECT "VersionedObjects"."ID" AS "ObjectID", "Versions"."ID", "GetChangelistDescription"("CheckoutsPending"."ChangelistID") AS "CheckedOutBy", ("CheckoutsPending"."DeleteCheckPoint" <> 2147483647) AS "ForDelete", "VersionedObjects"."Path" AS "ObjectPath", "WSE_YesLists"."Name", "WSE_YesLists"."Description", "WSE_YesLists"."SimpleValue", "WSE_YesLists"."RegExValue" FROM ((("WSE_YesLists" JOIN "Versions" ON (("WSE_YesLists"."VersionID" = "Versions"."ID"))) JOIN "VersionedObjects" ON (("Versions"."ObjectID" = "VersionedObjects"."ID"))) LEFT JOIN "CheckoutsPending" ON (("CheckoutsPending"."ObjectID" = "VersionedObjects"."ID"))) WHERE (("VersionedObjects"."TypeID" = (62)::smallint) AND ("Versions"."EndViewID" = 2147483647)); &DROP VIEW public."View_WSE_YesLists"; publicpostgresfalse17525[125925149 Views_ID_seqSEQUENCE_CREATE SEQUENCE "Views_ID_seq" INCREMENT BY 1 NO MAXVALUE NO MINVALUE CACHE 1; %DROP SEQUENCE public."Views_ID_seq"; publicpostgresfalse15225I 00 Views_ID_seqSEQUENCE OWNED BY5ALTER SEQUENCE "Views_ID_seq" OWNED BY "Views"."ID"; publicpostgresfalse1627J 00 Views_ID_seq SEQUENCE SET8SELECT pg_catalog.setval('"Views_ID_seq"', 1017, true); publicpostgresfalse1627\125925151__DatabaseVersion__TABLEuCREATE TABLE "__DatabaseVersion__" ( "Name" text NOT NULL, "MinCompatible" integer, "Current" integer ); )DROP TABLE public."__DatabaseVersion__"; publicpostgresfalse5260425156ObjectIDDEFAULToALTER TABLE "AddsPending" ALTER COLUMN "ObjectID" SET DEFAULT nextval('"AddsPending_ObjectID_seq"'::regclass); GALTER TABLE public."AddsPending" ALTER COLUMN "ObjectID" DROP DEFAULT; publicpostgresfalse15281527260425157IDDEFAULT]ALTER TABLE "AuditLog" ALTER COLUMN "ID" SET DEFAULT nextval('"AuditLog_ID_seq"'::regclass); >ALTER TABLE public."AuditLog" ALTER COLUMN "ID" DROP DEFAULT; publicpostgresfalse15291525260425158IDDEFAULTcALTER TABLE "Changelists" ALTER COLUMN "ID" SET DEFAULT nextval('"Changelists_ID_seq"'::regclass); AALTER TABLE public."Changelists" ALTER COLUMN "ID" DROP DEFAULT; publicpostgresfalse15301520260425159IDDEFAULT]ALTER TABLE "Versions" ALTER COLUMN "ID" SET DEFAULT nextval('"Versions_ID_seq"'::regclass); >ALTER TABLE public."Versions" ALTER COLUMN "ID" DROP DEFAULT; publicpostgresfalse15511550260425160IDDEFAULTWALTER TABLE "Views" ALTER COLUMN "ID" SET DEFAULT nextval('"Views_ID_seq"'::regclass); ;ALTER TABLE public."Views" ALTER COLUMN "ID" DROP DEFAULT; publicpostgresfalse16271522024626 AccessControl TABLE DATA^COPY "AccessControl" ("ObjectID", "UserRoleID", "SelfRights", "DescendantRights") FROM stdin; publicpostgresfalse1523024681 AddsPending TABLE DATARCOPY "AddsPending" ("ObjectID", "ChangelistID", "Path", "CheckPoint") FROM stdin; publicpostgresfalse1527024636AuditLog TABLE DATAHCOPY "AuditLog" ("ID", "Date", "User", "Action", "Display") FROM stdin; publicpostgresfalse1525024594 Changelists TABLE DATAgCOPY "Changelists" ("ID", "ViewID", "LastCheckPoint", "ClientDescription", "LastAccessed") FROM stdin; publicpostgresfalse1520024692CheckoutsPending TABLE DATAgCOPY "CheckoutsPending" ("ObjectID", "ChangelistID", "EditCheckPoint", "DeleteCheckPoint") FROM stdin; publicpostgresfalse1531024694 ExternalID TABLE DATAJCOPY "ExternalID" ("TypeID", "CanAlloc", "ObjectID", "Value") FROM stdin; publicpostgresfalse1532 024696ExternalIDPending TABLE DATAQCOPY "ExternalIDPending" ("TypeID", "CanAlloc", "ObjectID", "Value") FROM stdin; publicpostgresfalse1533 024698ExternalIDPool TABLE DATA^COPY "ExternalIDPool" ("TypeID", "CanAlloc", "BeginRange", "EndRange", "FreedAt") FROM stdin; publicpostgresfalse1534 024700 GlobalContext TABLE DATASCOPY "GlobalContext" ("VersionID", "SecurityAccountsID", "Extensions") FROM stdin; publicpostgresfalse1535 024705Globals TABLE DATACOPY "Globals" ("Name", "ShortValue", "IntValue", "BoolValue", "StringValue", "sensPasswordValue", "BlobValue", "IntArrayValue", "TimeValue") FROM stdin; publicpostgresfalse15367 026755HWS_AuthenticationGateway TABLE DATAaCOPY "HWS_AuthenticationGateway" ("VersionID", "Name", "Description", "MetadataUrl") FROM stdin; publicpostgresfalse1638 024710HWS_HostedConfig TABLE DATACOPY "HWS_HostedConfig" ("VersionID", "HostedAccount", "PacFileURL", "QueryURL", "MonitorURL", "RoamingURL", "UserPasswordURL", "sensPermToken", "GPOScriptKey", "Endpoints", "AuthenticationServices", "RootCertificate", "TricipherPacFileURL") FROM stdin; publicpostgresfalse1537 024715HWS_HostedWebService TABLE DATADCOPY "HWS_HostedWebService" ("VersionID", "SettingsID") FROM stdin; publicpostgresfalse1538 024717HWS_HybridConnection TABLE DATACOPY "HWS_HybridConnection" ("VersionID", "SelectorType", "Name", "Description", "TimeZone", "ConnectionTypeValue", "First", "Last", "Port", "ConnectionType", "ProxyMode", "SSLPort", "FTPPort", "AssociatedProxies") FROM stdin; publicpostgresfalse1539 024722HWS_HybridDomain TABLE DATA^COPY "HWS_HybridDomain" ("VersionID", "Name", "Description", "IncludeSubdomains") FROM stdin; publicpostgresfalse1540 024727 HWS_Setting TABLE DATA>COPY "HWS_Setting" ("VersionID", "Name", "Value") FROM stdin; publicpostgresfalse1541 024732 HWS_Settings TABLE DATACOPY "HWS_Settings" ("VersionID", "HostedConfigID", "WelcomePageType", "ContactEmail", "Country", "Language", "Timezone", "LogPollingInterval", "FailOpen", "ForceUserIdent", "UseNTLM", "HostedLogging", "ProvisionRoamingUserPasswords", "HostnameVerifyLocation", "sensTempToken", "EndpointAgentEnabled", "ManualDeploymentEnabled", "DeployToAllUsers", "EndpointInstallReminder", "EndpointAutoUpdateEnabled", "SslTerminationEnabled", "AuthenticationEnabled") FROM stdin; publicpostgresfalse1542 024737 LocalUsers TABLE DATA{COPY "LocalUsers" ("VersionID", "Name", "pwdPassword", "IsSpecial", "CanAudit", "UserRoleID", "Flags", "UUID") FROM stdin; publicpostgresfalse1543 024743Locks TABLE DATA"COPY "Locks" ("Name") FROM stdin; publicpostgresfalse1544024602 References TABLE DATA6COPY "References" ("Src", "Dst", "Count") FROM stdin; publicpostgresfalse1521 024748ReferencesPending TABLE DATA[COPY "ReferencesPending" ("ChangelistID", "CheckPoint", "Src", "Dst", "Count") FROM stdin; publicpostgresfalse1545 024750 RemoteUsers TABLE DATATCOPY "RemoteUsers" ("VersionID", "Name", "UserRoleID", "Flags", "UUID") FROM stdin; publicpostgresfalse1546 024756SecurityAccounts TABLE DATA2COPY "SecurityAccounts" ("VersionID") FROM stdin; publicpostgresfalse1547 024758Tokens TABLE DATAbCOPY "Tokens" ("UserName", "UserRoleID", "Created", "Data", "CanAudit", "Privileges") FROM stdin; publicpostgresfalse1548024655 TypeToTable TABLE DATAPCOPY "TypeToTable" ("TypeID", "TableName", "IsFolder", "AuditName") FROM stdin; publicpostgresfalse1526 024763 UserRoles TABLE DATAPCOPY "UserRoles" ("VersionID", "Name", "Description", "Privileges") FROM stdin; publicpostgresfalse1549024629VersionedObjects TABLE DATAWCOPY "VersionedObjects" ("ID", "TypeID", "Path", "DeletedBy", "AuditName") FROM stdin; publicpostgresfalse1524 024768Versions TABLE DATAKCOPY "Versions" ("ID", "BeginViewID", "EndViewID", "ObjectID") FROM stdin; publicpostgresfalse1550024614Views TABLE DATA8COPY "Views" ("ID", "Time", "LastAccessed") FROM stdin; publicpostgresfalse1522 024813WCG_ContentGateway TABLE DATABCOPY "WCG_ContentGateway" ("VersionID", "SettingsID") FROM stdin; publicpostgresfalse1559 024818WCG_ExceptionUrls TABLE DATAnCOPY "WCG_ExceptionUrls" ("VersionID", "Url", "RealTimeCat", "Threat", "ContentStripping", "Apd") FROM stdin; publicpostgresfalse1561 024828 WCG_Setting TABLE DATA>COPY "WCG_Setting" ("VersionID", "Name", "Value") FROM stdin; publicpostgresfalse1563 024836 WCG_Settings TABLE DATAVCOPY "WCG_Settings" ("VersionID", "ContentCatOpt", "ContentScanOpt", "AppScanOpt", "FileSizeLimit", "ExeFileNames", "ContentTypes", "ExeFilesEnable", "AEScanOpt", "FileTypes", "SSLBypassHosts", "BandwidthReportEnable", "OutboundScanEnable", "ApdEnable", "LinkAnalysisEnable", "ExceptionClients", "FtpScanEnable", "ScanTimeLimit") FROM stdin; publicpostgresfalse1565 024854WSE_Categories TABLE DATAaCOPY "WSE_Categories" ("VersionID", "ParentID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1566 024863WSE_CategoryDispositions TABLE DATACOPY "WSE_CategoryDispositions" ("VersionID", "Name", "Description", "Action", "BlockKeywords", "BlockedFileTypes", "BandwidthBlockType", "BandwidthLimit", "BandwidthUseDefaultBandwidth") FROM stdin; publicpostgresfalse1568 024872WSE_CategoryNotifications TABLE DATACOPY "WSE_CategoryNotifications" ("VersionID", "CategoryID", "Log", "AlertBlockedMin", "AlertBlockedDest", "AlertPermittedMin", "AlertPermittedDest", "Name", "SSLBypass") FROM stdin; publicpostgresfalse1570 024887WSE_CategorySetTemplates TABLE DATAMCOPY "WSE_CategorySetTemplates" ("VersionID", "Name", "Entries") FROM stdin; publicpostgresfalse1572 024895WSE_CategorySets TABLE DATAmCOPY "WSE_CategorySets" ("VersionID", "Name", "Description", "Entries", "DefaultDispID", "Mode") FROM stdin; publicpostgresfalse1574 024906WSE_ClientRules TABLE DATACOPY "WSE_ClientRules" ("VersionID", "PolicyID", "QuotaTime", "sensPassword", "UserAccountOverrideEnabled", "UserAccountOverrideTimeout") FROM stdin; publicpostgresfalse1576 024915WSE_DirectoryObjects TABLE DATACOPY "WSE_DirectoryObjects" ("VersionID", "Path", "Account", "ManagingRoleID", "ClientRuleID", "Name", "ReportingRoles") FROM stdin; publicpostgresfalse1577 024924WSE_FileExtensionSets TABLE DATA[COPY "WSE_FileExtensionSets" ("VersionID", "FileTypeID", "Extensions", "Name") FROM stdin; publicpostgresfalse1578 024932 WSE_FileTypes TABLE DATATCOPY "WSE_FileTypes" ("VersionID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1580 024941 WSE_Keywords TABLE DATAYCOPY "WSE_Keywords" ("VersionID", "CategoryID", "SimpleValue", "RegExValue") FROM stdin; publicpostgresfalse1582 024949WSE_LoggingDispositions TABLE DATAjCOPY "WSE_LoggingDispositions" ("VersionID", "Name", "Description", "Blocking", "ExternalID") FROM stdin; publicpostgresfalse1584! 024958 WSE_Networks TABLE DATA{COPY "WSE_Networks" ("VersionID", "First", "Last", "ManagingRoleID", "ClientRuleID", "Name", "ReportingRoles") FROM stdin; publicpostgresfalse1586" 024967 WSE_Policies TABLE DATARCOPY "WSE_Policies" ("VersionID", "Name", "Description", "IsDefault") FROM stdin; publicpostgresfalse1587# 024977WSE_PolicyPeriods TABLE DATACOPY "WSE_PolicyPeriods" ("VersionID", "TargetID", "TargetTypeID", "TrafficID", "TrafficTypeID", "StartTime", "Length", "Days") FROM stdin; publicpostgresfalse1589$ 024983WSE_ProtocolCriteria TABLE DATABCOPY "WSE_ProtocolCriteria" ("VersionID", "sensData") FROM stdin; publicpostgresfalse1591% 024991WSE_ProtocolDispositions TABLE DATACOPY "WSE_ProtocolDispositions" ("VersionID", "Name", "Description", "Action", "Log", "BandwidthBlockType", "BandwidthLimit", "BandwidthUseDefaultBandwidth") FROM stdin; publicpostgresfalse1593& 025000WSE_ProtocolGroups TABLE DATAYCOPY "WSE_ProtocolGroups" ("VersionID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1595' 025009WSE_ProtocolNotifications TABLE DATACOPY "WSE_ProtocolNotifications" ("VersionID", "ProtocolID", "AlertBlockedMin", "AlertBlockedDest", "AlertPermittedMin", "AlertPermittedDest", "Name") FROM stdin; publicpostgresfalse1597( 025022WSE_ProtocolSetTemplates TABLE DATAMCOPY "WSE_ProtocolSetTemplates" ("VersionID", "Name", "Entries") FROM stdin; publicpostgresfalse1599) 025030WSE_ProtocolSets TABLE DATAmCOPY "WSE_ProtocolSets" ("VersionID", "Name", "Description", "Entries", "DefaultDispID", "Mode") FROM stdin; publicpostgresfalse1601* 025041 WSE_Protocols TABLE DATA`COPY "WSE_Protocols" ("VersionID", "ParentID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1603+ 025050WSE_RecategorizedUrls TABLE DATAbCOPY "WSE_RecategorizedUrls" ("VersionID", "CategoryID", "SimpleValue", "RegExValue") FROM stdin; publicpostgresfalse1605, 025059WSE_RiskClasses TABLE DATAVCOPY "WSE_RiskClasses" ("VersionID", "Name", "Description", "ExternalID") FROM stdin; publicpostgresfalse1607- 025068 WSE_RoleLocks TABLE DATA/COPY "WSE_RoleLocks" ("VersionID") FROM stdin; publicpostgresfalse1609. 025073 WSE_Roles TABLE DATACOPY "WSE_Roles" ("VersionID", "Name", "Description", "IsRoot", "Precedence", "ReportingPermissions", "CatsToRCs", "CSTemplateID", "PSTemplateID", "RoleLockID") FROM stdin; publicpostgresfalse1611/ 025083 WSE_Setting TABLE DATA>COPY "WSE_Setting" ("VersionID", "Name", "Value") FROM stdin; publicpostgresfalse16130 025091 WSE_Settings TABLE DATA.COPY "WSE_Settings" ("VersionID") FROM stdin; publicpostgresfalse16151 025096 WSE_SysAlerts TABLE DATACOPY "WSE_SysAlerts" ("VersionID", "MaxPerEvent", "SMTPEnable", "SMTPServer", "SMTPFrom", "SMTPTo", "SMTPCc", "OnScreenEnable", "OnScreenRecepients", "SNMPEnable", "SNMPCommunity", "SNMPAddress", "SNMPPort") FROM stdin; publicpostgresfalse16172 025116 WSE_SysEvents TABLE DATAVCOPY "WSE_SysEvents" ("VersionID", "Name", "Description", "Destinations") FROM stdin; publicpostgresfalse16193 025125WSE_UnfilteredUrls TABLE DATA_COPY "WSE_UnfilteredUrls" ("VersionID", "CategoryID", "SimpleValue", "RegExValue") FROM stdin; publicpostgresfalse16214 025134WSE_WebFiltering TABLE DATA]COPY "WSE_WebFiltering" ("VersionID", "RootRoleID", "SysAlertsID", "SettingsID") FROM stdin; publicpostgresfalse16235 025140 WSE_YesLists TABLE DATAbCOPY "WSE_YesLists" ("VersionID", "Name", "Description", "SimpleValue", "RegExValue") FROM stdin; publicpostgresfalse16256 025151__DatabaseVersion__ TABLE DATALCOPY "__DatabaseVersion__" ("Name", "MinCompatible", "Current") FROM stdin; publicpostgresfalse16286260626007AccessControl_pkey CONSTRAINTqALTER TABLE ONLY "AccessControl" ADD CONSTRAINT "AccessControl_pkey" PRIMARY KEY ("ObjectID", "UserRoleID"); NALTER TABLE ONLY public."AccessControl" DROP CONSTRAINT "AccessControl_pkey"; publicpostgresfalse152315231523A260626009AddsPending_pkey CONSTRAINT_ALTER TABLE ONLY "AddsPending" ADD CONSTRAINT "AddsPending_pkey" PRIMARY KEY ("ObjectID"); JALTER TABLE ONLY public."AddsPending" DROP CONSTRAINT "AddsPending_pkey"; publicpostgresfalse15271527=260626011 AuditLog_pkey CONSTRAINTSALTER TABLE ONLY "AuditLog" ADD CONSTRAINT "AuditLog_pkey" PRIMARY KEY ("ID"); DALTER TABLE ONLY public."AuditLog" DROP CONSTRAINT "AuditLog_pkey"; publicpostgresfalse15251525.260626013Changelists_pkey CONSTRAINTYALTER TABLE ONLY "Changelists" ADD CONSTRAINT "Changelists_pkey" PRIMARY KEY ("ID"); JALTER TABLE ONLY public."Changelists" DROP CONSTRAINT "Changelists_pkey"; publicpostgresfalse15201520D260626015CheckoutsPending_pkey CONSTRAINTiALTER TABLE ONLY "CheckoutsPending" ADD CONSTRAINT "CheckoutsPending_pkey" PRIMARY KEY ("ObjectID"); TALTER TABLE ONLY public."CheckoutsPending" DROP CONSTRAINT "CheckoutsPending_pkey"; publicpostgresfalse15311531I260626017ExternalIDPending_pkey CONSTRAINTuALTER TABLE ONLY "ExternalIDPending" ADD CONSTRAINT "ExternalIDPending_pkey" PRIMARY KEY ("ObjectID", "TypeID"); VALTER TABLE ONLY public."ExternalIDPending" DROP CONSTRAINT "ExternalIDPending_pkey"; publicpostgresfalse153315331533K260626019ExternalIDPool_pkey CONSTRAINTALTER TABLE ONLY "ExternalIDPool" ADD CONSTRAINT "ExternalIDPool_pkey" PRIMARY KEY ("TypeID", "CanAlloc", "BeginRange", "FreedAt"); PALTER TABLE ONLY public."ExternalIDPool" DROP CONSTRAINT "ExternalIDPool_pkey"; publicpostgresfalse15341534153415341534G260626021ExternalID_pkey CONSTRAINTgALTER TABLE ONLY "ExternalID" ADD CONSTRAINT "ExternalID_pkey" PRIMARY KEY ("ObjectID", "TypeID"); HALTER TABLE ONLY public."ExternalID" DROP CONSTRAINT "ExternalID_pkey"; publicpostgresfalse153215321532O260626023 Globals_pkey CONSTRAINTSALTER TABLE ONLY "Globals" ADD CONSTRAINT "Globals_pkey" PRIMARY KEY ("Name"); BALTER TABLE ONLY public."Globals" DROP CONSTRAINT "Globals_pkey"; publicpostgresfalse15361536_260626025 Locks_pkey CONSTRAINTOALTER TABLE ONLY "Locks" ADD CONSTRAINT "Locks_pkey" PRIMARY KEY ("Name"); >ALTER TABLE ONLY public."Locks" DROP CONSTRAINT "Locks_pkey"; publicpostgresfalse15441544M260626027PK_GlobalContext CONSTRAINTbALTER TABLE ONLY "GlobalContext" ADD CONSTRAINT "PK_GlobalContext" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."GlobalContext" DROP CONSTRAINT "PK_GlobalContext"; publicpostgresfalse15351535260626765PK_HWS_AuthenticationGateway CONSTRAINTzALTER TABLE ONLY "HWS_AuthenticationGateway" ADD CONSTRAINT "PK_HWS_AuthenticationGateway" PRIMARY KEY ("VersionID"); dALTER TABLE ONLY public."HWS_AuthenticationGateway" DROP CONSTRAINT "PK_HWS_AuthenticationGateway"; publicpostgresfalse16381638Q260626029PK_HWS_HostedConfig CONSTRAINThALTER TABLE ONLY "HWS_HostedConfig" ADD CONSTRAINT "PK_HWS_HostedConfig" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."HWS_HostedConfig" DROP CONSTRAINT "PK_HWS_HostedConfig"; publicpostgresfalse15371537S260626031PK_HWS_HostedWebService CONSTRAINTpALTER TABLE ONLY "HWS_HostedWebService" ADD CONSTRAINT "PK_HWS_HostedWebService" PRIMARY KEY ("VersionID"); ZALTER TABLE ONLY public."HWS_HostedWebService" DROP CONSTRAINT "PK_HWS_HostedWebService"; publicpostgresfalse15381538U260626033PK_HWS_HybridConnection CONSTRAINTpALTER TABLE ONLY "HWS_HybridConnection" ADD CONSTRAINT "PK_HWS_HybridConnection" PRIMARY KEY ("VersionID"); ZALTER TABLE ONLY public."HWS_HybridConnection" DROP CONSTRAINT "PK_HWS_HybridConnection"; publicpostgresfalse15391539W260626035PK_HWS_HybridDomain CONSTRAINThALTER TABLE ONLY "HWS_HybridDomain" ADD CONSTRAINT "PK_HWS_HybridDomain" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."HWS_HybridDomain" DROP CONSTRAINT "PK_HWS_HybridDomain"; publicpostgresfalse15401540Y260626037PK_HWS_Setting CONSTRAINT^ALTER TABLE ONLY "HWS_Setting" ADD CONSTRAINT "PK_HWS_Setting" PRIMARY KEY ("VersionID"); HALTER TABLE ONLY public."HWS_Setting" DROP CONSTRAINT "PK_HWS_Setting"; publicpostgresfalse15411541[260626039PK_HWS_Settings CONSTRAINT`ALTER TABLE ONLY "HWS_Settings" ADD CONSTRAINT "PK_HWS_Settings" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."HWS_Settings" DROP CONSTRAINT "PK_HWS_Settings"; publicpostgresfalse15421542]260626041 PK_LocalUsers CONSTRAINT\ALTER TABLE ONLY "LocalUsers" ADD CONSTRAINT "PK_LocalUsers" PRIMARY KEY ("VersionID"); FALTER TABLE ONLY public."LocalUsers" DROP CONSTRAINT "PK_LocalUsers"; publicpostgresfalse15431543c260626043PK_RemoteUsers CONSTRAINT^ALTER TABLE ONLY "RemoteUsers" ADD CONSTRAINT "PK_RemoteUsers" PRIMARY KEY ("VersionID"); HALTER TABLE ONLY public."RemoteUsers" DROP CONSTRAINT "PK_RemoteUsers"; publicpostgresfalse15461546e260626045PK_SecurityAccounts CONSTRAINThALTER TABLE ONLY "SecurityAccounts" ADD CONSTRAINT "PK_SecurityAccounts" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."SecurityAccounts" DROP CONSTRAINT "PK_SecurityAccounts"; publicpostgresfalse15471547j260626047 PK_UserRoles CONSTRAINTZALTER TABLE ONLY "UserRoles" ADD CONSTRAINT "PK_UserRoles" PRIMARY KEY ("VersionID"); DALTER TABLE ONLY public."UserRoles" DROP CONSTRAINT "PK_UserRoles"; publicpostgresfalse15491549o260626049PK_WCG_ContentGateway CONSTRAINTlALTER TABLE ONLY "WCG_ContentGateway" ADD CONSTRAINT "PK_WCG_ContentGateway" PRIMARY KEY ("VersionID"); VALTER TABLE ONLY public."WCG_ContentGateway" DROP CONSTRAINT "PK_WCG_ContentGateway"; publicpostgresfalse15591559q260626051PK_WCG_ExceptionUrls CONSTRAINTjALTER TABLE ONLY "WCG_ExceptionUrls" ADD CONSTRAINT "PK_WCG_ExceptionUrls" PRIMARY KEY ("VersionID"); TALTER TABLE ONLY public."WCG_ExceptionUrls" DROP CONSTRAINT "PK_WCG_ExceptionUrls"; publicpostgresfalse15611561s260626053PK_WCG_Setting CONSTRAINT^ALTER TABLE ONLY "WCG_Setting" ADD CONSTRAINT "PK_WCG_Setting" PRIMARY KEY ("VersionID"); HALTER TABLE ONLY public."WCG_Setting" DROP CONSTRAINT "PK_WCG_Setting"; publicpostgresfalse15631563u260626055PK_WCG_Settings CONSTRAINT`ALTER TABLE ONLY "WCG_Settings" ADD CONSTRAINT "PK_WCG_Settings" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WCG_Settings" DROP CONSTRAINT "PK_WCG_Settings"; publicpostgresfalse15651565w260626057PK_WSE_Categories CONSTRAINTdALTER TABLE ONLY "WSE_Categories" ADD CONSTRAINT "PK_WSE_Categories" PRIMARY KEY ("VersionID"); NALTER TABLE ONLY public."WSE_Categories" DROP CONSTRAINT "PK_WSE_Categories"; publicpostgresfalse15661566y260626059PK_WSE_CategoryDispositions CONSTRAINTxALTER TABLE ONLY "WSE_CategoryDispositions" ADD CONSTRAINT "PK_WSE_CategoryDispositions" PRIMARY KEY ("VersionID"); bALTER TABLE ONLY public."WSE_CategoryDispositions" DROP CONSTRAINT "PK_WSE_CategoryDispositions"; publicpostgresfalse15681568{260626061PK_WSE_CategoryNotifications CONSTRAINTzALTER TABLE ONLY "WSE_CategoryNotifications" ADD CONSTRAINT "PK_WSE_CategoryNotifications" PRIMARY KEY ("VersionID"); dALTER TABLE ONLY public."WSE_CategoryNotifications" DROP CONSTRAINT "PK_WSE_CategoryNotifications"; publicpostgresfalse15701570}260626063PK_WSE_CategorySetTemplates CONSTRAINTxALTER TABLE ONLY "WSE_CategorySetTemplates" ADD CONSTRAINT "PK_WSE_CategorySetTemplates" PRIMARY KEY ("VersionID"); bALTER TABLE ONLY public."WSE_CategorySetTemplates" DROP CONSTRAINT "PK_WSE_CategorySetTemplates"; publicpostgresfalse15721572260626065PK_WSE_CategorySets CONSTRAINThALTER TABLE ONLY "WSE_CategorySets" ADD CONSTRAINT "PK_WSE_CategorySets" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."WSE_CategorySets" DROP CONSTRAINT "PK_WSE_CategorySets"; publicpostgresfalse15741574260626067PK_WSE_ClientRules CONSTRAINTfALTER TABLE ONLY "WSE_ClientRules" ADD CONSTRAINT "PK_WSE_ClientRules" PRIMARY KEY ("VersionID"); PALTER TABLE ONLY public."WSE_ClientRules" DROP CONSTRAINT "PK_WSE_ClientRules"; publicpostgresfalse15761576260626069PK_WSE_DirectoryObjects CONSTRAINTpALTER TABLE ONLY "WSE_DirectoryObjects" ADD CONSTRAINT "PK_WSE_DirectoryObjects" PRIMARY KEY ("VersionID"); ZALTER TABLE ONLY public."WSE_DirectoryObjects" DROP CONSTRAINT "PK_WSE_DirectoryObjects"; publicpostgresfalse15771577260626071PK_WSE_FileExtensionSets CONSTRAINTrALTER TABLE ONLY "WSE_FileExtensionSets" ADD CONSTRAINT "PK_WSE_FileExtensionSets" PRIMARY KEY ("VersionID"); \ALTER TABLE ONLY public."WSE_FileExtensionSets" DROP CONSTRAINT "PK_WSE_FileExtensionSets"; publicpostgresfalse15781578260626073PK_WSE_FileTypes CONSTRAINTbALTER TABLE ONLY "WSE_FileTypes" ADD CONSTRAINT "PK_WSE_FileTypes" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_FileTypes" DROP CONSTRAINT "PK_WSE_FileTypes"; publicpostgresfalse15801580260626075PK_WSE_Keywords CONSTRAINT`ALTER TABLE ONLY "WSE_Keywords" ADD CONSTRAINT "PK_WSE_Keywords" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_Keywords" DROP CONSTRAINT "PK_WSE_Keywords"; publicpostgresfalse15821582260626077PK_WSE_LoggingDispositions CONSTRAINTvALTER TABLE ONLY "WSE_LoggingDispositions" ADD CONSTRAINT "PK_WSE_LoggingDispositions" PRIMARY KEY ("VersionID"); `ALTER TABLE ONLY public."WSE_LoggingDispositions" DROP CONSTRAINT "PK_WSE_LoggingDispositions"; publicpostgresfalse15841584260626079PK_WSE_Networks CONSTRAINT`ALTER TABLE ONLY "WSE_Networks" ADD CONSTRAINT "PK_WSE_Networks" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_Networks" DROP CONSTRAINT "PK_WSE_Networks"; publicpostgresfalse15861586260626081PK_WSE_Policies CONSTRAINT`ALTER TABLE ONLY "WSE_Policies" ADD CONSTRAINT "PK_WSE_Policies" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_Policies" DROP CONSTRAINT "PK_WSE_Policies"; publicpostgresfalse15871587260626083PK_WSE_PolicyPeriods CONSTRAINTjALTER TABLE ONLY "WSE_PolicyPeriods" ADD CONSTRAINT "PK_WSE_PolicyPeriods" PRIMARY KEY ("VersionID"); TALTER TABLE ONLY public."WSE_PolicyPeriods" DROP CONSTRAINT "PK_WSE_PolicyPeriods"; publicpostgresfalse15891589260626085PK_WSE_ProtocolCriteria CONSTRAINTpALTER TABLE ONLY "WSE_ProtocolCriteria" ADD CONSTRAINT "PK_WSE_ProtocolCriteria" PRIMARY KEY ("VersionID"); ZALTER TABLE ONLY public."WSE_ProtocolCriteria" DROP CONSTRAINT "PK_WSE_ProtocolCriteria"; publicpostgresfalse15911591260626087PK_WSE_ProtocolDispositions CONSTRAINTxALTER TABLE ONLY "WSE_ProtocolDispositions" ADD CONSTRAINT "PK_WSE_ProtocolDispositions" PRIMARY KEY ("VersionID"); bALTER TABLE ONLY public."WSE_ProtocolDispositions" DROP CONSTRAINT "PK_WSE_ProtocolDispositions"; publicpostgresfalse15931593260626089PK_WSE_ProtocolGroups CONSTRAINTlALTER TABLE ONLY "WSE_ProtocolGroups" ADD CONSTRAINT "PK_WSE_ProtocolGroups" PRIMARY KEY ("VersionID"); VALTER TABLE ONLY public."WSE_ProtocolGroups" DROP CONSTRAINT "PK_WSE_ProtocolGroups"; publicpostgresfalse15951595260626091PK_WSE_ProtocolNotifications CONSTRAINTzALTER TABLE ONLY "WSE_ProtocolNotifications" ADD CONSTRAINT "PK_WSE_ProtocolNotifications" PRIMARY KEY ("VersionID"); dALTER TABLE ONLY public."WSE_ProtocolNotifications" DROP CONSTRAINT "PK_WSE_ProtocolNotifications"; publicpostgresfalse15971597260626093PK_WSE_ProtocolSetTemplates CONSTRAINTxALTER TABLE ONLY "WSE_ProtocolSetTemplates" ADD CONSTRAINT "PK_WSE_ProtocolSetTemplates" PRIMARY KEY ("VersionID"); bALTER TABLE ONLY public."WSE_ProtocolSetTemplates" DROP CONSTRAINT "PK_WSE_ProtocolSetTemplates"; publicpostgresfalse15991599260626095PK_WSE_ProtocolSets CONSTRAINThALTER TABLE ONLY "WSE_ProtocolSets" ADD CONSTRAINT "PK_WSE_ProtocolSets" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."WSE_ProtocolSets" DROP CONSTRAINT "PK_WSE_ProtocolSets"; publicpostgresfalse16011601260626097PK_WSE_Protocols CONSTRAINTbALTER TABLE ONLY "WSE_Protocols" ADD CONSTRAINT "PK_WSE_Protocols" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_Protocols" DROP CONSTRAINT "PK_WSE_Protocols"; publicpostgresfalse16031603260626099PK_WSE_RecategorizedUrls CONSTRAINTrALTER TABLE ONLY "WSE_RecategorizedUrls" ADD CONSTRAINT "PK_WSE_RecategorizedUrls" PRIMARY KEY ("VersionID"); \ALTER TABLE ONLY public."WSE_RecategorizedUrls" DROP CONSTRAINT "PK_WSE_RecategorizedUrls"; publicpostgresfalse16051605260626101PK_WSE_RiskClasses CONSTRAINTfALTER TABLE ONLY "WSE_RiskClasses" ADD CONSTRAINT "PK_WSE_RiskClasses" PRIMARY KEY ("VersionID"); PALTER TABLE ONLY public."WSE_RiskClasses" DROP CONSTRAINT "PK_WSE_RiskClasses"; publicpostgresfalse16071607260626103PK_WSE_RoleLocks CONSTRAINTbALTER TABLE ONLY "WSE_RoleLocks" ADD CONSTRAINT "PK_WSE_RoleLocks" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_RoleLocks" DROP CONSTRAINT "PK_WSE_RoleLocks"; publicpostgresfalse16091609260626105 PK_WSE_Roles CONSTRAINTZALTER TABLE ONLY "WSE_Roles" ADD CONSTRAINT "PK_WSE_Roles" PRIMARY KEY ("VersionID"); DALTER TABLE ONLY public."WSE_Roles" DROP CONSTRAINT "PK_WSE_Roles"; publicpostgresfalse16111611260626107PK_WSE_Setting CONSTRAINT^ALTER TABLE ONLY "WSE_Setting" ADD CONSTRAINT "PK_WSE_Setting" PRIMARY KEY ("VersionID"); HALTER TABLE ONLY public."WSE_Setting" DROP CONSTRAINT "PK_WSE_Setting"; publicpostgresfalse16131613260626109PK_WSE_Settings CONSTRAINT`ALTER TABLE ONLY "WSE_Settings" ADD CONSTRAINT "PK_WSE_Settings" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_Settings" DROP CONSTRAINT "PK_WSE_Settings"; publicpostgresfalse16151615260626111PK_WSE_SysAlerts CONSTRAINTbALTER TABLE ONLY "WSE_SysAlerts" ADD CONSTRAINT "PK_WSE_SysAlerts" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_SysAlerts" DROP CONSTRAINT "PK_WSE_SysAlerts"; publicpostgresfalse16171617260626113PK_WSE_SysEvents CONSTRAINTbALTER TABLE ONLY "WSE_SysEvents" ADD CONSTRAINT "PK_WSE_SysEvents" PRIMARY KEY ("VersionID"); LALTER TABLE ONLY public."WSE_SysEvents" DROP CONSTRAINT "PK_WSE_SysEvents"; publicpostgresfalse16191619260626115PK_WSE_UnfilteredUrls CONSTRAINTlALTER TABLE ONLY "WSE_UnfilteredUrls" ADD CONSTRAINT "PK_WSE_UnfilteredUrls" PRIMARY KEY ("VersionID"); VALTER TABLE ONLY public."WSE_UnfilteredUrls" DROP CONSTRAINT "PK_WSE_UnfilteredUrls"; publicpostgresfalse16211621260626117PK_WSE_WebFiltering CONSTRAINThALTER TABLE ONLY "WSE_WebFiltering" ADD CONSTRAINT "PK_WSE_WebFiltering" PRIMARY KEY ("VersionID"); RALTER TABLE ONLY public."WSE_WebFiltering" DROP CONSTRAINT "PK_WSE_WebFiltering"; publicpostgresfalse16231623260626119PK_WSE_YesLists CONSTRAINT`ALTER TABLE ONLY "WSE_YesLists" ADD CONSTRAINT "PK_WSE_YesLists" PRIMARY KEY ("VersionID"); JALTER TABLE ONLY public."WSE_YesLists" DROP CONSTRAINT "PK_WSE_YesLists"; publicpostgresfalse16251625a260626121ReferencesPending_pkey CONSTRAINTALTER TABLE ONLY "ReferencesPending" ADD CONSTRAINT "ReferencesPending_pkey" PRIMARY KEY ("Src", "Dst", "ChangelistID", "CheckPoint"); VALTER TABLE ONLY public."ReferencesPending" DROP CONSTRAINT "ReferencesPending_pkey"; publicpostgresfalse154515451545154515451260626123References_pkey CONSTRAINT_ALTER TABLE ONLY "References" ADD CONSTRAINT "References_pkey" PRIMARY KEY ("Src", "Dst"); HALTER TABLE ONLY public."References" DROP CONSTRAINT "References_pkey"; publicpostgresfalse152115211521h260626125 Tokens_pkey CONSTRAINTQALTER TABLE ONLY "Tokens" ADD CONSTRAINT "Tokens_pkey" PRIMARY KEY ("Data"); @ALTER TABLE ONLY public."Tokens" DROP CONSTRAINT "Tokens_pkey"; publicpostgresfalse15481548?260626127TypeToTable_pkey CONSTRAINT]ALTER TABLE ONLY "TypeToTable" ADD CONSTRAINT "TypeToTable_pkey" PRIMARY KEY ("TypeID"); JALTER TABLE ONLY public."TypeToTable" DROP CONSTRAINT "TypeToTable_pkey"; publicpostgresfalse15261526;260626129VersionedObjects_pkey CONSTRAINTcALTER TABLE ONLY "VersionedObjects" ADD CONSTRAINT "VersionedObjects_pkey" PRIMARY KEY ("ID"); TALTER TABLE ONLY public."VersionedObjects" DROP CONSTRAINT "VersionedObjects_pkey"; publicpostgresfalse15241524m260626131 Versions_pkey CONSTRAINTSALTER TABLE ONLY "Versions" ADD CONSTRAINT "Versions_pkey" PRIMARY KEY ("ID"); DALTER TABLE ONLY public."Versions" DROP CONSTRAINT "Versions_pkey"; publicpostgresfalse155015504260626133 Views_pkey CONSTRAINTMALTER TABLE ONLY "Views" ADD CONSTRAINT "Views_pkey" PRIMARY KEY ("ID"); >ALTER TABLE ONLY public."Views" DROP CONSTRAINT "Views_pkey"; publicpostgresfalse15221522260626135__DatabaseVersion___pkey CONSTRAINTkALTER TABLE ONLY "__DatabaseVersion__" ADD CONSTRAINT "__DatabaseVersion___pkey" PRIMARY KEY ("Name"); ZALTER TABLE ONLY public."__DatabaseVersion__" DROP CONSTRAINT "__DatabaseVersion___pkey"; publicpostgresfalse16281628B125926136IX_AddsPendingINDEXdCREATE INDEX "IX_AddsPending" ON "AddsPending" USING btree ("ChangelistID", last_in_array("Path")); $DROP INDEX public."IX_AddsPending"; publicpostgresfalse8015271527/125926137IX_ChangelistsINDEXMCREATE INDEX "IX_Changelists" ON "Changelists" USING btree ("LastAccessed"); $DROP INDEX public."IX_Changelists"; publicpostgresfalse1520E125926138IX_CheckoutsPendingINDEXkCREATE INDEX "IX_CheckoutsPending" ON "CheckoutsPending" USING btree ("ChangelistID", "DeleteCheckPoint"); )DROP INDEX public."IX_CheckoutsPending"; publicpostgresfalse15311531f125926139 IX_TokensINDEX>CREATE INDEX "IX_Tokens" ON "Tokens" USING btree ("Created"); DROP INDEX public."IX_Tokens"; publicpostgresfalse15487125926140IX_VersionedObjects_OwnerIDINDEXfCREATE INDEX "IX_VersionedObjects_OwnerID" ON "VersionedObjects" USING btree (last_in_array("Path")); 1DROP INDEX public."IX_VersionedObjects_OwnerID"; publicpostgresfalse8015248125926141IX_VersionedObjects_PathINDEXTCREATE INDEX "IX_VersionedObjects_Path" ON "VersionedObjects" USING btree ("Path"); .DROP INDEX public."IX_VersionedObjects_Path"; publicpostgresfalse15249125926142IX_VersionedObjects_TypeIDINDEXXCREATE INDEX "IX_VersionedObjects_TypeID" ON "VersionedObjects" USING btree ("TypeID"); 0DROP INDEX public."IX_VersionedObjects_TypeID"; publicpostgresfalse1524k125926143 IX_VersionsINDEX_CREATE INDEX "IX_Versions" ON "Versions" USING btree ("ObjectID", "BeginViewID", "EndViewID"); !DROP INDEX public."IX_Versions"; publicpostgresfalse1550155015502125926144IX_ViewsINDEX9CREATE INDEX "IX_Views" ON "Views" USING btree ("Time"); DROP INDEX public."IX_Views"; publicpostgresfalse1522261826462free_pending_ext_idRULECREATE RULE free_pending_ext_id AS ON DELETE TO "Changelists" DO SELECT "FreeExternalID"(to_free."TypeID", to_free."Value", to_free."CanAlloc") AS "FreeExternalID" FROM (SELECT eidp."TypeID", eidp."CanAlloc", eidp."Value", ap."ChangelistID" FROM ("ExternalIDPending" eidp JOIN "AddsPending" ap ON ((eidp."ObjectID" = ap."ObjectID")))) to_free WHERE (to_free."ChangelistID" = old."ID"); 7DROP RULE free_pending_ext_id ON public."Changelists"; publicpostgresfalse15201533153315331533152715271520461520260626146AccessControl_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "AccessControl" ADD CONSTRAINT "AccessControl_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "VersionedObjects"("ID") ON DELETE CASCADE; WALTER TABLE ONLY public."AccessControl" DROP CONSTRAINT "AccessControl_ObjectID_fkey"; publicpostgresfalse210615241523260626151AddsPending_ChangelistID_fkey FK CONSTRAINTALTER TABLE ONLY "AddsPending" ADD CONSTRAINT "AddsPending_ChangelistID_fkey" FOREIGN KEY ("ChangelistID") REFERENCES "Changelists"("ID") ON DELETE CASCADE; WALTER TABLE ONLY public."AddsPending" DROP CONSTRAINT "AddsPending_ChangelistID_fkey"; publicpostgresfalse209315201527260626156Changelists_ViewID_fkey FK CONSTRAINTALTER TABLE ONLY "Changelists" ADD CONSTRAINT "Changelists_ViewID_fkey" FOREIGN KEY ("ViewID") REFERENCES "Views"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."Changelists" DROP CONSTRAINT "Changelists_ViewID_fkey"; publicpostgresfalse209915221520260626161"CheckoutsPending_ChangelistID_fkey FK CONSTRAINTALTER TABLE ONLY "CheckoutsPending" ADD CONSTRAINT "CheckoutsPending_ChangelistID_fkey" FOREIGN KEY ("ChangelistID") REFERENCES "Changelists"("ID") ON DELETE CASCADE; aALTER TABLE ONLY public."CheckoutsPending" DROP CONSTRAINT "CheckoutsPending_ChangelistID_fkey"; publicpostgresfalse209315201531260626166CheckoutsPending_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "CheckoutsPending" ADD CONSTRAINT "CheckoutsPending_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "VersionedObjects"("ID") ON DELETE CASCADE; ]ALTER TABLE ONLY public."CheckoutsPending" DROP CONSTRAINT "CheckoutsPending_ObjectID_fkey"; publicpostgresfalse210615241531260626171ExternalIDPending_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalIDPending" ADD CONSTRAINT "ExternalIDPending_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "AddsPending"("ObjectID") ON DELETE CASCADE; _ALTER TABLE ONLY public."ExternalIDPending" DROP CONSTRAINT "ExternalIDPending_ObjectID_fkey"; publicpostgresfalse211215271533260626176ExternalIDPending_TypeID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalIDPending" ADD CONSTRAINT "ExternalIDPending_TypeID_fkey" FOREIGN KEY ("TypeID") REFERENCES "TypeToTable"("TypeID"); ]ALTER TABLE ONLY public."ExternalIDPending" DROP CONSTRAINT "ExternalIDPending_TypeID_fkey"; publicpostgresfalse211015261533260626181ExternalIDPool_TypeID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalIDPool" ADD CONSTRAINT "ExternalIDPool_TypeID_fkey" FOREIGN KEY ("TypeID") REFERENCES "TypeToTable"("TypeID"); WALTER TABLE ONLY public."ExternalIDPool" DROP CONSTRAINT "ExternalIDPool_TypeID_fkey"; publicpostgresfalse211015261534260626186ExternalID_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalID" ADD CONSTRAINT "ExternalID_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "VersionedObjects"("ID"); QALTER TABLE ONLY public."ExternalID" DROP CONSTRAINT "ExternalID_ObjectID_fkey"; publicpostgresfalse210615241532260626191ExternalID_TypeID_fkey FK CONSTRAINTALTER TABLE ONLY "ExternalID" ADD CONSTRAINT "ExternalID_TypeID_fkey" FOREIGN KEY ("TypeID") REFERENCES "TypeToTable"("TypeID"); OALTER TABLE ONLY public."ExternalID" DROP CONSTRAINT "ExternalID_TypeID_fkey"; publicpostgresfalse211015261532260626196FK_GlobalContext_Versions FK CONSTRAINTALTER TABLE ONLY "GlobalContext" ADD CONSTRAINT "FK_GlobalContext_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."GlobalContext" DROP CONSTRAINT "FK_GlobalContext_Versions"; publicpostgresfalse215615501535260626766%FK_HWS_AuthenticationGateway_Versions FK CONSTRAINTALTER TABLE ONLY "HWS_AuthenticationGateway" ADD CONSTRAINT "FK_HWS_AuthenticationGateway_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; mALTER TABLE ONLY public."HWS_AuthenticationGateway" DROP CONSTRAINT "FK_HWS_AuthenticationGateway_Versions"; publicpostgresfalse215615501638260626201FK_HWS_HostedConfig_Versions FK CONSTRAINTALTER TABLE ONLY "HWS_HostedConfig" ADD CONSTRAINT "FK_HWS_HostedConfig_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."HWS_HostedConfig" DROP CONSTRAINT "FK_HWS_HostedConfig_Versions"; publicpostgresfalse215615501537260626206 FK_HWS_HostedWebService_Versions FK CONSTRAINTALTER TABLE ONLY "HWS_HostedWebService" ADD CONSTRAINT "FK_HWS_HostedWebService_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; cALTER TABLE ONLY public."HWS_HostedWebService" DROP CONSTRAINT "FK_HWS_HostedWebService_Versions"; publicpostgresfalse215615501538260626211 FK_HWS_HybridConnection_Versions FK CONSTRAINTALTER TABLE ONLY "HWS_HybridConnection" ADD CONSTRAINT "FK_HWS_HybridConnection_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; cALTER TABLE ONLY public."HWS_HybridConnection" DROP CONSTRAINT "FK_HWS_HybridConnection_Versions"; publicpostgresfalse215615501539260626216FK_HWS_HybridDomain_Versions FK CONSTRAINTALTER TABLE ONLY "HWS_HybridDomain" ADD CONSTRAINT "FK_HWS_HybridDomain_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."HWS_HybridDomain" DROP CONSTRAINT "FK_HWS_HybridDomain_Versions"; publicpostgresfalse215615501540260626221FK_HWS_Setting_Versions FK CONSTRAINTALTER TABLE ONLY "HWS_Setting" ADD CONSTRAINT "FK_HWS_Setting_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."HWS_Setting" DROP CONSTRAINT "FK_HWS_Setting_Versions"; publicpostgresfalse215615501541260626226FK_HWS_Settings_Versions FK CONSTRAINTALTER TABLE ONLY "HWS_Settings" ADD CONSTRAINT "FK_HWS_Settings_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."HWS_Settings" DROP CONSTRAINT "FK_HWS_Settings_Versions"; publicpostgresfalse215615501542260626231FK_LocalUsers_Versions FK CONSTRAINTALTER TABLE ONLY "LocalUsers" ADD CONSTRAINT "FK_LocalUsers_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; OALTER TABLE ONLY public."LocalUsers" DROP CONSTRAINT "FK_LocalUsers_Versions"; publicpostgresfalse215615501543260626236FK_RemoteUsers_Versions FK CONSTRAINTALTER TABLE ONLY "RemoteUsers" ADD CONSTRAINT "FK_RemoteUsers_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."RemoteUsers" DROP CONSTRAINT "FK_RemoteUsers_Versions"; publicpostgresfalse215615501546260626241FK_SecurityAccounts_Versions FK CONSTRAINTALTER TABLE ONLY "SecurityAccounts" ADD CONSTRAINT "FK_SecurityAccounts_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."SecurityAccounts" DROP CONSTRAINT "FK_SecurityAccounts_Versions"; publicpostgresfalse215615501547260626246FK_UserRoles_Versions FK CONSTRAINTALTER TABLE ONLY "UserRoles" ADD CONSTRAINT "FK_UserRoles_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; MALTER TABLE ONLY public."UserRoles" DROP CONSTRAINT "FK_UserRoles_Versions"; publicpostgresfalse215615501549260626251FK_WCG_ContentGateway_Versions FK CONSTRAINTALTER TABLE ONLY "WCG_ContentGateway" ADD CONSTRAINT "FK_WCG_ContentGateway_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; _ALTER TABLE ONLY public."WCG_ContentGateway" DROP CONSTRAINT "FK_WCG_ContentGateway_Versions"; publicpostgresfalse215615501559260626256FK_WCG_ExceptionUrls_Versions FK CONSTRAINTALTER TABLE ONLY "WCG_ExceptionUrls" ADD CONSTRAINT "FK_WCG_ExceptionUrls_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; ]ALTER TABLE ONLY public."WCG_ExceptionUrls" DROP CONSTRAINT "FK_WCG_ExceptionUrls_Versions"; publicpostgresfalse215615501561260626261FK_WCG_Setting_Versions FK CONSTRAINTALTER TABLE ONLY "WCG_Setting" ADD CONSTRAINT "FK_WCG_Setting_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."WCG_Setting" DROP CONSTRAINT "FK_WCG_Setting_Versions"; publicpostgresfalse215615501563260626266FK_WCG_Settings_Versions FK CONSTRAINTALTER TABLE ONLY "WCG_Settings" ADD CONSTRAINT "FK_WCG_Settings_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WCG_Settings" DROP CONSTRAINT "FK_WCG_Settings_Versions"; publicpostgresfalse215615501565260626271FK_WSE_Categories_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Categories" ADD CONSTRAINT "FK_WSE_Categories_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; WALTER TABLE ONLY public."WSE_Categories" DROP CONSTRAINT "FK_WSE_Categories_Versions"; publicpostgresfalse215615501566260626276$FK_WSE_CategoryDispositions_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_CategoryDispositions" ADD CONSTRAINT "FK_WSE_CategoryDispositions_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; kALTER TABLE ONLY public."WSE_CategoryDispositions" DROP CONSTRAINT "FK_WSE_CategoryDispositions_Versions"; publicpostgresfalse215615501568260626281%FK_WSE_CategoryNotifications_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_CategoryNotifications" ADD CONSTRAINT "FK_WSE_CategoryNotifications_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; mALTER TABLE ONLY public."WSE_CategoryNotifications" DROP CONSTRAINT "FK_WSE_CategoryNotifications_Versions"; publicpostgresfalse215615501570260626286$FK_WSE_CategorySetTemplates_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_CategorySetTemplates" ADD CONSTRAINT "FK_WSE_CategorySetTemplates_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; kALTER TABLE ONLY public."WSE_CategorySetTemplates" DROP CONSTRAINT "FK_WSE_CategorySetTemplates_Versions"; publicpostgresfalse215615501572260626291FK_WSE_CategorySets_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_CategorySets" ADD CONSTRAINT "FK_WSE_CategorySets_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."WSE_CategorySets" DROP CONSTRAINT "FK_WSE_CategorySets_Versions"; publicpostgresfalse215615501574260626296FK_WSE_ClientRules_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ClientRules" ADD CONSTRAINT "FK_WSE_ClientRules_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; YALTER TABLE ONLY public."WSE_ClientRules" DROP CONSTRAINT "FK_WSE_ClientRules_Versions"; publicpostgresfalse215615501576260626301 FK_WSE_DirectoryObjects_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_DirectoryObjects" ADD CONSTRAINT "FK_WSE_DirectoryObjects_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; cALTER TABLE ONLY public."WSE_DirectoryObjects" DROP CONSTRAINT "FK_WSE_DirectoryObjects_Versions"; publicpostgresfalse215615501577260626306!FK_WSE_FileExtensionSets_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_FileExtensionSets" ADD CONSTRAINT "FK_WSE_FileExtensionSets_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; eALTER TABLE ONLY public."WSE_FileExtensionSets" DROP CONSTRAINT "FK_WSE_FileExtensionSets_Versions"; publicpostgresfalse215615501578260626311FK_WSE_FileTypes_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_FileTypes" ADD CONSTRAINT "FK_WSE_FileTypes_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_FileTypes" DROP CONSTRAINT "FK_WSE_FileTypes_Versions"; publicpostgresfalse215615501580260626316FK_WSE_Keywords_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Keywords" ADD CONSTRAINT "FK_WSE_Keywords_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_Keywords" DROP CONSTRAINT "FK_WSE_Keywords_Versions"; publicpostgresfalse215615501582260626321#FK_WSE_LoggingDispositions_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_LoggingDispositions" ADD CONSTRAINT "FK_WSE_LoggingDispositions_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; iALTER TABLE ONLY public."WSE_LoggingDispositions" DROP CONSTRAINT "FK_WSE_LoggingDispositions_Versions"; publicpostgresfalse215615501584260626326FK_WSE_Networks_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Networks" ADD CONSTRAINT "FK_WSE_Networks_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_Networks" DROP CONSTRAINT "FK_WSE_Networks_Versions"; publicpostgresfalse215615501586260626331FK_WSE_Policies_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Policies" ADD CONSTRAINT "FK_WSE_Policies_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_Policies" DROP CONSTRAINT "FK_WSE_Policies_Versions"; publicpostgresfalse215615501587260626336FK_WSE_PolicyPeriods_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_PolicyPeriods" ADD CONSTRAINT "FK_WSE_PolicyPeriods_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; ]ALTER TABLE ONLY public."WSE_PolicyPeriods" DROP CONSTRAINT "FK_WSE_PolicyPeriods_Versions"; publicpostgresfalse215615501589260626341 FK_WSE_ProtocolCriteria_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolCriteria" ADD CONSTRAINT "FK_WSE_ProtocolCriteria_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; cALTER TABLE ONLY public."WSE_ProtocolCriteria" DROP CONSTRAINT "FK_WSE_ProtocolCriteria_Versions"; publicpostgresfalse215615501591260626346$FK_WSE_ProtocolDispositions_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolDispositions" ADD CONSTRAINT "FK_WSE_ProtocolDispositions_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; kALTER TABLE ONLY public."WSE_ProtocolDispositions" DROP CONSTRAINT "FK_WSE_ProtocolDispositions_Versions"; publicpostgresfalse215615501593260626351FK_WSE_ProtocolGroups_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolGroups" ADD CONSTRAINT "FK_WSE_ProtocolGroups_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; _ALTER TABLE ONLY public."WSE_ProtocolGroups" DROP CONSTRAINT "FK_WSE_ProtocolGroups_Versions"; publicpostgresfalse215615501595260626356%FK_WSE_ProtocolNotifications_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolNotifications" ADD CONSTRAINT "FK_WSE_ProtocolNotifications_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; mALTER TABLE ONLY public."WSE_ProtocolNotifications" DROP CONSTRAINT "FK_WSE_ProtocolNotifications_Versions"; publicpostgresfalse215615501597260626361$FK_WSE_ProtocolSetTemplates_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolSetTemplates" ADD CONSTRAINT "FK_WSE_ProtocolSetTemplates_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; kALTER TABLE ONLY public."WSE_ProtocolSetTemplates" DROP CONSTRAINT "FK_WSE_ProtocolSetTemplates_Versions"; publicpostgresfalse215615501599260626366FK_WSE_ProtocolSets_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_ProtocolSets" ADD CONSTRAINT "FK_WSE_ProtocolSets_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."WSE_ProtocolSets" DROP CONSTRAINT "FK_WSE_ProtocolSets_Versions"; publicpostgresfalse215615501601260626371FK_WSE_Protocols_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Protocols" ADD CONSTRAINT "FK_WSE_Protocols_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_Protocols" DROP CONSTRAINT "FK_WSE_Protocols_Versions"; publicpostgresfalse215615501603260626376!FK_WSE_RecategorizedUrls_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_RecategorizedUrls" ADD CONSTRAINT "FK_WSE_RecategorizedUrls_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; eALTER TABLE ONLY public."WSE_RecategorizedUrls" DROP CONSTRAINT "FK_WSE_RecategorizedUrls_Versions"; publicpostgresfalse215615501605260626381FK_WSE_RiskClasses_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_RiskClasses" ADD CONSTRAINT "FK_WSE_RiskClasses_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; YALTER TABLE ONLY public."WSE_RiskClasses" DROP CONSTRAINT "FK_WSE_RiskClasses_Versions"; publicpostgresfalse215615501607260626386FK_WSE_RoleLocks_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_RoleLocks" ADD CONSTRAINT "FK_WSE_RoleLocks_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_RoleLocks" DROP CONSTRAINT "FK_WSE_RoleLocks_Versions"; publicpostgresfalse215615501609260626391FK_WSE_Roles_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Roles" ADD CONSTRAINT "FK_WSE_Roles_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; MALTER TABLE ONLY public."WSE_Roles" DROP CONSTRAINT "FK_WSE_Roles_Versions"; publicpostgresfalse215615501611260626396FK_WSE_Setting_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Setting" ADD CONSTRAINT "FK_WSE_Setting_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; QALTER TABLE ONLY public."WSE_Setting" DROP CONSTRAINT "FK_WSE_Setting_Versions"; publicpostgresfalse215615501613260626401FK_WSE_Settings_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_Settings" ADD CONSTRAINT "FK_WSE_Settings_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_Settings" DROP CONSTRAINT "FK_WSE_Settings_Versions"; publicpostgresfalse215615501615260626406FK_WSE_SysAlerts_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_SysAlerts" ADD CONSTRAINT "FK_WSE_SysAlerts_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_SysAlerts" DROP CONSTRAINT "FK_WSE_SysAlerts_Versions"; publicpostgresfalse215615501617260626411FK_WSE_SysEvents_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_SysEvents" ADD CONSTRAINT "FK_WSE_SysEvents_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; UALTER TABLE ONLY public."WSE_SysEvents" DROP CONSTRAINT "FK_WSE_SysEvents_Versions"; publicpostgresfalse215615501619260626416FK_WSE_UnfilteredUrls_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_UnfilteredUrls" ADD CONSTRAINT "FK_WSE_UnfilteredUrls_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; _ALTER TABLE ONLY public."WSE_UnfilteredUrls" DROP CONSTRAINT "FK_WSE_UnfilteredUrls_Versions"; publicpostgresfalse215615501621260626421FK_WSE_WebFiltering_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_WebFiltering" ADD CONSTRAINT "FK_WSE_WebFiltering_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; [ALTER TABLE ONLY public."WSE_WebFiltering" DROP CONSTRAINT "FK_WSE_WebFiltering_Versions"; publicpostgresfalse215615501623260626426FK_WSE_YesLists_Versions FK CONSTRAINTALTER TABLE ONLY "WSE_YesLists" ADD CONSTRAINT "FK_WSE_YesLists_Versions" FOREIGN KEY ("VersionID") REFERENCES "Versions"("ID") ON DELETE CASCADE; SALTER TABLE ONLY public."WSE_YesLists" DROP CONSTRAINT "FK_WSE_YesLists_Versions"; publicpostgresfalse215615501625260626431#ReferencesPending_ChangelistID_fkey FK CONSTRAINTALTER TABLE ONLY "ReferencesPending" ADD CONSTRAINT "ReferencesPending_ChangelistID_fkey" FOREIGN KEY ("ChangelistID") REFERENCES "Changelists"("ID") ON DELETE CASCADE; cALTER TABLE ONLY public."ReferencesPending" DROP CONSTRAINT "ReferencesPending_ChangelistID_fkey"; publicpostgresfalse209315201545260626436Versions_ObjectID_fkey FK CONSTRAINTALTER TABLE ONLY "Versions" ADD CONSTRAINT "Versions_ObjectID_fkey" FOREIGN KEY ("ObjectID") REFERENCES "VersionedObjects"("ID") ON DELETE CASCADE; MALTER TABLE ONLY public."Versions" DROP CONSTRAINT "Versions_ObjectID_fkey"; publicpostgresfalse210615241550 1 15 -31 -31 1 0 1073741824 0 3 0 1073741824 0 2 16 -31 -31 4 16 -31 -31 5 16 -31 -31 7 16 1073741824 1073741824 8 16 -31 -31 8 17 2 0 8 19 8 0 8 18 4 0 2 18 1073741824 1073741824 5 18 1073741824 1073741824 7 18 1073741824 1073741824 551 0 1073741824 0 6 16 -31 -31 552 0 1073741824 0 553 16 -31 -31 8 919 1073741824 0 8 921 1073741824 0 2 919 1073741824 0 2 921 1073741824 0 5 919 1073741824 0 5 921 1073741824 0 7 919 1073741824 0 7 921 1073741824 0 915 919 1879048192 1879048192 915 921 1073741828 0 915 920 2 0 1099 919 1610612736 1879048192 8 3649 16 0 8 3650 1 0 915 3651 16 0 915 3652 1 0 7 3662 8 0 7 3912 1073741824 0 8 3912 1073741824 0 2 3912 1073741824 0 5 3912 1073741824 0 7 3914 1073741824 0 8 3914 1073741824 0 2 3914 1073741824 0 5 3914 1073741824 0 7 3916 1073741824 0 8 3916 1073741824 0 2 3916 1073741824 0 5 3916 1073741824 0 7 3918 1073741824 0 8 3918 1073741824 0 2 3918 1073741824 0 5 3918 1073741824 0 7 3920 1073741824 0 8 3920 1073741824 0 2 3920 1073741824 0 5 3920 1073741824 0 \. \. t8513 2011-10-24 09:11:21-04 admin t u8514 2011-10-24 09:46:19-04 admin t &8567 2011-10-24 16:31:22.922-04 Websense External User:/0/1/2/LDAP://TRITON-Directory ou=Users,ou=Washington,dc=broadcasting,dc=ds,dc=local/Eric Howard0LDAP://TRITON-Directory ou=Users,ou=Washington,dc=broadcasting,dc=ds,dc=local/Eric HowardUser Role:/0/1/2/en-US,_TRITON_User Role:/0/1/2/en-US,Super Administrators_PolicyUIUser Role:/0/1/2/en-US,Super AdministratorsUser Role:/0/1/2/en-US,LDAP://TRITON-Directory ou=Users\\,ou=Washington\\,dc=broadcasting\\,dc=ds\\,dc=local/Eric Howard_basePermissionRoleUser Role:/0/1/2/en-US,Super Administrators_ReportingUIUser Role:/0/1/2/en-US,Super Administrators_RealTimeUIUser Role:/0/1/2/en-US,Super Administrators_GlobalUI f .8568 2011-10-24 16:31:24.121-04 Websense External User:/0/1/2/LDAP://TRITON-Directory BROADCASTING/it-computer-systems-support0LDAP://TRITON-Directory BROADCASTING/it-computer-systems-supportUser Role:/0/1/2/en-US,LDAP://TRITON-Directory BROADCASTING/it-computer-systems-support_basePermissionRole f 8569 2011-10-24 16:31:24.396-04 Websense External User:/0/1/2/LDAP://TRITON-Directory OU=Groups,OU=Washington,DC=broadcasting,DC=ds,DC=local/user support0LDAP://TRITON-Directory OU=Groups,OU=Washington,DC=broadcasting,DC=ds,DC=local/user supportUser Role:/0/1/2/en-US,LDAP://TRITON-Directory OU=Groups\\,OU=Washington\\,DC=broadcasting\\,DC=ds\\,DC=local/user support_basePermissionRole f u8570 2011-10-24 16:31:24.656-04 Websense External User:/0/1/2/LDAP://TRITON-Directory ou=Groups,ou=Washington,dc=broadcasting,dc=ds,dc=local/it-tin0LDAP://TRITON-Directory ou=Groups,ou=Washington,dc=broadcasting,dc=ds,dc=local/it-tinUser Role:/0/1/2/en-US,LDAP://TRITON-Directory ou=Groups\\,ou=Washington\\,dc=broadcasting\\,dc=ds\\,dc=local/it-tin_basePermissionRole f 8571 2011-10-24 16:31:24.928-04 Websense External User:/0/1/2/LDAP://TRITON-Directory ou=Groups,ou=Washington,dc=broadcasting,dc=ds,dc=local/it-computer-systems-support0LDAP://TRITON-Directory ou=Groups,ou=Washington,dc=broadcasting,dc=ds,dc=local/it-computer-systems-supportUser Role:/0/1/2/en-US,LDAP://TRITON-Directory ou=Groups\\,ou=Washington\\,dc=broadcasting\\,dc=ds\\,dc=local/it-computer-systems-support_basePermissionRole f &8572 2011-10-24 16:31:25.591-04 Websense External User:/0/1/2/LDAP://TRITON-Directory ou=Users,ou=Washington,dc=broadcasting,dc=ds,dc=local/Eric Howard0LDAP://TRITON-Directory ou=Users,ou=Washington,dc=broadcasting,dc=ds,dc=local/Eric HowardUser Role:/0/1/2/en-US,_TRITON_User Role:/0/1/2/en-US,Super Administrators_PolicyUIUser Role:/0/1/2/en-US,Super AdministratorsUser Role:/0/1/2/en-US,LDAP://TRITON-Directory ou=Users\\,ou=Washington\\,dc=broadcasting\\,dc=ds\\,dc=local/Eric Howard_basePermissionRoleUser Role:/0/1/2/en-US,Super Administrators_ReportingUIUser Role:/0/1/2/en-US,Super Administrators_RealTimeUIUser Role:/0/1/2/en-US,Super Administrators_GlobalUI f .8573 2011-10-24 16:31:25.865-04 Websense External User:/0/1/2/LDAP://TRITON-Directory BROADCASTING/it-computer-systems-support0LDAP://TRITON-Directory BROADCASTING/it-computer-systems-supportUser Role:/0/1/2/en-US,LDAP://TRITON-Directory BROADCASTING/it-computer-systems-support_basePermissionRole f 8574 2011-10-24 16:31:26.149-04 Websense External User:/0/1/2/LDAP://TRITON-Directory OU=Groups,OU=Washington,DC=broadcasting,DC=ds,DC=local/user support0LDAP://TRITON-Directory OU=Groups,OU=Washington,DC=broadcasting,DC=ds,DC=local/user supportUser Role:/0/1/2/en-US,LDAP://TRITON-Directory OU=Groups\\,OU=Washington\\,DC=broadcasting\\,DC=ds\\,DC=local/user support_basePermissionRole f u8575 2011-10-24 16:31:26.402-04 Websense External User:/0/1/2/LDAP://TRITON-Directory ou=Groups,ou=Washington,dc=broadcasting,dc=ds,dc=local/it-tin0LDAP://TRITON-Directory ou=Groups,ou=Washington,dc=broadcasting,dc=ds,dc=local/it-tinUser Role:/0/1/2/en-US,LDAP://TRITON-Directory ou=Groups\\,ou=Washington\\,dc=broadcasting\\,dc=ds\\,dc=local/it-tin_basePermissionRole f t8581 2011-10-24 16:56:33-04 admin t 8582 2011-10-24 16:57:15.557-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.(\\\\.|/)*.usgbroadcasts\\\\.com,(\\\\.|/)worldbank\\\\.org,(\\\\.|/)*.state\\\\.gov,(\\\\.|/)flint\\\\.comhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.com,http://www.flint.com t u8584 2011-10-24 17:02:18-04 admin t t8585 2011-10-24 17:02:25-04 admin t t8515 2011-10-24 10:24:59-04 admin t 8576 2011-10-24 16:31:26.679-04 Websense External User:/0/1/2/LDAP://TRITON-Directory ou=Groups,ou=Washington,dc=broadcasting,dc=ds,dc=local/it-computer-systems-support0LDAP://TRITON-Directory ou=Groups,ou=Washington,dc=broadcasting,dc=ds,dc=local/it-computer-systems-supportUser Role:/0/1/2/en-US,LDAP://TRITON-Directory ou=Groups\\,ou=Washington\\,dc=broadcasting\\,dc=ds\\,dc=local/it-computer-systems-support_basePermissionRole f w8583 2011-10-24 16:58:16.384-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://robertmeta.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Watchhttp://www.facebook.com/pages/ستاره-درخشش/197066476975628 t u8516 2011-10-24 10:59:58-04 admin t t8577 2011-10-24 16:32:37-04 admin t u8578 2011-10-24 16:40:59-04 admin t t8579 2011-10-24 16:51:11-04 admin t u8580 2011-10-24 16:53:59-04 admin t u8586 2011-10-24 17:18:02-04 admin t t8587 2011-10-24 17:19:31-04 admin t t8517 2011-10-24 15:15:38-04 admin t 8518 2011-10-24 15:16:44.744-04 admin Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.191/Policy:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User0false0***** t 8519 2011-10-24 15:16:44.744-04 admin Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.16.170/Policy:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User0false0***** t 8520 2011-10-24 15:16:44.744-04 admin Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.190/Policy:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User0false0***** t 8521 2011-10-24 15:16:44.744-04 admin Network:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.191Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.191/25550657912555065791Role:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin t 8522 2011-10-24 15:16:44.744-04 admin Network:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.16.170Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.16.170/25550562982555056298Role:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin t 8523 2011-10-24 15:16:44.744-04 admin Network:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.190Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.190/25550657902555065790Role:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin t t8525 2011-10-24 15:18:48-04 admin t i8529 2011-10-24 15:33:14.246-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t 8530 2011-10-24 15:33:14.246-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)en-US,BBG Power User t v8531 2011-10-24 15:33:14.246-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t i8532 2011-10-24 15:34:25.379-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t 8533 2011-10-24 15:34:25.379-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power User t u8588 2011-10-24 17:49:30-04 admin t u8524 2011-10-24 15:18:21-04 admin t t8589 2011-10-24 18:07:25-04 admin t i8526 2011-10-24 15:28:26.456-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t 08527 2011-10-24 15:28:26.456-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)en-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)en-US,BBG Power User t v8528 2011-10-24 15:28:26.456-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t w8590 2011-10-24 18:11:22.192-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/Category:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Watchhttp://www.facebook.com/pages/ستاره-درخشش/197066476975628http://robertmeta.com t 8591 2011-10-24 18:11:53.35-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.com,http://robertmeta.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.(\\\\.|/)*.usgbroadcasts\\\\.com,(\\\\.|/)worldbank\\\\.org,(\\\\.|/)*.state\\\\.gov,(\\\\.|/)flint\\\\.comhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.com t 8592 2011-10-24 18:35:46.525-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.com,http://robertmeta.com,http://ak47.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.(\\\\.|/)*.usgbroadcasts\\\\.com,(\\\\.|/)worldbank\\\\.org,(\\\\.|/)*.state\\\\.gov,(\\\\.|/)flint\\\\.comhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.com,http://robertmeta.com t v8534 2011-10-24 15:34:25.379-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t i8535 2011-10-24 15:34:42.355-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t v8536 2011-10-24 15:34:42.355-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t h8537 2011-10-24 15:39:58.23-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t X8538 2011-10-24 15:39:58.23-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power User t u8539 2011-10-24 15:39:58.23-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t 8547 2011-10-24 15:45:28.718-04 admin Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.190/Policy:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User0false0***** t Y8548 2011-10-24 15:45:28.718-04 admin Network:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.190Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.190/Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.190/25550657902555065790Role:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin t 8549 2011-10-24 15:45:28.718-04 admin Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.53.190/Policy:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User0false0***** t _8540 2011-10-24 15:41:28.555-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_ALL/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ALLOW_ALLProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t 8541 2011-10-24 15:41:28.555-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ALLOW_ALLCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,ALLOW_ALL t l8542 2011-10-24 15:41:28.555-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_ALL/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ALLOW_ALLProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t i8543 2011-10-24 15:43:03.893-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t v8544 2011-10-24 15:43:03.893-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power User t v8545 2011-10-24 15:43:03.893-04 admin Policy Period:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User/127864000Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserProtocol Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t 8546 2011-10-24 15:44:18.974-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com,http://www.getfiddler.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Power_Userhttp://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com t 8550 2011-10-24 15:55:55.59-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Audio\\,Compressed Files\\,Executables\\,Lnk files\\,Video)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)zh-CN,提供一个有细微差别的方法进行过滤,为不同类别应用允许、阻止和确认操作。,de-DE,Bietet einen gestaffelten Ansatz für die Filterfunktion und wendet die Aktionen "Zulassen"\\, "Sperren"\\, "Bestätigen" und "Quote" auf unterschiedliche Kategorien an.,ko-KR,각각 다른 카테고리에 허용\\, 차단\\, 확인 및 시간 할당 조치를 적용하는 필터링으로 조금씩 다르게 접근하게 해줍니다.,fr-FR,Fournit une approche nuancée du filtrage\\, en appliquant les actions Autoriser\\, Bloquer\\, Confirmer et Contingent à différentes catégories.,en-US,Provides a nuanced approach to filtering\\, applying the Permit\\, Block\\, Confirm\\, and Quota actions to different categories.,es-ES,Proporciona un enfoque aproximado al filtrado\\, que aplica las acciones Permitir\\, Bloquear\\, Confirmar y Cuota a las diferentes categorías.,pt-BR,Fornece uma abordagem variada para filtrar e para aplicar as ações Permitir\\, Bloquear\\, Confirmar e Cota a diferentes categorias.,ja-JP,フィルタリングや許可、ブロック、確認、割り当て時間などの各アクションを異なるカテゴリに適用する際、微妙な違いをふまえた上で使い分けます。,it-IT,Consente un approccio non completamente definito al filtraggio\\, applicando le operazioni Autorizza\\, Blocca e Conferma a categorie differenti.,zh-TW,提供精細的篩選方式,將「允許」、「封鎖」、「確認」及「配額」動作套用到不同的類別。Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Audio\\,Compressed Files\\,Executables\\,Lnk files\\,Video)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Audio\\,Compressed Files\\,Executables\\,Lnk files\\,Video)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t 8551 2011-10-24 15:55:55.59-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ALLOW_ALLCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,ALLOW_ALL t O8552 2011-10-24 15:55:55.59-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power User t 8553 2011-10-24 15:57:12.386-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Power_Userhttp://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com,http://www.getfiddler.com t !8555 2011-10-24 15:59:14.601-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com,http://www.getfiddler.com,http://www.flint.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Power_Userhttp://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com,http://www.getfiddler.com t 8557 2011-10-24 16:01:49.884-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.com,http://www.flint.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.(\\\\.|/)*.usgbroadcasts\\\\.com,(\\\\.|/)worldbank\\\\.org,(\\\\.|/)*.state\\\\.govhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.com t u8558 2011-10-24 16:10:11-04 admin t t8559 2011-10-24 16:10:17-04 admin t 8554 2011-10-24 15:57:58.949-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com,http://www.getfiddler.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Power_Userhttp://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com t 8556 2011-10-24 16:00:42-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com,http://www.getfiddler.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Power_Userhttp://www.swmirror.tgrmn.com,http://downloads.wmrecorder.com,http://www.elluminate.com,http://www.getfiddler.com,http://www.flint.com t .8560 2011-10-24 16:15:57.465-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Audio\\,Compressed Files\\,Executables\\,Lnk files\\,Video)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)zh-CN,提供一个有细微差别的方法进行过滤,为不同类别应用允许、阻止和确认操作。,de-DE,Bietet einen gestaffelten Ansatz für die Filterfunktion und wendet die Aktionen "Zulassen"\\, "Sperren"\\, "Bestätigen" und "Quote" auf unterschiedliche Kategorien an.,ko-KR,각각 다른 카테고리에 허용\\, 차단\\, 확인 및 시간 할당 조치를 적용하는 필터링으로 조금씩 다르게 접근하게 해줍니다.,fr-FR,Fournit une approche nuancée du filtrage\\, en appliquant les actions Autoriser\\, Bloquer\\, Confirmer et Contingent à différentes catégories.,en-US,Provides a nuanced approach to filtering\\, applying the Permit\\, Block\\, Confirm\\, and Quota actions to different categories.,es-ES,Proporciona un enfoque aproximado al filtrado\\, que aplica las acciones Permitir\\, Bloquear\\, Confirmar y Cuota a las diferentes categorías.,pt-BR,Fornece uma abordagem variada para filtrar e para aplicar as ações Permitir\\, Bloquear\\, Confirmar e Cota a diferentes categorias.,ja-JP,フィルタリングや許可、ブロック、確認、割り当て時間などの各アクションを異なるカテゴリに適用する際、微妙な違いをふまえた上で使い分けます。,it-IT,Consente un approccio non completamente definito al filtraggio\\, applicando le operazioni Autorizza\\, Blocca e Conferma a categorie differenti.,zh-TW,提供精細的篩選方式,將「允許」、「封鎖」、「確認」及「配額」動作套用到不同的類別。Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Audio\\,Compressed Files\\,Executables\\,Lnk files\\,Video)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設 t 8561 2011-10-24 16:15:57.465-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ALLOW_ALLCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,ALLOW_ALL t P8562 2011-10-24 16:15:57.465-04 admin Category Filter:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power UserCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permit(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Compressed Files)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Continue(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Block(Block or lock file types Executables)Category Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Permiten-US,BBG Power User t n8563 2011-10-24 16:19:45.26-04 admin Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.(\\\\.|/)*.usgbroadcasts\\\\.com,(\\\\.|/)worldbank\\\\.org,(\\\\.|/)*.state\\\\.gov,(\\\\.|/)flint\\\\.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.(\\\\.|/)*.usgbroadcasts\\\\.com,(\\\\.|/)worldbank\\\\.org,(\\\\.|/)*.state\\\\.govhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://usgbroadcasts.com,http://webtheque.airfrance.com/gescomedia/cgi-bin/localhost_6461.exe,http://cusib.org,http://www.cusib.org,http://www.odnoklassniki.ru,http://odnoklassniki.ru,http://innovation-series.com,http://www.innovation-series.com,http://www.dailyjang.com.pk,http://dailyjang.com.pk,http://download.citrix.com.edgesuite.net,http://secondwind.com,http://www.secondwind.com,http://www.flint.com t u8564 2011-10-24 16:22:15-04 admin t t8565 2011-10-24 16:22:22-04 admin t u8566 2011-10-24 16:27:02-04 admin t 7386 2011-08-26 09:28:21-04 WebsenseAdministrator t 7387 2011-08-26 09:40:03-04 WebsenseAdministrator t 7388 2011-08-26 12:32:26-04 WebsenseAdministrator t 7389 2011-08-26 12:37:18.146-04 WebsenseAdministrator Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.govhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net t 7390 2011-08-26 12:38:20-04 WebsenseAdministrator t 7391 2011-08-26 13:43:24-04 WebsenseAdministrator t 7392 2011-08-26 14:17:39-04 WebsenseAdministrator t 7393 2011-08-27 00:59:34.033-04 Websense Globals:WF_DDB_Version39033904 f 7394 2011-08-27 00:59:37.314-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,Google Talk,zh-TW,Google Talk,de-DE,Google Talk,en-US,Google Talk,fr-FR,Google Talk,it-IT,Google Talk,ja-JP,Google Talk,ko-KR,Google Talk,pt-BR,Google Talk,es-ES,Google Talk/tcp64.233.169.125ALL f 7395 2011-08-27 00:59:37.314-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,Google Talk,zh-TW,Google Talk,de-DE,Google Talk,en-US,Google Talk,fr-FR,Google Talk,it-IT,Google Talk,ja-JP,Google Talk,ko-KR,Google Talk,pt-BR,Google Talk,es-ES,Google Talk/tcp64.233.169.125ALL f 7396 2011-08-29 15:44:21-04 WebsenseAdministrator t 7397 2011-08-29 16:41:27-04 WebsenseAdministrator t 7398 2011-08-29 17:16:05-04 WebsenseAdministrator t 7399 2011-08-29 17:18:58-04 WebsenseAdministrator t 7400 2011-08-30 01:00:37.903-04 Websense Globals:WF_DDB_Version39043905 f 7401 2011-08-30 08:46:36-04 WebsenseAdministrator t 7402 2011-08-30 09:01:02-04 WebsenseAdministrator t 7403 2011-08-30 09:26:39-04 WebsenseAdministrator t 7404 2011-08-30 09:28:11-04 WebsenseAdministrator t 7405 2011-08-30 09:58:09-04 WebsenseAdministrator t 7406 2011-08-30 10:00:49.541-04 WebsenseAdministrator Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.comhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net t 7407 2011-08-30 10:31:34-04 WebsenseAdministrator t 7408 2011-08-30 16:46:49-04 WebsenseAdministrator t 7409 2011-08-30 17:01:46-04 WebsenseAdministrator t 7410 2011-08-30 17:37:22-04 WebsenseAdministrator t 7411 2011-08-30 17:37:36-04 WebsenseAdministrator t 7412 2011-08-31 00:59:35.80-04 Websense Globals:WF_DDB_Version39053906 f 7413 2011-08-31 09:10:30-04 WebsenseAdministrator t 7414 2011-08-31 11:01:03-04 WebsenseAdministrator t 7415 2011-08-31 11:11:08-04 WebsenseAdministrator t 7416 2011-08-31 11:22:50-04 WebsenseAdministrator t 7417 2011-08-31 14:04:20-04 WebsenseAdministrator t 7418 2011-08-31 14:22:41-04 WebsenseAdministrator t 7419 2011-08-31 16:02:23-04 WebsenseAdministrator t 7420 2011-08-31 16:03:03-04 WebsenseAdministrator t 7421 2011-09-01 00:59:23.038-04 Websense Globals:WF_DDB_Version39063907 f w7422 2011-09-01 10:35:07-04 jbriscoe t #7423 2011-09-01 10:35:31.152-04 OU=Users,OU=Washington,DC=broadcasting,DC=ds,DC=local/Jose Briscoe Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.52.46/Policy:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,BBG_Power_User0***** t 7424 2011-09-01 10:35:31.152-04 OU=Users,OU=Washington,DC=broadcasting,DC=ds,DC=local/Jose Briscoe Network:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.52.46Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.52.46/25550653902555065390Role:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin t x7425 2011-09-01 10:35:36-04 jbriscoe t w7426 2011-09-01 15:24:42-04 jbriscoe t x7427 2011-09-01 15:27:33-04 jbriscoe t 7428 2011-09-02 00:59:18.215-04 Websense Globals:WF_DDB_Version39073908 f 7429 2011-09-03 00:59:08.255-04 Websense Globals:WF_DDB_Version39083909 f 7430 2011-09-07 01:03:23.213-04 Websense Globals:WF_DDB_Version39093911 f 7431 2011-09-07 10:01:14-04 WebsenseAdministrator t 7432 2011-09-07 10:09:58-04 WebsenseAdministrator t 7433 2011-09-07 17:19:10-04 WebsenseAdministrator t 7434 2011-09-07 17:20:27-04 WebsenseAdministrator t 7435 2011-09-08 00:59:07.256-04 Websense Globals:WF_DDB_Version39113912 f 7436 2011-09-08 00:59:10.881-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,MSN Messenger 附件,zh-TW,MSN Messenger 附件,de-DE,MSN Messenger-Anhänge,en-US,MSN Messenger attachments,fr-FR,Pièces jointes MSN Messenger,it-IT,Allegati MSN Messenger,ja-JP,MSN Messenger の添付,ko-KR,MSN 메신저 첨부 파일,pt-BR,Anexos do MSN Messenger,es-ES,Archivos adjuntos de MSN Messenger/2ALL f 7437 2011-09-08 00:59:10.881-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,MSN Messenger 附件,zh-TW,MSN Messenger 附件,de-DE,MSN Messenger-Anhänge,en-US,MSN Messenger attachments,fr-FR,Pièces jointes MSN Messenger,it-IT,Allegati MSN Messenger,ja-JP,MSN Messenger の添付,ko-KR,MSN 메신저 첨부 파일,pt-BR,Anexos do MSN Messenger,es-ES,Archivos adjuntos de MSN Messenger/tcpALL f 7438 2011-09-08 00:59:10.881-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,MSN Messenger 附件,zh-TW,MSN Messenger 附件,de-DE,MSN Messenger-Anhänge,en-US,MSN Messenger attachments,fr-FR,Pièces jointes MSN Messenger,it-IT,Allegati MSN Messenger,ja-JP,MSN Messenger の添付,ko-KR,MSN 메신저 첨부 파일,pt-BR,Anexos do MSN Messenger,es-ES,Archivos adjuntos de MSN Messenger/tcpALL f 7439 2011-09-08 00:59:10.881-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,MSN Messenger 附件,zh-TW,MSN Messenger 附件,de-DE,MSN Messenger-Anhänge,en-US,MSN Messenger attachments,fr-FR,Pièces jointes MSN Messenger,it-IT,Allegati MSN Messenger,ja-JP,MSN Messenger の添付,ko-KR,MSN 메신저 첨부 파일,pt-BR,Anexos do MSN Messenger,es-ES,Archivos adjuntos de MSN Messenger/2ALL f 7440 2011-09-08 09:48:01-04 WebsenseAdministrator t 7441 2011-09-08 09:50:00-04 WebsenseAdministrator t 7442 2011-09-08 14:08:38-04 WebsenseAdministrator t 7443 2011-09-08 15:16:39-04 WebsenseAdministrator t 7444 2011-09-08 17:16:46-04 WebsenseAdministrator t 7445 2011-09-08 17:26:44-04 WebsenseAdministrator t 7446 2011-09-09 00:59:34.813-04 Websense Globals:WF_DDB_Version39123913 f 7447 2011-09-09 00:59:37.219-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,Google Talk,zh-TW,Google Talk,de-DE,Google Talk,en-US,Google Talk,fr-FR,Google Talk,it-IT,Google Talk,ja-JP,Google Talk,ko-KR,Google Talk,pt-BR,Google Talk,es-ES,Google Talk/tcp64.233.169.125ALL f 7448 2011-09-09 00:59:37.219-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,Google Talk,zh-TW,Google Talk,de-DE,Google Talk,en-US,Google Talk,fr-FR,Google Talk,it-IT,Google Talk,ja-JP,Google Talk,ko-KR,Google Talk,pt-BR,Google Talk,es-ES,Google Talk/tcp64.233.169.125ALL f 7449 2011-09-09 11:10:59-04 WebsenseAdministrator t 7450 2011-09-09 11:42:01-04 WebsenseAdministrator t 7451 2011-09-10 00:59:28.463-04 Websense Globals:WF_DDB_Version39133914 f 47452 2011-09-10 00:59:30.791-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,腾讯 QQ (请参阅知识库),zh-TW,騰訊 QQ (請參閱知識庫),de-DE,Tencent QQ (näheres in der Knowledge Base),en-US,Tencent QQ (see the Knowledge Base),fr-FR,Tencent QQ (consultez la base de connaissances),it-IT,Tencent QQ (vedere la Knowledge Base),ja-JP,Tencent QQ (Knowledge Base を参照してください),ko-KR,Tencent QQ (Knowledge Base를 참조하십시오.),pt-BR,Tencent QQ (consulte a Knowledge Base),es-ES,Tencent QQ (ver Knowledge Base)/tcp61.144.238.149ALL f =7453 2011-09-10 00:59:30.791-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,腾讯 QQ (请参阅知识库),zh-TW,騰訊 QQ (請參閱知識庫),de-DE,Tencent QQ (näheres in der Knowledge Base),en-US,Tencent QQ (see the Knowledge Base),fr-FR,Tencent QQ (consultez la base de connaissances),it-IT,Tencent QQ (vedere la Knowledge Base),ja-JP,Tencent QQ (Knowledge Base を参照してください),ko-KR,Tencent QQ (Knowledge Base를 참조하십시오.),pt-BR,Tencent QQ (consulte a Knowledge Base),es-ES,Tencent QQ (ver Knowledge Base)/tcp61.144.238.149ALL f 7454 2011-09-12 13:00:22-04 WebsenseAdministrator t 7455 2011-09-12 13:00:40-04 WebsenseAdministrator t 7456 2011-09-12 13:00:46-04 WebsenseAdministrator t 7457 2011-09-12 13:00:54-04 WebsenseAdministrator t 7458 2011-09-13 00:59:26.663-04 Websense Globals:WF_DDB_Version39143915 f 47459 2011-09-13 00:59:29.429-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,腾讯 QQ (请参阅知识库),zh-TW,騰訊 QQ (請參閱知識庫),de-DE,Tencent QQ (näheres in der Knowledge Base),en-US,Tencent QQ (see the Knowledge Base),fr-FR,Tencent QQ (consultez la base de connaissances),it-IT,Tencent QQ (vedere la Knowledge Base),ja-JP,Tencent QQ (Knowledge Base を参照してください),ko-KR,Tencent QQ (Knowledge Base를 참조하십시오.),pt-BR,Tencent QQ (consulte a Knowledge Base),es-ES,Tencent QQ (ver Knowledge Base)/tcp61.144.238.149ALL f =7460 2011-09-13 00:59:29.429-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,腾讯 QQ (请参阅知识库),zh-TW,騰訊 QQ (請參閱知識庫),de-DE,Tencent QQ (näheres in der Knowledge Base),en-US,Tencent QQ (see the Knowledge Base),fr-FR,Tencent QQ (consultez la base de connaissances),it-IT,Tencent QQ (vedere la Knowledge Base),ja-JP,Tencent QQ (Knowledge Base を参照してください),ko-KR,Tencent QQ (Knowledge Base를 참조하십시오.),pt-BR,Tencent QQ (consulte a Knowledge Base),es-ES,Tencent QQ (ver Knowledge Base)/tcp61.144.238.149ALL f 7461 2011-09-13 14:16:38-04 WebsenseAdministrator t 7462 2011-09-13 14:17:21-04 WebsenseAdministrator t 7463 2011-09-13 14:19:34-04 WebsenseAdministrator t 7464 2011-09-13 14:21:04-04 WebsenseAdministrator t 7465 2011-09-13 14:23:39-04 WebsenseAdministrator t 7466 2011-09-13 14:30:15-04 WebsenseAdministrator t v7467 2011-09-13 14:30:29-04 ehoward t w7468 2011-09-13 14:30:34-04 ehoward t 7469 2011-09-13 14:31:24-04 WebsenseAdministrator t 7470 2011-09-13 14:40:29-04 WebsenseAdministrator t 7471 2011-09-13 14:58:15-04 WebsenseAdministrator t 7472 2011-09-13 15:04:52-04 WebsenseAdministrator t w7473 2011-09-13 15:16:12-04 jbriscoe t x7474 2011-09-13 15:16:28-04 jbriscoe t 7475 2011-09-13 15:28:59-04 WebsenseAdministrator t 7476 2011-09-13 15:37:50-04 WebsenseAdministrator t 7477 2011-09-14 00:59:42.764-04 Websense Globals:WF_DDB_Version39153916 f 47478 2011-09-14 00:59:45.311-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,腾讯 QQ (请参阅知识库),zh-TW,騰訊 QQ (請參閱知識庫),de-DE,Tencent QQ (näheres in der Knowledge Base),en-US,Tencent QQ (see the Knowledge Base),fr-FR,Tencent QQ (consultez la base de connaissances),it-IT,Tencent QQ (vedere la Knowledge Base),ja-JP,Tencent QQ (Knowledge Base を参照してください),ko-KR,Tencent QQ (Knowledge Base를 참조하십시오.),pt-BR,Tencent QQ (consulte a Knowledge Base),es-ES,Tencent QQ (ver Knowledge Base)/tcp61.144.238.149ALL f 7479 2011-09-14 00:59:45.311-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,Your Freedom,zh-TW,Your Freedom,de-DE,Your Freedom,en-US,Your Freedom,fr-FR,Your Freedom,it-IT,Your Freedom,ja-JP,Your Freedom,ko-KR,Your Freedom,pt-BR,Your Freedom,es-ES,Your Freedom/tcp62.212.72.240ALL f $7480 2011-09-14 00:59:45.311-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,Your Freedom,zh-TW,Your Freedom,de-DE,Your Freedom,en-US,Your Freedom,fr-FR,Your Freedom,it-IT,Your Freedom,ja-JP,Your Freedom,ko-KR,Your Freedom,pt-BR,Your Freedom,es-ES,Your Freedom/tcp62.212.72.240ALL f =7481 2011-09-14 00:59:45.311-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,腾讯 QQ (请参阅知识库),zh-TW,騰訊 QQ (請參閱知識庫),de-DE,Tencent QQ (näheres in der Knowledge Base),en-US,Tencent QQ (see the Knowledge Base),fr-FR,Tencent QQ (consultez la base de connaissances),it-IT,Tencent QQ (vedere la Knowledge Base),ja-JP,Tencent QQ (Knowledge Base を参照してください),ko-KR,Tencent QQ (Knowledge Base를 참조하십시오.),pt-BR,Tencent QQ (consulte a Knowledge Base),es-ES,Tencent QQ (ver Knowledge Base)/tcp61.144.238.149ALL f 7482 2011-09-14 09:08:47-04 WebsenseAdministrator t 7483 2011-09-14 09:19:19-04 WebsenseAdministrator t 7484 2011-09-14 09:22:25-04 WebsenseAdministrator t 7485 2011-09-14 09:31:34-04 WebsenseAdministrator t 7486 2011-09-14 09:39:09-04 WebsenseAdministrator t 7487 2011-09-14 09:41:41-04 WebsenseAdministrator t 7488 2011-09-14 09:41:57-04 WebsenseAdministrator t 7489 2011-09-14 09:42:14-04 WebsenseAdministrator t 7490 2011-09-14 09:43:30-04 WebsenseAdministrator t 7491 2011-09-14 09:50:15-04 WebsenseAdministrator t 7492 2011-09-14 09:50:20-04 WebsenseAdministrator t 7493 2011-09-14 09:59:37.59-04 WebsenseAdministrator Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.52.18/Policy:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/zh-CN,默认,de-DE,Standard,ko-KR,시스템 기본,fr-FR,Par défaut,en-US,Default,es-ES,Predeterminado,pt-BR,Padrão,ja-JP,デフォルト,it-IT,Predefinito,zh-TW,預設0***** t 7494 2011-09-14 09:59:37.59-04 WebsenseAdministrator Network:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.52.18Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.52.18/Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.52.18/25550653622555065362Role:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin t 7495 2011-09-14 09:59:37.59-04 WebsenseAdministrator Client Rule:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/152.75.52.18/Policy:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_ALL0***** t M7496 2011-09-14 10:04:30.657-04 WebsenseAdministrator Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://www.rtp.pt/homepageCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.comhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com t M7497 2011-09-14 10:33:36.012-04 WebsenseAdministrator Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.comCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.comhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://www.rtp.pt/homepage t 7498 2011-09-14 10:41:58-04 WebsenseAdministrator t 7499 2011-09-14 15:23:29-04 WebsenseAdministrator t &7500 2011-09-14 15:24:52.479-04 WebsenseAdministrator Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.rpt\\\\.ptCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.comhttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com t V7501 2011-09-14 15:25:22.853-04 WebsenseAdministrator Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://rtp.ptCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.rpt\\\\.pthttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com t J7502 2011-09-14 15:26:24.085-04 WebsenseAdministrator Recategorized URL:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/http://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.rtp\\\\.ptCategory:/0/1/3/en-US,Websense/en-US,Super Administrator/en-US,BBG_Admin/en-US,Allow_BBG_Defaulthttp://auth.waldenulibrary.org/ezpws.exe.*,http://client-software.real.com/*,http://www.archives.nd.edu/cgi-bin/*,http://www.state.gov/*,http://tess2.uspto.gov/bin/*,http://en.wikipedia.org/*,http://uscode.house.gov/uscode-cgi/*,http://sweden.real.com/*,http://listen.real.com/*,http://switchboard.real.com/converter/*,http://www.zotero.org/*,http://img.widgetbox.com/images/*,http://pub[0-9].widgetbox.com/images/*,www.widgetbox.com/widget/voa-*/*,http://listserv.opm.gov/wa.exe*,http://www.facebook.com/album.php*,(\\\\.|/)gaikai\\\\.com,(\\\\.|/)adobe\\\\.com,(\\\\.|/)divx\\\\.com,(\\\\.|/)ibbmonitor\\\\.com,(\\\\.|/)windowsupdate\\\\.com,(\\\\.|/)152\\\\.75\\\\.*,(\\\\.|/)*\\\\.broadcasting\\\\.ds\\\\.local,http://mail.guss.tv/edgedesk/cgi-bin/login.exe.*,(\\\\.|/)download\\\\.nai\\\\.com,(\\\\.|/)update\\\\.nai\\\\.com,(\\\\.|/)*.cdn-ll\\\\.sun\\\\.com,(\\\\.|/)*.cdn\\\\.sun\\\\.com,(\\\\.|/)*.senate\\\\.gov,(\\\\.|/)*.security\\\\.ubuntu\\\\.com,(\\\\.|/)*.download\\\\.sophos\\\\.com,(\\\\.|/)*.fpdownload2\\\\.macromedia\\\\.com,(\\\\.|/)*.fpdownload\\\\.macromedia\\\\.com,(\\\\.|/)*.nvidia\\\\.com,(\\\\.|/)*.house\\\\.gov,(\\\\.|/)*.mbamupdates\\\\.com,(\\\\.|/)*.rpt\\\\.pthttp://audiobrowse.voa.gov,http://multitran.ru,http://www.multitran.ru,http://kimelli.nfshost.com,http://www.rallytorestoresanity.com,http://player.kamera.com/voa,http://player.kamera.com/delivery/voice-of-america,http://www.androlib.com/android.application.com-mindgrub-goenglishfarsi-qzwfa.aspx,http://www.androlib.com/android.application.com-mindgrub-goenglishchinese-qzwfw.aspx,http://switchboard.real.com/player/,http://www.dod.mil,http://www.facebook.com/ad_guidelines.php,http://dev.twitter.com/anywhere/apps/new,http://spoon.net/browsers,http://www.calcasieupreservation.com,http://cache-download.real.com/free/windows/installer/player/rp14/r61endf/realplayer.exe,http://www.nitrodesk.com,http://www.zotero.org/,http://www.youtube.com/my_playlists?p=3c1a50ebd8730ae1,http://www.widgetbox.com,http://ultrareach.com,http://www.ultrareach.com,http://www.foh.dds.gov,http://itunes.apple.com,http://chinese.goenglish.me,http://farsi.goenglish.me,http://goenglish.me,http://indonesian.goenglish.me,http://russian.goenglish.me,http://staging.chinese.goenglish.me,http://staging.farsi.goenglish.me,http://staging.goenglish.me,http://staging.indonesian.goenglish.me,http://staging.russian.goenglish.me,http://www.youtube.com/my_playlists?p=3fac27005b43ccb0,http://www.ramseyelectronics.com,http://farsite.hill.af.mil,http://www.facebook.com/apps/application.php?id=162891010412392&v=info,http://real.com,http://c.p-real.com,http://client-software.real.com,http://forms.real.com,http://switchboard.real.com,http://www.real.com,http://edge.sharethis.com/share4x/index.8b002a4545e328de3258fb39d4e0284e.html,http://www.ellafles.com,http://services.bit9.com,http://smurfyleekx.tumblr.com,http://www.wenxuecity.com,http://dl.javafx.com,http://dlc-cdn.sun.com,http://dlc-cdn-rd.sun.com,http://keepvid.com,http://ardownload.adobe.com,http://cache.pack.google.com,http://content.rim.com.edgesuite.net,http://javadl.sun.com,http://www.arcsoft.com,http://www.123dictionary.net,http://dist.divx.com,http://earth.google.com,http://www.reallyvirtual.com,http://blogx.sina.com.cn,http://www.hocal.net,http://www.rfa.org,http://cdm.microsoft.com,http://download.microsoft.com,http://ntservicepack.microsoft.com,http://update.microsoft.com,http://windowsupdate.microsoft.com,http://wustat.windows.com,http://www.worldtracer.aero,http://woeser.middle-way.net,http://maguzawa.dyndns.ws,http://downloads-us.blackberry.com,http://saturn.installshield.com,http://cdn.dropbox.com,http://www.listserv.va.gov,http://download.mcafee.com,http://download.skype.com,http://sdlc-esd.sun.com,http://ibb.com.hk,http://ibbvienna.at,http://rmsweb.ibb.org.in,http://www.ibb.fi,http://downloads.sophos.com,http://www.sananews.net,http://sananews.net,http://whatsyour911.com,http://rtp.pt t 7503 2011-09-14 15:33:03-04 WebsenseAdministrator t 7504 2011-09-15 00:59:31.365-04 Websense Globals:WF_DDB_Version39163917 f z7505 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebookzh-CN,包含 Facebook 域控件的主类别,zh-TW,含有 Facebook 網域控制項的主類別,de-DE,Übergeordnete Kategorie\\, die Facebook-Domänenkontrollen enthält,en-US,Parent category that contains Facebook Domain Controls,fr-FR,Catégorie parente qui contient des contrôles du domaine Facebook,it-IT,La categoria per i genitori che offre controlli di monitoraggio del dominio Facebook,ja-JP,Facebook ドメイン コントロールを含む親カテゴリ,ko-KR,Facebook 도메인 컨트롤이 포함된 보호자용 범주입니다.,pt-BR,Categoria principal que contém Controles de Domínio do Facebook ,es-ES,Categoría general que contiene controles de dominio de Facebook.zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebooknone f ^7506 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - YouTube,zh-TW,社群網路控制項 - YouTube,de-DE,Soziale Web-Kontrollen - YouTube,en-US,Social Web Controls - YouTube,fr-FR,Contrôles du Web social - YouTube,it-IT,Controllo genitori (Parental Control) del Social Web - YouTube,ja-JP,ソーシャル ウェブ コントロール - You Tube,ko-KR,소셜 웹 컨트롤 - YouTube,pt-BR,Controles da Web Social - YouTube,es-ES,Controles de la web social - YouTubezh-CN,包含 YouTube 域控件的主类别,zh-TW,包含 YouTube 網域控制項的主類別,de-DE,Übergeordnete Kategorie\\, die YouTube-Domänenkontrollen enthält,en-US,Parent category that contains YouTube Domain Controls,fr-FR,Catégorie parente qui contient des contrôles du domaine YouTube,it-IT,La categoria per i genitori che offre controlli di monitoraggio del dominio YouTube,ja-JP,You Tube ドメイン コントロールを含む親カテゴリ,ko-KR,YouTube 도메인 컨트롤이 포함된 보호자용 범주입니다.,pt-BR,Categoria principal que contém Controles de Domínio do YouTube,es-ES,Categoría general que contiene controles de dominio de YouTube.zh-CN,社交网站控件 - YouTube,zh-TW,社群網路控制項 - YouTube,de-DE,Soziale Web-Kontrollen - YouTube,en-US,Social Web Controls - YouTube,fr-FR,Contrôles du Web social - YouTube,it-IT,Controllo genitori (Parental Control) del Social Web - YouTube,ja-JP,ソーシャル ウェブ コントロール - You Tube,ko-KR,소셜 웹 컨트롤 - YouTube,pt-BR,Controles da Web Social - YouTube,es-ES,Controles de la web social - YouTubenone f [7507 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Twitter,zh-TW,社群網路控制項 - Twitter,de-DE,Soziale Web-Kontrollen - Twitter,en-US,Social Web Controls - Twitter,fr-FR,Contrôles du Web social - Twitter,it-IT,Controllo genitori (Parental Control) del Social Web - Twitter,ja-JP,ソーシャル ウェブ コントロール - Twitter,ko-KR,소셜 웹 컨트롤 - Twitter,pt-BR,Controles da Web Social - Twitter,es-ES,Controles de la web social - Twitterzh-CN,包含 Twitter 域控件的主类别,zh-TW,包含 Twitter 網域控制項的主類別,de-DE,Übergeordnete Kategorie\\, die Twitter-Domänenkontrollen enthält,en-US,Parent category that contains Twitter Domain Controls,fr-FR,Catégorie parente qui contient des contrôles du domaine Twitter,it-IT,La categoria per i genitori che offre controlli di monitoraggio del dominio Twitter,ja-JP,Twitter ドメイン コントロールを含む親カテゴリ,ko-KR,Twitter 도메인 컨트롤이 포함된 보호자용 범주입니다.,pt-BR,Categoria principal que contém Controles de Domínio do Twitter,es-ES,Categoría general que contiene controles de dominio de Twitter.zh-CN,社交网站控件 - Twitter,zh-TW,社群網路控制項 - Twitter,de-DE,Soziale Web-Kontrollen - Twitter,en-US,Social Web Controls - Twitter,fr-FR,Contrôles du Web social - Twitter,it-IT,Controllo genitori (Parental Control) del Social Web - Twitter,ja-JP,ソーシャル ウェブ コントロール - Twitter,ko-KR,소셜 웹 컨트롤 - Twitter,pt-BR,Controles da Web Social - Twitter,es-ES,Controles de la web social - Twitternone f y7508 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - LinkedIn,zh-TW,社群網路控制項 - LinkedIn,de-DE,Soziale Web-Kontrollen - LinkedIn,en-US,Social Web Controls - LinkedIn,fr-FR,Contrôles du Web social - LinkedIn,it-IT,Controllo genitori (Parental Control) del Social Web - LinkedIn,ja-JP,ソーシャル ウェブ コントロール - LinkedIn,ko-KR,소셜 웹 컨트롤 - LinkedIn,pt-BR,Controles da Web Social - LinkedIn,es-ES,Controles de la web social - LinkedInzh-CN,包含 LinkedIn 域控件的主类别,zh-TW,包含 LinkedIn 網域控制項的主類別,de-DE,Übergeordnete Kategorie\\, die LinkedIn-Domänenkontrollen enthält,en-US,Parent category that contains LinkedIn Domain Controls,fr-FR,Catégorie parente qui contient des contrôles du domaine LinkedIn,it-IT,La categoria per i genitori che offre controlli di monitoraggio del dominio LinkedIn,ja-JP,LinkedIn ドメイン コントロールを含む親カテゴリ,ko-KR,LinkedIn 도메인 컨트롤이 포함된 보호자용 범주입니다.,pt-BR,Categoria principal que contém Controles de Domínio do LinkedIn,es-ES,Categoría general que contiene controles de dominio de LinkedIn.zh-CN,社交网站控件 - LinkedIn,zh-TW,社群網路控制項 - LinkedIn,de-DE,Soziale Web-Kontrollen - LinkedIn,en-US,Social Web Controls - LinkedIn,fr-FR,Contrôles du Web social - LinkedIn,it-IT,Controllo genitori (Parental Control) del Social Web - LinkedIn,ja-JP,ソーシャル ウェブ コントロール - LinkedIn,ko-KR,소셜 웹 컨트롤 - LinkedIn,pt-BR,Controles da Web Social - LinkedIn,es-ES,Controles de la web social - LinkedInnone f 7509 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - 各种网站,zh-TW,社群網路控制項 - 各種網站,de-DE,Soziale Web-Kontrollen - Verschiedene,en-US,Social Web Controls - Various,fr-FR,Contrôles du Web social - Divers,it-IT,Controllo genitori (Parental Control) del Social Web - Vari,ja-JP,ソーシャル ウェブ コントロール - その他,ko-KR,소셜 웹 컨트롤 - 기타,pt-BR,Controles da Web Social - Diversos,es-ES,Controles de la web social - Varioszh-CN,包含各种社交网站域控件的主类别,zh-TW,包含各種社群網路網域控制項的主類別,de-DE,Übergeordnete Kategorie\\, die verschiedene Domänenkontrollen enthält,en-US,Parent category that contains various Domain Controls,fr-FR,Catégorie parente qui contient des contrôles de divers domaines,it-IT,La categoria per i genitori che offre vari controlli di monitoraggio di un dominio,ja-JP,さまざまな ドメイン コントロールを含む親カテゴリ,ko-KR,다양한 도메인 컨트롤이 포함된 보호자용 범주입니다.,pt-BR,Categoria principal que contém diversos Controles de Domínio ,es-ES,Categoría general que contiene diversos controles de dominio.zh-CN,社交网站控件 - 各种网站,zh-TW,社群網路控制項 - 各種網站,de-DE,Soziale Web-Kontrollen - Verschiedene,en-US,Social Web Controls - Various,fr-FR,Contrôles du Web social - Divers,it-IT,Controllo genitori (Parental Control) del Social Web - Vari,ja-JP,ソーシャル ウェブ コントロール - その他,ko-KR,소셜 웹 컨트롤 - 기타,pt-BR,Controles da Web Social - Diversos,es-ES,Controles de la web social - Variosnone f 7510 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,监控,zh-TW,監視,de-DE,Überwachung,en-US,Surveillance,fr-FR,Surveillance,it-IT,Vigilanza,ja-JP,サーベイランス,ko-KR,감시,pt-BR,Vigilância,es-ES,Monitoreozh-CN,通过网络摄像机、网络摄像头以及其他录像设备对各种类型的操作进行实时监控的网站,zh-TW,透過網路攝影機、網路攝像機和其他錄影設備對各種操作進行即時監視的網站,de-DE,Websites\\, die eine Echtzeitüberwachung verschiedener Arten von Operationen über Netzwerkkameras\\, Webcams und andere Video-Aufzeichnungsgeräte ermöglichen,en-US,Sites that enable real-time monitoring of various types of operations via network cameras\\, webcams\\, and other video recording devices,fr-FR,Sites qui permettent une surveillance en temps réel de divers types d'opérations via des caméras réseau\\, des webcams et d'autres périphériques d'enregistrement vidéo,it-IT,Siti che consentono il monitoraggio in tempo reale di vari tipi di operazioni tramite una fotocamera webcam e altri dispositivi di registrazione video,ja-JP,ネットワーク カメラ、ウェブカメラ、その他のビデオ録画デバイスによりさまざまなタイプの活動をリアルタイムで監視するサイト,ko-KR,네트워크 카메라\\, 웹캠 및 레코딩 장치를 통해 다양한 유형의 작업에 대한 실시간 모니터링을 지원하는 사이트입니다.,pt-BR,Sites que habilitam monitoramento em tempo real de diversos tipos de operações com câmeras de rede\\, webcams e outros dispositivos de gravação de vídeo,es-ES,Sitios que permiten el monitoreo en tiempo real de diversos tipos de operaciones mediante cámaras de red\\, cámaras web y otros dispositivos de grabación de video.zh-CN,监控,zh-TW,監視,de-DE,Überwachung,en-US,Surveillance,fr-FR,Surveillance,it-IT,Vigilanza,ja-JP,サーベイランス,ko-KR,감시,pt-BR,Vigilância,es-ES,MonitoreoCategory:/0/1/3/en-US,Websense/zh-CN,带宽,zh-TW,頻寬,de-DE,Bandbreite,en-US,Bandwidth,fr-FR,Largeur de bande,it-IT,Larghezza di banda,ja-JP,帯域幅,ko-KR,대역폭,pt-BR,Largura de banda,es-ES,Ancho de banda f 7511 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,教育视频,zh-TW,教學影片,de-DE,Schulungsvideos,en-US,Educational Video,fr-FR,Vidéo de formation,it-IT,Video di istruzione,ja-JP,教育ビデオ,ko-KR,교육용 동영상,pt-BR,Vídeo Educacional,es-ES,Video educativozh-CN,提供学术性或教学性质内容视频的网站,zh-TW,提供學術性或教學性質內容影片的網站,de-DE,Websites\\, die Videos mit akademischen Inhalten oder Lehrinhalten hosten,en-US,Sites that host videos with academic or instructional content,fr-FR,Sites qui hébergent des vidéos de contenu de formation,it-IT,Siti che ospitano video di contenuto accademico o istruttivo,ja-JP,学術あるいは教育コンテンツのビデオをホストするサイト,ko-KR,교육 또는 강의 컨텐츠 동영상을 호스팅하는 사이트입니다.,pt-BR,Sites que hospedam vídeos com conteúdo acadêmico ou instrucional ,es-ES,Sitios que contienen videos con contenido académico o instructivo.zh-CN,教育视频,zh-TW,教學影片,de-DE,Schulungsvideos,en-US,Educational Video,fr-FR,Vidéo de formation,it-IT,Video di istruzione,ja-JP,教育ビデオ,ko-KR,교육용 동영상,pt-BR,Vídeo Educacional,es-ES,Video educativoCategory:/0/1/3/en-US,Websense/zh-CN,带宽,zh-TW,頻寬,de-DE,Bandbreite,en-US,Bandwidth,fr-FR,Largeur de bande,it-IT,Larghezza di banda,ja-JP,帯域幅,ko-KR,대역폭,pt-BR,Largura de banda,es-ES,Ancho de banda f /7512 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,娱乐视频,zh-TW,娛樂影片,de-DE,Unterhaltungsvideos,en-US,Entertainment Video,fr-FR,Vidéo de divertissement,it-IT,Video di intrattenimento,ja-JP,エンターテイメント ビデオ,ko-KR,엔터테인먼트용 동영상,pt-BR,Vídeo de Entretenimento,es-ES,Video de entretenimientozh-CN,提供以娱乐为导向的内容视频的网站,zh-TW,提供娛樂性內容視訊的網站,de-DE,Websites\\, die Videos mit unterhaltungsorientiertem Inhalt hosten,en-US,Sites that host videos with entertainment-oriented content,fr-FR,Sites qui hébergent des vidéos de contenu de divertissement,it-IT,Siti che ospitano video di contenuto di intrattenimento ,ja-JP,エンターテイメントを目的としたコンテンツのビデオをホストするサイト,ko-KR,엔터테인먼트 중심의 컨텐츠 동영상을 호스팅하는 사이트입니다.,pt-BR,Sites que hospedam vídeos com conteúdo de entretenimento,es-ES,Sitios que contienen videos con contenido orientado al entretenimiento.zh-CN,娱乐视频,zh-TW,娛樂影片,de-DE,Unterhaltungsvideos,en-US,Entertainment Video,fr-FR,Vidéo de divertissement,it-IT,Video di intrattenimento,ja-JP,エンターテイメント ビデオ,ko-KR,엔터테인먼트용 동영상,pt-BR,Vídeo de Entretenimento,es-ES,Video de entretenimientoCategory:/0/1/3/en-US,Websense/zh-CN,带宽,zh-TW,頻寬,de-DE,Bandbreite,en-US,Bandwidth,fr-FR,Largeur de bande,it-IT,Larghezza di banda,ja-JP,帯域幅,ko-KR,대역폭,pt-BR,Largura de banda,es-ES,Ancho de banda f 7513 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,搞笑视频,zh-TW,滑稽影片,de-DE,Virale Videos,en-US,Viral Video,fr-FR,Vidéo virale,it-IT,Video virali,ja-JP,ウイルス性ビデオ,ko-KR,바이얼 동영상,pt-BR,Vídeo Viral,es-ES,Video viralzh-CN,提供广受欢迎或网上热播视频的网站,zh-TW,提供廣受歡迎或網上熱播影片的網站,de-DE,Websites\\, die Videos mit hohem oder schnell steigendem Beliebtheitsgrad hosten,en-US,Sites that host videos with high or rapidly-rising popularity,fr-FR,Sites qui hébergent des vidéos dont la popularité est élevée ou croît rapidement,it-IT,Siti che ospitano video che attraggono una vasta audience o una audience in continuo aumento,ja-JP,人気の高い、または人気が急上昇しているビデオをホストするサイト,ko-KR,인기가 높거나 빠르게 확산되는 동영상을 호스팅하는 사이트입니다.,pt-BR,Sites que hospedam vídeos com popularidade alta ou que cresce rapidamente,es-ES,Sitios que contienen videos de alta popularidad o cuya popularidad va en aumento.zh-CN,搞笑视频,zh-TW,滑稽影片,de-DE,Virale Videos,en-US,Viral Video,fr-FR,Vidéo virale,it-IT,Video virali,ja-JP,ウイルス性ビデオ,ko-KR,바이얼 동영상,pt-BR,Vídeo Viral,es-ES,Video viralCategory:/0/1/3/en-US,Websense/zh-CN,带宽,zh-TW,頻寬,de-DE,Bandbreite,en-US,Bandwidth,fr-FR,Largeur de bande,it-IT,Larghezza di banda,ja-JP,帯域幅,ko-KR,대역폭,pt-BR,Largura de banda,es-ES,Ancho de banda f  7514 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,动态 DNS,zh-TW,動態 DNS,de-DE,Dynamisches DNS,en-US,Dynamic DNS,fr-FR,DNS dynamique,it-IT,DNS dinamico,ja-JP,ダイナミック DNS,ko-KR,동적 DNS,pt-BR,DNS Dinâmico,es-ES,DNS dinámicozh-CN,使用动态 DNS 服务掩饰其身份的网站,通常与高级持续性威胁有关,zh-TW,使用動態 DNS 服務掩飾其身份的網站,通常與進階持續性滲透攻擊有關,de-DE,Websites\\, die Ihre Identität über dynamische DNS-Dienste maskieren\\, häufig mit erweiterten persistenten Bedrohungen verbunden,en-US,Sites that mask their identity using Dynamic DNS services\\, often associated with advanced persistent threats,fr-FR,Sites qui masquent leur identité à l'aide de services DNS dynamiques\\, souvent associés à des menaces persistantes et sophistiquées,it-IT,Siti che possono celare la loro identità usando servizi di DNS dinamico spesso associati ad attacchi avanzati persistenti,ja-JP,ダイナミック DNS サービスを使ってアイデンティティを隠し、しばしば、高度で執拗な攻撃を伴うサイト,ko-KR,동적 DNS 서비스를 사용해 신분을 숨기는 사이트로\\, APT(Advanced Persistent Threats)와 관련된 경우가 많습니다.,pt-BR,Sites que mascaram sua identidade usando serviços de DNS Dinâmico\\, com frequência associados com ameaças persistentes avançadas,es-ES,Sitios que ocultan su identidad utilizando servicios de DNS dinámico\\, a menudo asociados con amenazas persistentes avanzadas.zh-CN,动态 DNS,zh-TW,動態 DNS,de-DE,Dynamisches DNS,en-US,Dynamic DNS,fr-FR,DNS dynamique,it-IT,DNS dinamico,ja-JP,ダイナミック DNS,ko-KR,동적 DNS,pt-BR,DNS Dinâmico,es-ES,DNS dinámicoCategory:/0/1/3/en-US,Websense/zh-CN,扩展保护,zh-TW,延伸的防護,de-DE,Erweiterter Schutz,en-US,Extended Protection,fr-FR,Protection étendue,it-IT,Protezione estesa,ja-JP,より広範囲の危険性への対処,ko-KR,확장 보호,pt-BR,Proteção ampliada,es-ES,Protección ampliada f f 7515 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,LinkedIn 更新,zh-TW,LinkedIn 最新訊息,de-DE,LinkedIn-Updates,en-US,LinkedIn Updates,fr-FR,Mises à jour LinkedIn,it-IT,Aggiornamenti (Update) di LinkedIn,ja-JP,LinkedIn アップデート,ko-KR,LinkedIn 업데이트,pt-BR,Atualizações do LinkedIn,es-ES,Actualizaciones de LinkedInzh-CN,可让用户编辑个人资料或发布更新的 LinkedIn 功能,zh-TW,可讓使用者編輯個人資料或發佈更新的 LinkedIn 功能,de-DE,LinkedIn-Funktion\\, die es einem Benutzer ermöglicht\\, ein Profil zu bearbeiten oder ein Update zu posten,en-US,LinkedIn function that enables a user to edit a profile or post an update,fr-FR,Fonction de LinkedIn qui permet aux utilisateurs de modifier un profil ou de publier une mise à jour,it-IT,La funzione di LinkedIn che consente a un utente di modificare un profilo o pubblicare informazioni aggiornate,ja-JP,ユーザーがプロフィールを編集したり、アップデートをポスティングしたりできる LinkedIn の機能,ko-KR,사용자가 프로필을 편집하거나 업데이트를 게시할 수 있는 LinkedIn 기능입니다.,pt-BR,Função do LinkedIn que habilita um usuário a editar um perfil ou postar uma atualização,es-ES,Función de LinkedIn que le permite al usuario editar un perfil o publicar una actualización.zh-CN,LinkedIn 更新,zh-TW,LinkedIn 最新訊息,de-DE,LinkedIn-Updates,en-US,LinkedIn Updates,fr-FR,Mises à jour LinkedIn,it-IT,Aggiornamenti (Update) di LinkedIn,ja-JP,LinkedIn アップデート,ko-KR,LinkedIn 업데이트,pt-BR,Atualizações do LinkedIn,es-ES,Actualizaciones de LinkedInCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - LinkedIn,zh-TW,社群網路控制項 - LinkedIn,de-DE,Soziale Web-Kontrollen - LinkedIn,en-US,Social Web Controls - LinkedIn,fr-FR,Contrôles du Web social - LinkedIn,it-IT,Controllo genitori (Parental Control) del Social Web - LinkedIn,ja-JP,ソーシャル ウェブ コントロール - LinkedIn,ko-KR,소셜 웹 컨트롤 - LinkedIn,pt-BR,Controles da Web Social - LinkedIn,es-ES,Controles de la web social - LinkedIn f  7516 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,LinkedIn 邮件,zh-TW,LinkedIn 郵件,de-DE,LinkedIn-Mail,en-US,LinkedIn Mail,fr-FR,Courrier LinkedIn,it-IT,Posta (Mail) di LinkedIn,ja-JP,LinkedIn メール,ko-KR,LinkedIn 메일,pt-BR,Email do LinkedIn,es-ES,Correo de LinkedInzh-CN,可让用户在 LinkedIn 社区内发送电子邮件的 LinkedIn 功能,zh-TW,可讓使用者在 LinkedIn 社群內傳送電子郵件的 LinkedIn 功能,de-DE,LinkedIn-Funktion\\, die es einem Benutzer ermöglicht\\, eine E-Mail innerhalb der LinkedIn-Community zu versenden,en-US,LinkedIn function that enables a user to send an email within the LinkedIn community,fr-FR,Fonction de LinkedIn qui permet aux utilisateurs d'envoyer un e-mail au sein de la communauté LinkedIn,it-IT,La funzione di LinkedIn che consente a un utente di inviare una e-mail nell’ambito della comunità di LinkedIn,ja-JP,ユーザーが LinkedIn コミュニティ内で電子メールを送ることができるLindedIn の機能,ko-KR,사용자가 LinkedIn 커뮤니티 내에서 이메일을 전송할 수 있는 LinkedIn 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a enviar um email na comunidade do LinkedIn,es-ES,Función de LinkedIn que le permite al usuario enviar un correo electrónico dentro de la comunidad de LinkedIn.zh-CN,LinkedIn 邮件,zh-TW,LinkedIn 郵件,de-DE,LinkedIn-Mail,en-US,LinkedIn Mail,fr-FR,Courrier LinkedIn,it-IT,Posta (Mail) di LinkedIn,ja-JP,LinkedIn メール,ko-KR,LinkedIn 메일,pt-BR,Email do LinkedIn,es-ES,Correo de LinkedInCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - LinkedIn,zh-TW,社群網路控制項 - LinkedIn,de-DE,Soziale Web-Kontrollen - LinkedIn,en-US,Social Web Controls - LinkedIn,fr-FR,Contrôles du Web social - LinkedIn,it-IT,Controllo genitori (Parental Control) del Social Web - LinkedIn,ja-JP,ソーシャル ウェブ コントロール - LinkedIn,ko-KR,소셜 웹 컨트롤 - LinkedIn,pt-BR,Controles da Web Social - LinkedIn,es-ES,Controles de la web social - LinkedIn f C7517 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,LinkedIn 联系人,zh-TW,LinkedIn 聯絡人,de-DE,LinkedIn-Verbindungen,en-US,LinkedIn Connections,fr-FR,Connexions LinkedIn,it-IT,Collegamenti (Links) di LinkedIn,ja-JP,LinkedIn コネクション,ko-KR,LinkedIn 연결,pt-BR,Conexões do LinkedIn,es-ES,Contactos de LinkedInzh-CN,可让用户添加链接的 LinkedIn 功能,zh-TW,可讓使用者添加連結的 LinkedIn 功能,de-DE,LinkedIn-Funktion\\, die es einem Benutzer ermöglicht\\, eine Verbindung hinzuzufügen,en-US,LinkedIn function that enables a user to add a connection,fr-FR,Fonction de LinkedIn qui permet aux utilisateurs d'ajouter une relation à leurs amis,it-IT,La funzione di LinkedIn che consente a un utente di aggiungere un collegamento ,ja-JP,ユーザーがコネクションを追加できる LinkedIn の機能,ko-KR,사용자가 연결을 추가할 수 있는 LinkedIn 기능입니다.,pt-BR,Função do LinkedIn que habilita um usuário a adicionar uma conexão,es-ES,Función de LinkedIn que le permite al usuario agregar un contacto.zh-CN,LinkedIn 联系人,zh-TW,LinkedIn 聯絡人,de-DE,LinkedIn-Verbindungen,en-US,LinkedIn Connections,fr-FR,Connexions LinkedIn,it-IT,Collegamenti (Links) di LinkedIn,ja-JP,LinkedIn コネクション,ko-KR,LinkedIn 연결,pt-BR,Conexões do LinkedIn,es-ES,Contactos de LinkedInCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - LinkedIn,zh-TW,社群網路控制項 - LinkedIn,de-DE,Soziale Web-Kontrollen - LinkedIn,en-US,Social Web Controls - LinkedIn,fr-FR,Contrôles du Web social - LinkedIn,it-IT,Controllo genitori (Parental Control) del Social Web - LinkedIn,ja-JP,ソーシャル ウェブ コントロール - LinkedIn,ko-KR,소셜 웹 컨트롤 - LinkedIn,pt-BR,Controles da Web Social - LinkedIn,es-ES,Controles de la web social - LinkedIn f 7518 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,LinkedIn 工作,zh-TW,LinkedIn 工作,de-DE,LinkedIn Jobs,en-US,LinkedIn Jobs,fr-FR,Carrière LinkedIn,it-IT,Ricerca di lavoro (Jobs) in LinkedIn,ja-JP,LinkedIn ジョブ,ko-KR,LinkedIn 구인/구직,pt-BR,Trabalhos do LinkedIn,es-ES,Empleos de LinkedInzh-CN,可让用户执行与工作搜索相关的活动的 LinkedIn 功能,zh-TW,可讓使用者執行與尋找工作相關的活動的 LinkedIn 功能,de-DE,LinkedIn-Funktion\\, die es einem Benutzer ermöglicht\\, Aktivitäten durchzuführen\\, die mit einer Stellensuche zusammenhängen,en-US,LinkedIn function that enables a user to perform activities related to job search,fr-FR,Fonction de LinkedIn qui permet aux utilisateurs d'effectuer des recherches d'emploi,it-IT,La funzione di LinkedIn che consente a un utente di cercare un lavoro,ja-JP,ユーザーが求職に関わる活動ができる LinkedIn の機能,ko-KR,사용자가 구인/구직 검색과 관련된 활동을 수행할 수 있는 LinkedIn 기능입니다.,pt-BR,Função do LinkedIn que habilita um usuário a executar atividades relacionadas a uma pesquisa de trabalho,es-ES,Función de LinkedIn que le permite al usuario realizar actividades relacionadas con la búsqueda de empleo.zh-CN,LinkedIn 工作,zh-TW,LinkedIn 工作,de-DE,LinkedIn Jobs,en-US,LinkedIn Jobs,fr-FR,Carrière LinkedIn,it-IT,Ricerca di lavoro (Jobs) in LinkedIn,ja-JP,LinkedIn ジョブ,ko-KR,LinkedIn 구인/구직,pt-BR,Trabalhos do LinkedIn,es-ES,Empleos de LinkedInCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - LinkedIn,zh-TW,社群網路控制項 - LinkedIn,de-DE,Soziale Web-Kontrollen - LinkedIn,en-US,Social Web Controls - LinkedIn,fr-FR,Contrôles du Web social - LinkedIn,it-IT,Controllo genitori (Parental Control) del Social Web - LinkedIn,ja-JP,ソーシャル ウェブ コントロール - LinkedIn,ko-KR,소셜 웹 컨트롤 - LinkedIn,pt-BR,Controles da Web Social - LinkedIn,es-ES,Controles de la web social - LinkedIn f  7519 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 发布,zh-TW,Facebook 發文,de-DE,Facebook-Posting,en-US,Facebook Posting,fr-FR,Publication Facebook,it-IT,Pubblicazione (Post) in Facebook,ja-JP,Facebook ポスティング,ko-KR,Facebook 포스팅,pt-BR,Postagem no Facebook ,es-ES,Publicaciones de Facebookzh-CN,可让用户分享贴子、状态或链接的 Facebook 功能,zh-TW,讓使用者分享貼文、狀態或連結的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, Posts\\, Statusangaben oder Links zu verbreiten,en-US,Facebook function that enables a user to share a post\\, status or link,fr-FR,Fonction de Facebook qui permet aux utilisateurs de partager une publication\\, un statut ou un lien,it-IT,La funzione di Facebook che consente a un utente di condividere un contenuto\\, uno stato o un link,ja-JP,ユーザーがポスト、ステータス、またはリンクを共有できるFacebook の機能,ko-KR,사용자가 게시물\\, 상태 또는 링크를 공유할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a compartilhar uma postagem\\, um status ou um link,es-ES,Función de Facebook que le permite al usuario compartir una publicación\\, un estado o un enlace.zh-CN,Facebook 发布,zh-TW,Facebook 發文,de-DE,Facebook-Posting,en-US,Facebook Posting,fr-FR,Publication Facebook,it-IT,Pubblicazione (Post) in Facebook,ja-JP,Facebook ポスティング,ko-KR,Facebook 포스팅,pt-BR,Postagem no Facebook ,es-ES,Publicaciones de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f 7520 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 评论,zh-TW,Facebook 回應,de-DE,Facebook-Kommentare,en-US,Facebook Commenting,fr-FR,Commentaires Facebook,it-IT,Commenti (Comment) in Facebook,ja-JP,Facebook コメント,ko-KR,Facebook 커멘팅,pt-BR,Comentários do Facebook ,es-ES,Comentarios de Facebookzh-CN,可让用户进行评论、表示喜好的 Facebook 功能,zh-TW,讓使用者可以發表評論或喜好的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, Kommentare zu hinterlassen oder "Gefällt mir" anzugeben,en-US,Facebook function that enables a user to comment or like,fr-FR,Fonction de Facebook qui permet aux utilisateurs de commenter un élément ou de dire qu'ils l'aiment,it-IT,La funzione di Facebook che consente a un utente di pubblicare un commento o esprimere il giudizio Mi piace (Like),ja-JP,ユーザーがコメントしたり、いいねボタンを押したりできるFacebook の機能,ko-KR,사용자가 댓글을 달거나 추천할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a comentar ou gostar ,es-ES,Función de Facebook que le permite al usuario comentar un enlace.zh-CN,Facebook 评论,zh-TW,Facebook 回應,de-DE,Facebook-Kommentare,en-US,Facebook Commenting,fr-FR,Commentaires Facebook,it-IT,Commenti (Comment) in Facebook,ja-JP,Facebook コメント,ko-KR,Facebook 커멘팅,pt-BR,Comentários do Facebook ,es-ES,Comentarios de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f 7521 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 好友,zh-TW,Facebook 朋友,de-DE,Facebook-Freunde,en-US,Facebook Friends,fr-FR,Amis Facebook,it-IT,Amici (Friends) di Facebook,ja-JP,Facebook フレンド,ko-KR,Facebook 친구,pt-BR,Amigos do Facebook ,es-ES,Amigos de Facebookzh-CN,可让用户添加链接的 Facebook 功能,zh-TW,讓使用者可以新增連結的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, eine Verbindung hinzuzufügen,en-US,Facebook function that enables a user to add a connection,fr-FR,Fonction de Facebook qui permet aux utilisateurs d'ajouter une relation à leurs amis,it-IT,La funzione di Facebook che consente a un utente di aggiungere il collegamento a un amico,ja-JP,ユーザーがコネクションを追加できる Facebook の機能,ko-KR,사용자가 연결을 추가할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a adicionar uma conexão,es-ES,Función de Facebook que le permite al usuario agregar un contacto.zh-CN,Facebook 好友,zh-TW,Facebook 朋友,de-DE,Facebook-Freunde,en-US,Facebook Friends,fr-FR,Amis Facebook,it-IT,Amici (Friends) di Facebook,ja-JP,Facebook フレンド,ko-KR,Facebook 친구,pt-BR,Amigos do Facebook ,es-ES,Amigos de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f 7522 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 照片上传,zh-TW,Facebook 照片上傳,de-DE,Facebook-Foto-Upload,en-US,Facebook Photo Upload,fr-FR,Chargement de photo Facebook,it-IT,Caricamento di foto (Photo) in Facebook,ja-JP,Facebook フォト アップロード,ko-KR,Facebook 사진 업로드,pt-BR,Upload de Foto do Facebook ,es-ES,Carga de fotos de Facebookzh-CN,可让用户上传照片的 Facebook 功能,zh-TW,可讓使用者上傳照片的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, ein Foto hochzuladen,en-US,Facebook function that enables a user to upload a photo,fr-FR,Fonction de Facebook qui permet aux utilisateurs de charger une photo,it-IT,La funzione di Facebook che consente a un utente di caricare una foto,ja-JP,ユーザーが写真をアップロードできる Facebook の機能,ko-KR,사용자가 사진을 업로드할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a fazer upload de uma foto,es-ES,Función de Facebook que le permite al usuario cargar una fotografía.zh-CN,Facebook 照片上传,zh-TW,Facebook 照片上傳,de-DE,Facebook-Foto-Upload,en-US,Facebook Photo Upload,fr-FR,Chargement de photo Facebook,it-IT,Caricamento di foto (Photo) in Facebook,ja-JP,Facebook フォト アップロード,ko-KR,Facebook 사진 업로드,pt-BR,Upload de Foto do Facebook ,es-ES,Carga de fotos de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f  7523 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 邮件,zh-TW,Facebook 郵件,de-DE,Facebook-Mail,en-US,Facebook Mail,fr-FR,Courrier Facebook,it-IT,Posta (Mail) di Facebook,ja-JP,Facebook メール,ko-KR,Facebook 메일,pt-BR,Email do Facebook,es-ES,Correo de Facebookzh-CN,可让用户在 Facebook 社区内发送电子邮件的 Facebook 功能,zh-TW,可讓使用者在 Facebook 社群內傳送電子郵件的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, eine E-Mail innerhalb der Facebook-Community zu versenden,en-US,Facebook function that enables a user to send an email within the Facebook community,fr-FR,Fonction de Facebook qui permet aux utilisateurs d'envoyer un e-mail au sein de la communauté Facebook,it-IT,La funzione di Facebook che consente a un utente di inviare una e-mail nell’ambito della comunità di Facebook,ja-JP,ユーザーがFacebook コミュニティ内で電子メールを送ることができるFacebookの機能,ko-KR,사용자가 Facebook 커뮤니티 내에서 이메일을 전송할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a enviar um email na comunidade do Facebook,es-ES,Función de Facebook que le permite al usuario enviar un correo electrónico dentro de la comunidad de Facebook.zh-CN,Facebook 邮件,zh-TW,Facebook 郵件,de-DE,Facebook-Mail,en-US,Facebook Mail,fr-FR,Courrier Facebook,it-IT,Posta (Mail) di Facebook,ja-JP,Facebook メール,ko-KR,Facebook 메일,pt-BR,Email do Facebook,es-ES,Correo de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f 7524 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 事件,zh-TW,Facebook 活動,de-DE,Facebook-Ereignisse,en-US,Facebook Events,fr-FR,Événements Facebook,it-IT,Eventi (Events) pubblicizzati in Facebook,ja-JP,Facebook イベント,ko-KR,Facebook 이벤트,pt-BR,Eventos do Facebook ,es-ES,Eventos de Facebookzh-CN,可让用户在 Facebook 社区内创建、修改以及响应事件的 Facebook 功能,zh-TW,可讓使用者在 Facebook 社群內建立、修改以及回應活動的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, ein Ereignis innerhalb der Facebook-Community zu erstellen\\, zu ändern oder auf ein solches zu reagieren,en-US,Facebook function that enables a user to create\\, modify or respond to an event within the Facebook community,fr-FR,Fonction de Facebook qui permet aux utilisateurs de créer et modifier un événement au sein de la communauté Facebook et d'y répondre,it-IT,La funzione di Facebook che consente a un utente di creare o modificare un evento o rispondere all’invito a un evento nell’ambito della comunità di Facebook,ja-JP,ユーザーが Facebook コミュニティ内でイベントをクリエート、変更、またはイベントに返事できる Facebook の機能,ko-KR,사용자가 Facebook 커뮤니티 내에서 이벤트를 생성\\, 수정 또는 응답할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a criar\\, modificar ou responder a um evento na comunidade do Facebook,es-ES,Función de Facebook que le permite al usuario crear\\, modificar o responder a un evento dentro de la comunidad de Facebook.zh-CN,Facebook 事件,zh-TW,Facebook 活動,de-DE,Facebook-Ereignisse,en-US,Facebook Events,fr-FR,Événements Facebook,it-IT,Eventi (Events) pubblicizzati in Facebook,ja-JP,Facebook イベント,ko-KR,Facebook 이벤트,pt-BR,Eventos do Facebook ,es-ES,Eventos de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f Q 7525 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,YouTube 评论,zh-TW,YouTube 回應,de-DE,YouTube-Kommentare,en-US,YouTube Commenting,fr-FR,Commentaires YouTube,it-IT,Commenti (Comment) di YouTube,ja-JP,YouTube コメント,ko-KR,YouTube 커멘팅,pt-BR,Comentários do YouTube,es-ES,Comentarios de YouTubezh-CN,可让用户进行评论、表示喜欢或不喜欢的 YouTube 功能,zh-TW,可讓使用者進行評論、表示喜歡或不喜歡的 YouTube 功能,de-DE,YouTube-Funktion\\, die es einem Benutzer ermöglicht\\, Kommentare zu hinterlassen oder "Gefällt mir" bzw. "Gefällt mir nicht" anzugeben,en-US,YouTube function that enables a user to comment\\, like or dislike,fr-FR,Fonction de YouTube qui permet aux utilisateurs de commenter un élément ou de dire qu'ils l'aiment ou ne l'aiment pas,it-IT,La funzione di YouTube che consente a un utente di pubblicare un commento\\, esprimere un giudizio Mi piace (Like) o Non mi piace (Dislike),ja-JP,ユーザーがコメントしたり、like/dislikeができる You Tube の機能,ko-KR,사용자가 댓글을 올리거나 추천 또는 비추천할 수 있는 Facebook 기능입니다.,pt-BR,Função do YouTube que habilita um usuário a comentar\\, gostar ou não gostar,es-ES,Función de YouTube que le permite al usuario hacer un comentario favorable o desfavorable.zh-CN,YouTube 评论,zh-TW,YouTube 回應,de-DE,YouTube-Kommentare,en-US,YouTube Commenting,fr-FR,Commentaires YouTube,it-IT,Commenti (Comment) di YouTube,ja-JP,YouTube コメント,ko-KR,YouTube 커멘팅,pt-BR,Comentários do YouTube,es-ES,Comentarios de YouTubeCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - YouTube,zh-TW,社群網路控制項 - YouTube,de-DE,Soziale Web-Kontrollen - YouTube,en-US,Social Web Controls - YouTube,fr-FR,Contrôles du Web social - YouTube,it-IT,Controllo genitori (Parental Control) del Social Web - YouTube,ja-JP,ソーシャル ウェブ コントロール - You Tube,ko-KR,소셜 웹 컨트롤 - YouTube,pt-BR,Controles da Web Social - YouTube,es-ES,Controles de la web social - YouTube f {7526 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,YouTube 视频上传,zh-TW,YouTube 影片上傳,de-DE,YouTube-Video-Upload,en-US,YouTube Video Upload,fr-FR,Chargement de vidéo YouTube,it-IT,Caricamento di video (Upload) in YouTube,ja-JP,YouTube ビデオ アップロード,ko-KR,YouTube 동영상 업로드,pt-BR,Upload de Vídeo do YouTube ,es-ES,Carga de videos de YouTubezh-CN,可让用户上传视频的 YouTube 功能,zh-TW,可讓使用者上傳影片的 YouTube 功能,de-DE,YouTube-Funktion\\, die es einem Benutzer ermöglicht\\, ein Video hochzuladen,en-US,YouTube function that enables a user to upload a video,fr-FR,Fonction de YouTube qui permet aux utilisateurs de charger une vidéo,it-IT,La funzione di YouTube che consente a un utente di caricare un video,ja-JP,ユーザーがビデオをアップロードできる You Tube の機能,ko-KR,사용자가 동영상을 업로드할 수 있는 YouTube 기능입니다.,pt-BR,Função do YouTube que habilita um usuário a fazer upload de um vídeo,es-ES,Función de YouTube que le permite al usuario cargar un video.zh-CN,YouTube 视频上传,zh-TW,YouTube 影片上傳,de-DE,YouTube-Video-Upload,en-US,YouTube Video Upload,fr-FR,Chargement de vidéo YouTube,it-IT,Caricamento di video (Upload) in YouTube,ja-JP,YouTube ビデオ アップロード,ko-KR,YouTube 동영상 업로드,pt-BR,Upload de Vídeo do YouTube ,es-ES,Carga de videos de YouTubeCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - YouTube,zh-TW,社群網路控制項 - YouTube,de-DE,Soziale Web-Kontrollen - YouTube,en-US,Social Web Controls - YouTube,fr-FR,Contrôles du Web social - YouTube,it-IT,Controllo genitori (Parental Control) del Social Web - YouTube,ja-JP,ソーシャル ウェブ コントロール - You Tube,ko-KR,소셜 웹 컨트롤 - YouTube,pt-BR,Controles da Web Social - YouTube,es-ES,Controles de la web social - YouTube f 7527 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 应用程序,zh-TW,Facebook 應用程式,de-DE,Facebook-Apps,en-US,Facebook Apps,fr-FR,Facebook Apps,it-IT,Applicazioni (Apps) di Facebook,ja-JP,Facebook Apps,ko-KR,Facebook 애플리케이션,pt-BR,Aplicativos do Facebook ,es-ES,Aplicaciones de Facebookzh-CN,可让用户访问或使用应用程序的 Facebook 功能,zh-TW,可讓使用者存取或使用應用程式的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, auf eine App zuzugreifen bzw. eine App zu nutzen,en-US,Facebook function that enables a user to access or utilize an app,fr-FR,Fonction de Facebook qui permet aux utilisateurs d'accéder à une application ou de l'utiliser,it-IT,La funzione di Facebook che consente a un utente di accedere o di utilizzare un’applicazione,ja-JP,ユーザーがappにアクセスまたは使用できる Facebook の機能,ko-KR,사용자가 애플리케이션에 액세스하거나 활용할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a acessar ou usar um aplicativo,es-ES,Función de Facebook que le permite al usuario tener acceso a o utilizar una aplicación.zh-CN,Facebook 应用程序,zh-TW,Facebook 應用程式,de-DE,Facebook-Apps,en-US,Facebook Apps,fr-FR,Facebook Apps,it-IT,Applicazioni (Apps) di Facebook,ja-JP,Facebook Apps,ko-KR,Facebook 애플리케이션,pt-BR,Aplicativos do Facebook ,es-ES,Aplicaciones de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f 7528 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 聊天,zh-TW,Facebook 聊天室,de-DE,Facebook-Chat,en-US,Facebook Chat,fr-FR,Facebook Chat,it-IT,Chat di Facebook,ja-JP,Facebook チャット,ko-KR,Facebook 채팅,pt-BR,Bate-Papo do Facebook,es-ES,Chat de Facebookzh-CN,可让用户在 Facebook 社区内进行聊天的 Facebook 功能,zh-TW,可讓使用者在 Facebook 社群內進行聊天的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, innerhalb der Facebook-Community zu chatten,en-US,Facebook function that enables a user to chat within the Facebook community,fr-FR,Fonction de Facebook qui permet aux utilisateurs de discuter au sein de la communauté Facebook,it-IT,La funzione di Facebook che consente a un utente di partecipare a una chat nell’ambito della comunictà di Facebook,ja-JP,ユーザーがFacebook コミュニティ内でチャットできるFacebookの機能,ko-KR,사용자가 Facebook 커뮤니티 내에서 채팅할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a usar o bate-papo na comunidade do Facebook,es-ES,Función de Facebook que le permite al usuario chatear dentro de la comunidad de Facebook.zh-CN,Facebook 聊天,zh-TW,Facebook 聊天室,de-DE,Facebook-Chat,en-US,Facebook Chat,fr-FR,Facebook Chat,it-IT,Chat di Facebook,ja-JP,Facebook チャット,ko-KR,Facebook 채팅,pt-BR,Bate-Papo do Facebook,es-ES,Chat de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f  7529 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 问题,zh-TW,Facebook 問答,de-DE,Facebook-Fragen,en-US,Facebook Questions,fr-FR,Questions Facebook,it-IT,Domande (Question) di Facebook,ja-JP,Facebook クエッション,ko-KR,Facebook 질문,pt-BR,Perguntas do Facebook,es-ES,Preguntas de Facebookzh-CN,可让用户在 Facebook 社区内提出问题的 Facebook 功能,zh-TW,可讓使用者在 Facebook 社群內提出問題的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, innerhalb der Facebook-Community eine Frage zu stellen,en-US,Facebook function that enables a user to ask a question within the Facebook community,fr-FR,Fonction de Facebook qui permet aux utilisateurs de poser une question au sein de la communauté Facebook,it-IT,La funzione di Facebook che consente a un utente di porre domande nell’ambito della comunità di Facebook,ja-JP,ユーザーがFacebook コミュニティ内で質問ができるFacebookの機能,ko-KR,사용자가 Facebook 커뮤니티 내에서 질문할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a fazer uma pergunta na comunidade do Facebook,es-ES,Función de Facebook que le permite al usuario hacer una pregunta dentro de la comunidad de Facebook.zh-CN,Facebook 问题,zh-TW,Facebook 問答,de-DE,Facebook-Fragen,en-US,Facebook Questions,fr-FR,Questions Facebook,it-IT,Domande (Question) di Facebook,ja-JP,Facebook クエッション,ko-KR,Facebook 질문,pt-BR,Perguntas do Facebook,es-ES,Preguntas de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f 7530 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 视频上传,zh-TW,Facebook 影片上傳,de-DE,Facebook-Video-Upload,en-US,Facebook Video Upload,fr-FR,Chargement de vidéo Facebook,it-IT,Caricamento di video (Video) in Facebook,ja-JP,Facebook ビデオ アップロード,ko-KR,Facebook 동영상 업로드,pt-BR,Upload de Vídeo do Facebook ,es-ES,Carga de videos de Facebookzh-CN,可让用户上传视频的 Facebook 功能,zh-TW,可讓使用者上傳影片的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, ein Video hochzuladen,en-US,Facebook function that enables a user to upload a video,fr-FR,Fonction de Facebook qui permet aux utilisateurs de charger une vidéo,it-IT,La funzione di Facebook che consente a un utente di caricare un video,ja-JP,ユーザーがビデオをアップロードできる Facebook の機能,ko-KR,사용자가 동영상을 업로드할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a fazer upload de um vídeo,es-ES,Función de Facebook que le permite al usuario cargar un video.zh-CN,Facebook 视频上传,zh-TW,Facebook 影片上傳,de-DE,Facebook-Video-Upload,en-US,Facebook Video Upload,fr-FR,Chargement de vidéo Facebook,it-IT,Caricamento di video (Video) in Facebook,ja-JP,Facebook ビデオ アップロード,ko-KR,Facebook 동영상 업로드,pt-BR,Upload de Vídeo do Facebook ,es-ES,Carga de videos de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f  7531 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 群,zh-TW,Facebook 社團,de-DE,Facebook-Gruppen,en-US,Facebook Groups,fr-FR,Groupes Facebook,it-IT,Gruppi (Groups) di Facebook,ja-JP,Facebook グループ,ko-KR,Facebook 그룹,pt-BR,Grupos do Facebook,es-ES,Grupos de Facebookzh-CN,可让用户在 Facebook 社区内创建、修改以及加入某个群的 Facebook 功能,zh-TW,可讓使用者在 Facebook 社群內建立、修改以及加入某個群組的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, eine Gruppe innerhalb der Facebook-Community zu erstellen\\, zu ändern oder einer solchen beizutreten,en-US,Facebook function that enables a user to create\\, modify or join a group within the Facebook community,fr-FR,Fonction de Facebook qui permet aux utilisateurs de créer\\, modifier ou rejoindre un groupe au sein de la communauté Facebook,it-IT,La funzione di Facebook che consente a un utente di creare o entrare a far parte di un gruppo nell’ambito della comunità di Facebook,ja-JP,ユーザーが Facebook コミュニティ内でグループをクリエート、変更、または、それに参加できる Facebook の機能,ko-KR,사용자가 Facebook 커뮤니티 내에서 그룹을 생성\\, 수정 또는 참여할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a criar\\, modificar ou participar de um grupo na comunidade do Facebook,es-ES,Función de Facebook que le permite al usuario crear\\, modificar o unirse a un grupo dentro de la comunidad de Facebook.zh-CN,Facebook 群,zh-TW,Facebook 社團,de-DE,Facebook-Gruppen,en-US,Facebook Groups,fr-FR,Groupes Facebook,it-IT,Gruppi (Groups) di Facebook,ja-JP,Facebook グループ,ko-KR,Facebook 그룹,pt-BR,Grupos do Facebook,es-ES,Grupos de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f 7532 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Twitter 发布,zh-TW,Twitter 發文,de-DE,Twitter-Posting,en-US,Twitter Posting,fr-FR,Publication Twitter,it-IT,Pubblicazione (Post) in Twitter,ja-JP,Twitter ポスティング,ko-KR,Twitter 포스팅,pt-BR,Postagem no Twitter,es-ES,Publicaciones de Twitterzh-CN,可让用户发布更新的 Twitter 功能,zh-TW,可讓使用者發佈更新的 Twitter 功能,de-DE,Twitter-Funktion\\, die es einem Benutzer ermöglicht\\, ein Update zu posten,en-US,Twitter function that enables a user to post an update,fr-FR,Fonction de Twitter qui permet aux utilisateurs de publier une mise à jour,it-IT,La funzione di Twitter che consente a un utente di pubblicare un aggiornamento,ja-JP,ユーザーがアップデートをポスティングできる Twitter の機能,ko-KR,사용자가 업데이트를 포스팅할 수 있는 Twitter 기능입니다.,pt-BR,Função do Twitter que habilita um usuário a postar uma atualização,es-ES,Función de Twitter que le permite al usuario publicar una actualización.zh-CN,Twitter 发布,zh-TW,Twitter 發文,de-DE,Twitter-Posting,en-US,Twitter Posting,fr-FR,Publication Twitter,it-IT,Pubblicazione (Post) in Twitter,ja-JP,Twitter ポスティング,ko-KR,Twitter 포스팅,pt-BR,Postagem no Twitter,es-ES,Publicaciones de TwitterCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Twitter,zh-TW,社群網路控制項 - Twitter,de-DE,Soziale Web-Kontrollen - Twitter,en-US,Social Web Controls - Twitter,fr-FR,Contrôles du Web social - Twitter,it-IT,Controllo genitori (Parental Control) del Social Web - Twitter,ja-JP,ソーシャル ウェブ コントロール - Twitter,ko-KR,소셜 웹 컨트롤 - Twitter,pt-BR,Controles da Web Social - Twitter,es-ES,Controles de la web social - Twitter f 7533 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Twitter 邮件,zh-TW,Twitter 郵件,de-DE,Twitter-Mail,en-US,Twitter Mail,fr-FR,Courrier Twitter,it-IT,Posta (Mail) di Twitter,ja-JP,Twitter メール,ko-KR,Twitter 메일,pt-BR,Email do Twitter,es-ES,Correo de Twitterzh-CN,可让用户在 Twitter 社区内发送电子邮件的 Twitter 功能,zh-TW,可讓使用者在 Twitter 社群內傳送電子郵件的 Twitter 功能,de-DE,Twitter-Funktion\\, die es einem Benutzer ermöglicht\\, eine E-Mail innerhalb der Twitter-Community zu versenden,en-US,Twitter function that enables a user to send an email within the Twitter community,fr-FR,Fonction de Twitter qui permet aux utilisateurs d'envoyer un e-mail au sein de la communauté Twitter ,it-IT,La funzione di Twitter che consente a un utente di inviare una e-mail nell’ambito della comunità di Twitter,ja-JP,ユーザーがTwitter コミュニティ内で電子メールを送ることができるTwitter の機能,ko-KR,사용자가 Twitter 커뮤니티 내에서 이메일을 전송할 수 있는 Twitter 기능입니다.,pt-BR,Função do Twitter que habilita um usuário a enviar um email na comunidade do Twitter,es-ES,Función de Twitter que le permite al usuario enviar un correo electrónico dentro de la comunidad de Twitter.zh-CN,Twitter 邮件,zh-TW,Twitter 郵件,de-DE,Twitter-Mail,en-US,Twitter Mail,fr-FR,Courrier Twitter,it-IT,Posta (Mail) di Twitter,ja-JP,Twitter メール,ko-KR,Twitter 메일,pt-BR,Email do Twitter,es-ES,Correo de TwitterCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Twitter,zh-TW,社群網路控制項 - Twitter,de-DE,Soziale Web-Kontrollen - Twitter,en-US,Social Web Controls - Twitter,fr-FR,Contrôles du Web social - Twitter,it-IT,Controllo genitori (Parental Control) del Social Web - Twitter,ja-JP,ソーシャル ウェブ コントロール - Twitter,ko-KR,소셜 웹 컨트롤 - Twitter,pt-BR,Controles da Web Social - Twitter,es-ES,Controles de la web social - Twitter f 7534 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Twitter 追踪,zh-TW,Twitter 追蹤,de-DE,Twitter Follow,en-US,Twitter Follow,fr-FR,Suivi Twitter,it-IT,Pulsante Segui (Follow) di Twitter,ja-JP,Twitter フォロー,ko-KR,Twitter 팔로우,pt-BR,Seguidores no Twitter,es-ES,Contactos de Twitterzh-CN,可让用户添加链接的 Twitter 功能,zh-TW,可讓使用者新增連結的 Twitter 功能,de-DE,Twitter-Funktion\\, die es einem Benutzer ermöglicht\\, eine Verbindung hinzuzufügen,en-US,Twitter function that enables a user to add a connection,fr-FR,Fonction de Twitter qui permet aux utilisateurs d'ajouter une relation à leurs amis,it-IT,La funzione di LinkedIn che consente a un utente di aggiungere un collegamento ,ja-JP,ユーザーがコネクションを追加できる Twitter の機能,ko-KR,사용자가 연결을 추가할 수 있는 Twitter 기능입니다.,pt-BR,Função do Twitter que habilita um usuário a adicionar uma conexão,es-ES,Función de Twitter que le permite a un usuario agregar un contacto.zh-CN,Twitter 追踪,zh-TW,Twitter 追蹤,de-DE,Twitter Follow,en-US,Twitter Follow,fr-FR,Suivi Twitter,it-IT,Pulsante Segui (Follow) di Twitter,ja-JP,Twitter フォロー,ko-KR,Twitter 팔로우,pt-BR,Seguidores no Twitter,es-ES,Contactos de TwitterCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Twitter,zh-TW,社群網路控制項 - Twitter,de-DE,Soziale Web-Kontrollen - Twitter,en-US,Social Web Controls - Twitter,fr-FR,Contrôles du Web social - Twitter,it-IT,Controllo genitori (Parental Control) del Social Web - Twitter,ja-JP,ソーシャル ウェブ コントロール - Twitter,ko-KR,소셜 웹 컨트롤 - Twitter,pt-BR,Controles da Web Social - Twitter,es-ES,Controles de la web social - Twitter f 7535 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,YouTube 分享,zh-TW,YouTube 分享,de-DE,YouTube-Austausch,en-US,YouTube Sharing,fr-FR,Partage YouTube,it-IT,Condivisione (Share) in YouTube,ja-JP,YouTube シェアリング,ko-KR,YouTube 공유,pt-BR,Compartilhamento do YouTube,es-ES,Intercambio de YouTubezh-CN,可让用户在 YouTube 社区内和社区外分享视频的 YouTube 功能,zh-TW,可讓使用者在 YouTube 社群內和社群外分享影片的 YouTube 功能,de-DE,YouTube-Funktion\\, die es einem Benutzer ermöglicht\\, ein Video innerhalb und außerhalb der YouTube-Community verfügbar zu machen,en-US,YouTube function that enables a user to share a video within and outside of the YouTube community,fr-FR,Fonction de YouTube qui permet aux utilisateurs de partager une vidéo au sein ou hors de la communauté YouTube,it-IT,La funzione di YouTube che consente a un utente di condividere un video nell’ambito e al di fuori della comunità di YouTube,ja-JP,ユーザーがYou Tubeコミュニティの内外でビデオを共有できる YouTube の機能,ko-KR,사용자가 YouTube 커뮤니티 내부 및 외부의 동영상을 공유할 수 있는 YouTube 기능입니다.,pt-BR,Função do YouTube que habilita um usuário a compartilhar um vídeo dentro e fora da comunidade do YouTube ,es-ES,Función de YouTube que le permite al usuario compartir un video dentro y fuera de la comunidad de YouTube.zh-CN,YouTube 分享,zh-TW,YouTube 分享,de-DE,YouTube-Austausch,en-US,YouTube Sharing,fr-FR,Partage YouTube,it-IT,Condivisione (Share) in YouTube,ja-JP,YouTube シェアリング,ko-KR,YouTube 공유,pt-BR,Compartilhamento do YouTube,es-ES,Intercambio de YouTubeCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - YouTube,zh-TW,社群網路控制項 - YouTube,de-DE,Soziale Web-Kontrollen - YouTube,en-US,Social Web Controls - YouTube,fr-FR,Contrôles du Web social - YouTube,it-IT,Controllo genitori (Parental Control) del Social Web - YouTube,ja-JP,ソーシャル ウェブ コントロール - You Tube,ko-KR,소셜 웹 컨트롤 - YouTube,pt-BR,Controles da Web Social - YouTube,es-ES,Controles de la web social - YouTube f V7536 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Facebook 游戏,zh-TW,Facebook 遊戲,de-DE,Facebook-Spiele,en-US,Facebook Games,fr-FR,Jeux Facebook,it-IT,Giochi (Games) di Facebook,ja-JP,Facebook ゲーム,ko-KR,Facebook 게임,pt-BR,Jogos do Facebook,es-ES,Juegos de Facebookzh-CN,可让用户访问游戏或玩游戏的 Facebook 功能,zh-TW,可讓使用者造訪或玩遊戲的 Facebook 功能,de-DE,Facebook-Funktion\\, die es einem Benutzer ermöglicht\\, auf ein Spiel zuzugreifen bzw. ein Spiel zu spielen,en-US,Facebook function that enables a user to access or play a game,fr-FR,Fonction de Facebook qui permet aux utilisateurs d'accéder à un jeu ou de l'utiliser,it-IT,La funzione di Facebook che consente a un utente di accedere o di giocare a un gioco,ja-JP,ユーザーがゲームにアクセスしたり、プレーできる Facebook の機能,ko-KR,사용자가 게임에 액세스하거나 플레이할 수 있는 Facebook 기능입니다.,pt-BR,Função do Facebook que habilita um usuário a acessar ou jogar um jogo,es-ES,Función de Facebook que le permite al usuario tener acceso a o jugar un juego.zh-CN,Facebook 游戏,zh-TW,Facebook 遊戲,de-DE,Facebook-Spiele,en-US,Facebook Games,fr-FR,Jeux Facebook,it-IT,Giochi (Games) di Facebook,ja-JP,Facebook ゲーム,ko-KR,Facebook 게임,pt-BR,Jogos do Facebook,es-ES,Juegos de FacebookCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - Facebook,zh-TW,社群網路控制項 - Facebook,de-DE,Soziale Web-Kontrollen - Facebook,en-US,Social Web Controls - Facebook,fr-FR,Contrôles du Web social - Facebook,it-IT,Controllo genitori (Parental Control) del Social Web - Facebook,ja-JP,ソーシャル ウェブ コントロール - Facebook,ko-KR,소셜 웹 컨트롤 - Facebook,pt-BR,Controles da Web Social - Facebook,es-ES,Controles de la web social - Facebook f 7537 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,Craigslist 发布,zh-TW,Craigslist 發文,de-DE,Craigslist-Posting,en-US,Craigslist Posting,fr-FR,Publication Craigslist,it-IT,Pubblicazione (Post) in Craigslist,ja-JP,Craigslist ポスティング,ko-KR,Craigslist 포스팅,pt-BR,Postagem na Craigslist ,es-ES,Publicaciones de Craigslistzh-CN,可让用户创建分类广告的 Craigslist 功能,zh-TW,可讓使用者建立分類廣告的 Craigslist 功能,de-DE,Craigslist-Funktion\\, die es einem Benutzer ermöglicht\\, eine Kleinanzeige zu erstellen,en-US,Craigslist function that enables a user to create a classified ad,fr-FR,Fonction de Craigslist qui permet aux utilisateurs de publier une petite annonce,it-IT,La funzione di Craigslist che consente a un utente di creare un'inserzione pubblicitaria,ja-JP,ユーザーがクラシファイド アドを作成できる Craigslist の機能,ko-KR,사용자가 Craigslist 광고를 생성할 수 있는 Craigslist 기능입니다.,pt-BR,Função da Craigslist que habilita um usuário a criar um anúncio classificado,es-ES,Función de Craigslist que le permite al usuario crear un anuncio clasificado.zh-CN,Craigslist 发布,zh-TW,Craigslist 發文,de-DE,Craigslist-Posting,en-US,Craigslist Posting,fr-FR,Publication Craigslist,it-IT,Pubblicazione (Post) in Craigslist,ja-JP,Craigslist ポスティング,ko-KR,Craigslist 포스팅,pt-BR,Postagem na Craigslist ,es-ES,Publicaciones de CraigslistCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - 各种网站,zh-TW,社群網路控制項 - 各種網站,de-DE,Soziale Web-Kontrollen - Verschiedene,en-US,Social Web Controls - Various,fr-FR,Contrôles du Web social - Divers,it-IT,Controllo genitori (Parental Control) del Social Web - Vari,ja-JP,ソーシャル ウェブ コントロール - その他,ko-KR,소셜 웹 컨트롤 - 기타,pt-BR,Controles da Web Social - Diversos,es-ES,Controles de la web social - Varios f 7538 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,WordPress 发布,zh-TW,WordPress 發文,de-DE,WordPress-Posting,en-US,WordPress Posting,fr-FR,Publication WordPress,it-IT,Pubblicazione (Post) in WordPress,ja-JP,WordPress ポスティング,ko-KR,WordPress 포스팅,pt-BR,Postagem no WordPress ,es-ES,Publicaciones de WordPresszh-CN,可让用户发布博客内容的 WordPress 功能,zh-TW,可讓使用者發佈部落格內容的 WordPress 功能,de-DE,WordPress-Funktion\\, die es einem Benutzer ermöglicht\\, einen Blogeintrag zu veröffentlichen,en-US,WordPress function that enables a user to publish a blog entry,fr-FR,Fonction de WordPress qui permet aux utilisateurs de publier une entrée de blog,it-IT,La funzione di WordPress che consente a un utente di inserire un testo in un blog,ja-JP,ユーザーがブログ エントリーを公開できる WordPress の機能,ko-KR,사용자가 블로그를 게시할 수 있는 WordPress 기능입니다.,pt-BR,Função do WordPress que habilita um usuário a publicar uma entrada de blog,es-ES,Función de WordPress que le permite al usuario publicar una entrada de blog.zh-CN,WordPress 发布,zh-TW,WordPress 發文,de-DE,WordPress-Posting,en-US,WordPress Posting,fr-FR,Publication WordPress,it-IT,Pubblicazione (Post) in WordPress,ja-JP,WordPress ポスティング,ko-KR,WordPress 포스팅,pt-BR,Postagem no WordPress ,es-ES,Publicaciones de WordPressCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - 各种网站,zh-TW,社群網路控制項 - 各種網站,de-DE,Soziale Web-Kontrollen - Verschiedene,en-US,Social Web Controls - Various,fr-FR,Contrôles du Web social - Divers,it-IT,Controllo genitori (Parental Control) del Social Web - Vari,ja-JP,ソーシャル ウェブ コントロール - その他,ko-KR,소셜 웹 컨트롤 - 기타,pt-BR,Controles da Web Social - Diversos,es-ES,Controles de la web social - Varios f 7539 2011-09-15 01:00:22.379-04 Websense Category:/0/1/3/en-US,Websense/zh-CN,WordPress 评论,zh-TW,WordPress 回應,de-DE,WordPress-Kommentare,en-US,WordPress Commenting,fr-FR,Commentaires WordPress,it-IT,Commenti (Comment) in WordPress,ja-JP,WordPress コメント,ko-KR,WordPress 커멘팅,pt-BR,Comentários no WordPress ,es-ES,Comentarios de WordPresszh-CN,可让用户发表评论的 WordPress 功能,zh-TW,可讓使用者發表評論的 WordPress 功能,de-DE,WordPress-Funktion\\, die es einem Benutzer ermöglicht\\, einen Kommentar zu hinterlassen,en-US,WordPress function that enables a user to comment,fr-FR,Fonction de WordPress qui permet aux utilisateurs de publier un commentaire,it-IT,La funzione di WordPress che consente a un utente di inserire un commento,ja-JP,ユーザーがコメントできる WordPress の機能,ko-KR,사용자가 댓글을 올릴 수 있는 WordPress 기능입니다.,pt-BR,Função do WordPress que habilita um usuário a comentar ,es-ES,Función de WordPress que le permite al usuario hacer un comentario.zh-CN,WordPress 评论,zh-TW,WordPress 回應,de-DE,WordPress-Kommentare,en-US,WordPress Commenting,fr-FR,Commentaires WordPress,it-IT,Commenti (Comment) in WordPress,ja-JP,WordPress コメント,ko-KR,WordPress 커멘팅,pt-BR,Comentários no WordPress ,es-ES,Comentarios de WordPressCategory:/0/1/3/en-US,Websense/zh-CN,社交网站控件 - 各种网站,zh-TW,社群網路控制項 - 各種網站,de-DE,Soziale Web-Kontrollen - Verschiedene,en-US,Social Web Controls - Various,fr-FR,Contrôles du Web social - Divers,it-IT,Controllo genitori (Parental Control) del Social Web - Vari,ja-JP,ソーシャル ウェブ コントロール - その他,ko-KR,소셜 웹 컨트롤 - 기타,pt-BR,Controles da Web Social - Diversos,es-ES,Controles de la web social - Varios f 47540 2011-09-15 01:00:22.379-04 Websense Protocol Identifier:/0/1/3/en-US,Websense/zh-CN,腾讯 QQ (请参阅知识库),zh-TW,騰訊 QQ (請參閱知識庫),de-DE,Tencent QQ (näheres in der Knowledge Base),en-US,Tencent QQ (see the Knowledge Base),fr-FR,Tencent QQ (consultez la base de connaissances),it-IT,Tencent QQ (vedere la Knowledge Base),ja-JP,Tencent QQ (Knowledge Base を参照してください),ko-KR,Tencent QQ (Knowledge Base를 참조하십시오.),pt-BR,Tencent QQ (consulte a Knowledge Base),es-ES,Tencent QQ (ver Knowledge Base)/tcp61.144.238.149ALL f 7541 2011-09-15 01:00:22.379-04 Websense Role:/0/1/3/en-US,WebsenseRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,安全风险,zh-TW,安全風險,de-DE,Sicherheitsrisiko,en-US,Security Risk,fr-FR,Risques de sécurité,it-IT,Rischio per la Sicurezza,ja-JP,セキュリティ・リスク,ko-KR,보안 위험,pt-BR,Risco de segurança,es-ES,Riesgo de seguridadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,网络带宽损失,zh-TW,網路頻寬損失,de-DE,Minderung der Netzwerkbandbreite,en-US,Network Bandwidth Loss,fr-FR,Bande passante réseau perdue,it-IT,Perdita di Banda in Rete,ja-JP,ネットワーク帯域幅損失,ko-KR,네트워크 대역폭 손실,pt-BR,Perda de banda larga de rede,es-ES,Pérdida de ancho de banda de redRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,生产率损失,zh-TW,生產率損失,de-DE,Produktivitätsverlust,en-US,Productivity Loss,fr-FR,Perte de productivité,it-IT,Perdita di Produttività,ja-JP,生産性の損失,ko-KR,생산성 손실,pt-BR,Perda de produtividade,es-ES,Pérdida de productividadRisk Class:/0/1/3/en-US,Websense/zh-CN,商业用途,zh-TW,商業用途,de-DE,Gewerbliche Nutzung,en-US,Business Usage,fr-FR,Utilisation professionnelle,it-IT,Utilizzo professionale,ja-JP,業務用,ko-KR,업무용,pt-BR,Uso comercial,es-ES,Uso relacionado con el trabajoRisk Class:/0/1/3/en-US,Websense/zh-CN,法律责任,zh-TW,法律責任,de-DE,Gesetzliche Haftung,en-US,Legal Liability,fr-FR,Responsabilité Légale ,it-IT,Responsabilità Legale ,ja-JP,法的責任,ko-KR,배상책임,pt-BR,Responsabilidade legal,es-ES,Responsabilidad legalen-US,Websenseen-US,Websense01023 f (7542 2011-09-15 01:00:22.379-04 Websense Category Filter:/0/1/3/en-US,Websense/zh-CN,基本,zh-TW,基本,de-DE,Basis,en-US,Basic,fr-FR,De base,it-IT,Base,ja-JP,基本,ko-KR,기본,pt-BR,Básico,es-ES,BásicoCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Permitzh-CN,该过滤器仅初始阻止对一般限制类别的访问。 在升级环境中,查看 Upgrading User Quick Start 教程了解详细信息。,zh-TW,此篩選器起初僅會封鎖對於常被限制之類別的存取。 在升級的環境中,請參閱「升級使用者快速入門」教學課程,以取得更多資訊。,de-DE,In seiner Ausgangskonfiguration sperrt dieser Filter nur den Zugriff auf Kategorien mit allgemeiner Zugriffsbeschränkung. Weitere Informationen zu Upgrade-Umgebungen enthält der Lerntext für den Schnelleinstieg für Upgrade-Benutzer ("Upgrading User Quick Start").,en-US,This filter initially blocks access only to commonly-restricted categories. In upgrade environments\\, see the Upgrading User Quick Start tutorial for more information.,fr-FR,Ce filtre bloque au départ l'accès uniquement à des catégories généralement restreintes. Dans des environnements de mise à niveau\\, reportez-vous au tutoriel de démarrage rapide sur la mise à niveau pour plus d'informations.,it-IT,Il filtro blocca inizialmente l'accesso solo alle categorie generalmente limitate. Per maggiori informazioni\\, in ambienti di aggiornamento\\, consultare l'esercitazione di riferimento rapido per l'aggiornamento dell'utente.,ja-JP,このフィルタは初めに、一般的に制限されるカテゴリへのアクセスのみをブロックします。 アップグレード環境では、詳細についてユーザ アップグレード クイック スタート チュートリアルをご覧ください。,ko-KR,이 필터는 기본적으로 공통적으로 제한되는 카테고리들에 대해서만 액세스를 차단합니다. 업그레이드 환경에서\\, 더 자세한 정보는 Upgrading User Quick Start Tutorial을 보십시오.,pt-BR,Inicialmente\\, este filtro bloqueia o acesso às categorias que normalmente são restritas. Em ambientes de atualização\\, consulte o tutorial Upgrading User Quick Start (Atualizando a introdução rápida do usuário) para obter mais informações.,es-ES,Este filtro bloquea inicialmente el acceso sólo a categorías generalmente restringidas. En entornos de actualización\\, consulte el tutorial de inicio rápido para usuarios existentes para obtener más información.Category Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,Permitzh-CN,基本,zh-TW,基本,de-DE,Basis,en-US,Basic,fr-FR,De base,it-IT,Base,ja-JP,基本,ko-KR,기본,pt-BR,Básico,es-ES,Básico f N7543 2011-09-15 01:00:22.379-04 Websense Category Filter:/0/1/3/en-US,Websense/zh-CN,默认,zh-TW,預設,de-DE,Standard,en-US,Default,fr-FR,Par défaut,it-IT,Predefinito,ja-JP,デフォルト,ko-KR,시스템 기본,pt-BR,Padrão,es-ES,PredeterminadoCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,ContinueCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,Permitzh-CN,提供一个有细微差别的方法进行过滤,为不同类别应用允许、阻止和确认操作。,zh-TW,提供精細的篩選方式,將「允許」、「封鎖」、「確認」及「配額」動作套用到不同的類別。,de-DE,Bietet einen gestaffelten Ansatz für die Filterfunktion und wendet die Aktionen "Zulassen"\\, "Sperren"\\, "Bestätigen" und "Quote" auf unterschiedliche Kategorien an.,en-US,Provides a nuanced approach to filtering\\, applying the Permit\\, Block\\, Confirm\\, and Quota actions to different categories.,fr-FR,Fournit une approche nuancée du filtrage\\, en appliquant les actions Autoriser\\, Bloquer\\, Confirmer et Contingent à différentes catégories.,it-IT,Consente un approccio non completamente definito al filtraggio\\, applicando le operazioni Autorizza\\, Blocca e Conferma a categorie differenti.,ja-JP,フィルタリングや許可、ブロック、確認、割り当て時間などの各アクションを異なるカテゴリに適用する際、微妙な違いをふまえた上で使い分けます。,ko-KR,각각 다른 카테고리에 허용\\, 차단\\, 확인 및 시간 할당 조치를 적용하는 필터링으로 조금씩 다르게 접근하게 해줍니다.,pt-BR,Fornece uma abordagem variada para filtrar e para aplicar as ações Permitir\\, Bloquear\\, Confirmar e Cota a diferentes categorias.,es-ES,Proporciona un enfoque aproximado al filtrado\\, que aplica las acciones Permitir\\, Bloquear\\, Confirmar y Cuota a las diferentes categorías.Category Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,PermitCategory Action:/0/1/3/en-US,Websense/en-US,BlockCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,QuotaCategory Action:/0/1/3/en-US,Websense/en-US,Quota