From c2d53371687881cd47dd6175baab9e3b38fab656 Mon Sep 17 00:00:00 2001 From: ad044 Date: Fri, 19 Mar 2021 15:35:46 +0400 Subject: [PATCH] implemented L1, R1 and SQUARE button functionality --- src/components/MainScene/HUD.tsx | 199 +- .../AudioVisualizer/AudioVisualizer.tsx | 5 +- .../TextRenderer/GreenTextRenderer.tsx | 14 +- src/core/eventTemplates.ts | 14 +- .../input-handlers/handleMainSceneInput.ts | 45 +- src/helpers/node-helpers.ts | 65 + src/resources/fonts/medium_font.json | 3 +- src/resources/node_huds.json | 156 +- src/resources/site_a.json | 2260 +++++++++++++++++ src/resources/site_b.json | 1315 ++++++++++ src/scenes/MediaScene.tsx | 2 +- src/store.ts | 7 +- src/types/types.ts | 11 +- src/utils/getKeyPress.ts | 24 +- 14 files changed, 3955 insertions(+), 165 deletions(-) diff --git a/src/components/MainScene/HUD.tsx b/src/components/MainScene/HUD.tsx index b8023b2..54a6914 100644 --- a/src/components/MainScene/HUD.tsx +++ b/src/components/MainScene/HUD.tsx @@ -1,4 +1,4 @@ -import React, { memo, useEffect, useRef } from "react"; +import React, { createRef, memo, useEffect, useRef } from "react"; import { useFrame, useLoader } from "react-three-fiber"; import * as THREE from "three"; import bigHud from "../../static/sprites/main/big_hud.png"; @@ -11,6 +11,8 @@ import usePrevious from "../../hooks/usePrevious"; import { getNodeHud } from "../../helpers/node-helpers"; import { HUDData } from "../../types/types"; +// the hud is an imperative mess. unfortunately this seems to perform by far the best out of all the approaches i've tried. + const HUD = memo(() => { const activeRef = useRef(true); const currentHudRef = useRef( @@ -19,20 +21,36 @@ const HUD = memo(() => { const activeNodeMatrixIndices = useStore( (state) => state.activeNode.matrixIndices ); + const activeNode = useStore((state) => state.activeNode); const siteRotY = useStore((state) => state.siteRot[1]); const activeLevel = useStore((state) => state.activeLevel); const subscene = useStore((state) => state.mainSubscene); const scene = useStore((state) => state.currentScene); - const prevData = usePrevious({ siteRotY, activeLevel, subscene, scene }); + const protocolLinesToggled = useStore((state) => state.protocolLinesToggled); + const prevData = usePrevious({ + siteRotY, + activeLevel, + subscene, + scene, + protocolLinesToggled, + }); + + const longHudRef = useRef(); + const boringHudRef = useRef(); + const bigHudRef = useRef(); + const nodeTitleRef = useRef(); + const protocolLine1Ref = useRef(); + const protocolLine2Ref = useRef(); + const protocolLine3Ref = useRef(); + + const protocolLineTitleRefs = useRef([ + useRef(), + useRef(), + useRef(), + ]); - // this part is imperative because it performs a lot better than having a toggleable spring. useFrame(() => { - if ( - longHudRef.current && - bigHudRef.current && - boringHudRef.current && - greenTextRef.current - ) { + if (longHudRef.current && bigHudRef.current && boringHudRef.current) { const hud = currentHudRef.current; longHudRef.current.position.x = lerp( @@ -52,13 +70,6 @@ const HUD = memo(() => { activeRef.current ? hud.big.position[0] : hud.big.initial_position[0], 0.12 ); - greenTextRef.current.position.x = lerp( - greenTextRef.current.position.x, - activeRef.current - ? hud.medium_text.position[0] - : hud.medium_text.initial_position[0], - 0.12 - ); } }); @@ -67,12 +78,30 @@ const HUD = memo(() => { longHudRef.current!.scale.x = -Math.abs(longHudRef.current!.scale.x); boringHudRef.current!.scale.x = -Math.abs(boringHudRef.current!.scale.x); bigHudRef.current!.scale.x = -Math.abs(bigHudRef.current!.scale.x); + nodeTitleRef.current!.scale.x = -Math.abs(nodeTitleRef.current!.scale.x); + nodeTitleRef.current!.position.x = 0.2; + + if (protocolLinesToggled) { + protocolLineTitleRefs.current.forEach((ref) => { + ref.current!.scale.x = -Math.abs(ref.current!.scale.x); + ref.current!.position.x = 0.2; + }); + } }; const unMirror = () => { longHudRef.current!.scale.x = Math.abs(longHudRef.current!.scale.x); boringHudRef.current!.scale.x = Math.abs(boringHudRef.current!.scale.x); bigHudRef.current!.scale.x = Math.abs(bigHudRef.current!.scale.x); + nodeTitleRef.current!.scale.x = Math.abs(nodeTitleRef.current!.scale.x); + nodeTitleRef.current!.position.x = -0.2; + + if (protocolLinesToggled) { + protocolLineTitleRefs.current.forEach((ref) => { + ref.current!.scale.x = Math.abs(ref.current!.scale.x); + ref.current!.position.x = -0.2; + }); + } }; const setPos = (hud: HUDData, pos: string) => { @@ -89,13 +118,21 @@ const HUD = memo(() => { bigHudRef.current!.position.set( ...(hud.big[pos as keyof typeof hud.big] as [number, number, number]) ); - greenTextRef.current!.position.set( - ...(hud.medium_text[pos as keyof typeof hud.medium_text] as [ - number, - number, - number - ]) - ); + if ( + protocolLine1Ref.current && + protocolLine2Ref.current && + protocolLine3Ref.current + ) { + protocolLine1Ref.current.position.set( + ...(hud.big.protocol_line_positions[0] as [number, number, number]) + ); + protocolLine2Ref.current.position.set( + ...(hud.big.protocol_line_positions[1] as [number, number, number]) + ); + protocolLine3Ref.current.position.set( + ...(hud.big.protocol_line_positions[2] as [number, number, number]) + ); + } }; if (activeRef.current !== undefined) { @@ -103,7 +140,8 @@ const HUD = memo(() => { if ( !(scene === "main" && prevData?.scene === "main") || (subscene === "site" && prevData?.subscene === "pause") || - subscene === "pause" + subscene === "pause" || + protocolLinesToggled !== prevData?.protocolLinesToggled ) { // set to final pos instantly setPos(hud, "position"); @@ -142,28 +180,19 @@ const HUD = memo(() => { prevData?.scene, prevData?.siteRotY, prevData?.subscene, + prevData?.protocolLinesToggled, scene, siteRotY, subscene, + protocolLinesToggled, ]); - - const longHudRef = useRef(); - const boringHudRef = useRef(); - const bigHudRef = useRef(); - const greenTextRef = useRef(); - const longHudTex = useLoader(THREE.TextureLoader, longHud); const boringHudTex = useLoader(THREE.TextureLoader, boringHud); const bigHudTex = useLoader(THREE.TextureLoader, bigHud); return ( - + { depthTest={false} /> - + { depthTest={false} /> - - - - - - + + + + + + + + + {protocolLinesToggled && ( + <> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + )} ); diff --git a/src/components/MediaScene/AudioVisualizer/AudioVisualizer.tsx b/src/components/MediaScene/AudioVisualizer/AudioVisualizer.tsx index 1054f72..fb101f6 100644 --- a/src/components/MediaScene/AudioVisualizer/AudioVisualizer.tsx +++ b/src/components/MediaScene/AudioVisualizer/AudioVisualizer.tsx @@ -22,10 +22,7 @@ const AudioVisualizer = memo(() => { const frequencyData = audioAnalyser.getFrequencyData(); columnRefs.forEach((refArray, idx) => { - const ref1 = refArray[0]; - const ref2 = refArray[1]; - const ref3 = refArray[2]; - const ref4 = refArray[3]; + const [ref1, ref2, ref3, ref4] = [...refArray]; const currentFrequency = frequencyData[16 * idx]; diff --git a/src/components/TextRenderer/GreenTextRenderer.tsx b/src/components/TextRenderer/GreenTextRenderer.tsx index b40e9f6..88c3293 100644 --- a/src/components/TextRenderer/GreenTextRenderer.tsx +++ b/src/components/TextRenderer/GreenTextRenderer.tsx @@ -4,16 +4,8 @@ import greenFont from "../../static/sprites/fonts/white_and_green_texture.png"; import medium_font_json from "../../resources/fonts/medium_font.json"; import { a } from "@react-spring/three"; import React, { memo, useMemo } from "react"; -import { useStore } from "../../store"; - -const GreenTextRenderer = memo(() => { - const textToRender = useStore((state) => - (state.currentScene === "main" - ? state.activeNode.title - : state.activeNode.node_name - ).split("") - ); +const GreenTextRenderer = memo((props: { textToRender: string[] }) => { const colorTexture = useLoader(THREE.TextureLoader, greenFont); const getLineYOffset = (letter: string) => { @@ -69,7 +61,7 @@ const GreenTextRenderer = memo(() => { return geometry; }; - return textToRender.map((letter, idx) => { + return props.textToRender.map((letter, idx) => { const letterData = medium_font_json.glyphs[letter as keyof typeof medium_font_json.glyphs]; const geom = getGeom(letter, letterData); @@ -92,7 +84,7 @@ const GreenTextRenderer = memo(() => { ); }); - }, [colorTexture, textToRender]); + }, [colorTexture, props.textToRender]); return <>{text}; }); diff --git a/src/core/eventTemplates.ts b/src/core/eventTemplates.ts index f80eb03..3d886e0 100644 --- a/src/core/eventTemplates.ts +++ b/src/core/eventTemplates.ts @@ -243,7 +243,6 @@ export const pauseGame = (calculatedState: { siteRot: number[] }) => ({ { mutation: { lainMoveState: "rip_middle_ring", - pauseExitAnimation: false, mainSubscene: "pause", inputCooldown: -1, }, @@ -785,6 +784,19 @@ export const playLainIdleAnim = (calculatedState: { ], }); +export const setProtocolLines = (calculatedState: { + protocolLinesToggled: boolean; +}) => ({ + state: [ + { + mutation: { + protocolLinesToggled: calculatedState.protocolLinesToggled, + inputCooldown: 0, + }, + }, + ], +}); + export const resetInputCooldown = { state: [{ mutation: { inputCooldown: 0 } }], }; diff --git a/src/core/input-handlers/handleMainSceneInput.ts b/src/core/input-handlers/handleMainSceneInput.ts index dce8299..b4471d3 100644 --- a/src/core/input-handlers/handleMainSceneInput.ts +++ b/src/core/input-handlers/handleMainSceneInput.ts @@ -2,6 +2,7 @@ import { findNode, getNodeById, isNodeVisible, + moveHorizontalAndFindNode, nodeToScene, unknownNodeTemplate, } from "../../helpers/node-helpers"; @@ -28,6 +29,7 @@ import { ripNode, saveGame, selectLevel, + setProtocolLines, showAbout, showPermissionDenied, siteMoveHorizontal, @@ -56,6 +58,7 @@ const handleMainSceneInput = ( siteSaveState, wordNotFound, canLainMove, + protocolLinesToggled, } = mainSceneContext; if (promptVisible) { @@ -176,7 +179,6 @@ const handleMainSceneInput = ( if (nodeData.didMove) { if (!canLainMove) return resetInputCooldown; - return siteMoveVertical({ lainMoveAnimation: lainMoveAnimation, activeLevel: newLevel, @@ -208,6 +210,46 @@ const handleMainSceneInput = ( case "TRIANGLE": if (!canLainMove) return resetInputCooldown; return pauseGame({ siteRot: [Math.PI / 2, siteRotY, 0] }); + case "L1": + case "R1": + const direction = keyPress === "L1" ? "left" : "right"; + + const nodeData = moveHorizontalAndFindNode( + activeNode, + direction, + level, + activeSite, + gameProgress + ); + + if (!nodeData) return resetInputCooldown; + + const lainMoveAnimation = `move_${direction}`; + const newSiteRot = [ + 0, + direction === "left" + ? siteRotY + Math.PI / 4 + : siteRotY - Math.PI / 4, + 0, + ]; + + const newNode = { + ...(nodeData.node !== "unknown" + ? getNodeById(nodeData.node, activeSite) + : unknownNodeTemplate), + matrixIndices: nodeData.matrixIndices, + }; + + if (!canLainMove) return resetInputCooldown; + return siteMoveHorizontal({ + lainMoveAnimation: lainMoveAnimation, + siteRot: newSiteRot, + activeNode: newNode, + }); + case "SQUARE": + return setProtocolLines({ + protocolLinesToggled: !protocolLinesToggled, + }); } break; case "level_selection": @@ -223,7 +265,6 @@ const handleMainSceneInput = ( break; case "CROSS": return exitLevelSelection; - case "CIRCLE": if (!canLainMove) return resetInputCooldown; diff --git a/src/helpers/node-helpers.ts b/src/helpers/node-helpers.ts index 53fd12f..a64f844 100644 --- a/src/helpers/node-helpers.ts +++ b/src/helpers/node-helpers.ts @@ -183,6 +183,66 @@ const move = (direction: string, [matrix, level]: [number, number]) => { return [matrix, level]; }; +export const moveHorizontalAndFindNode = ( + startingPoint: NodeData, + direction: string, + level: number, + activeSite: ActiveSite, + gameProgress: GameProgress +) => { + const funcs: { + [key: string]: ([row, col]: [number, number]) => Generator; + } = { + left: ([r]: [number, number]) => nextPos_right([r, -1]), + right: ([r]: [number, number]) => nextPos_left([r, 4]), + }; + + if (startingPoint.matrixIndices) { + const nextPos = funcs[direction]; + + let { matrixIdx, colIdx, rowIdx } = { ...startingPoint.matrixIndices }; + + [matrixIdx] = move(direction, [matrixIdx, level]); + + const nodes = getVisibleNodesMatrix( + matrixIdx, + level, + activeSite, + gameProgress + ); + + for (const [r, c] of nextPos([rowIdx, colIdx])) { + const node = nodes[r][c]; + + if (node) + return { + node, + + matrixIndices: { + matrixIdx, + rowIdx: r, + colIdx: c, + }, + + didMove: true, + }; + } + + const nodeId = startingPoint.id; + if (nodeId === "") { + return { + node: "unknown", + matrixIndices: { + matrixIdx, + rowIdx: rowIdx, + colIdx: colIdx, + }, + didMove: true, + }; + } + } +}; + export const findNode = ( startingPoint: NodeData, direction: string, @@ -302,6 +362,11 @@ export const unknownNodeTemplate = { "2": "", "3": "", }, + protocol_lines: { + "1": "", + "2": "", + "3": "", + }, }; export const nodeToScene = (node: NodeData) => { diff --git a/src/resources/fonts/medium_font.json b/src/resources/fonts/medium_font.json index 2477560..12c97fd 100644 --- a/src/resources/fonts/medium_font.json +++ b/src/resources/fonts/medium_font.json @@ -81,6 +81,7 @@ "&": [80, 104, 8, 8, 0], "?": [88, 104, 8, 8, 0], "/": [96, 104, 8, 9, 0], - " ": [0, 0, 0, 0, 0, 0] + " ": [0, 0, 0, 0, 0, 0], + "_": [0, 0, 0, 0, 0, 0] } } diff --git a/src/resources/node_huds.json b/src/resources/node_huds.json index 219a284..dd4eadf 100644 --- a/src/resources/node_huds.json +++ b/src/resources/node_huds.json @@ -11,13 +11,14 @@ }, "big": { "position": [0.36, 0.13, -8.6], - "initial_position": [1.36, 0.13, -8.6] + "initial_position": [1.36, 0.13, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [-0.35, 0.23, -8.7], - "medium_text": { - "position": [0.18, 0.16, -8.7], - "initial_position": [1.18, 0.16, -8.7] - } + "big_text": [-0.35, 0.23, -8.7] }, "fg_hud_2": { "mirrored": 0, @@ -31,13 +32,14 @@ }, "big": { "position": [0.35, -0.12, -8.6], - "initial_position": [1.35, -0.12, -8.6] + "initial_position": [1.35, -0.12, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [-0.35, -0.05, -8.7], - "medium_text": { - "position": [0.18, -0.13, -8.7], - "initial_position": [1.18, -0.13, -8.7] - } + "big_text": [-0.35, -0.05, -8.7] }, "fg_hud_3": { "mirrored": 0, @@ -51,13 +53,14 @@ }, "big": { "position": [0.3, -0.28, -8.6], - "initial_position": [1.3, -0.28, -8.6] + "initial_position": [1.3, -0.28, -8.6], + "protocol_line_positions": [ + [0.03, 0.06, 0], + [0.06, 0.12, 0], + [0.09, 0.18, 0] + ] }, - "big_text": [-0.35, -0.32, -8.7], - "medium_text": { - "position": [0.12, -0.32, -8.7], - "initial_position": [1.12, -0.32, -8.7] - } + "big_text": [-0.35, -0.32, -8.7] }, "fg_hud_4": { "mirrored": 1, @@ -71,13 +74,14 @@ }, "big": { "position": [-0.35, 0.155, -8.6], - "initial_position": [-1.35, 0.155, -8.6] + "initial_position": [-1.35, 0.155, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [0.45, 0.265, -8.7], - "medium_text": { - "position": [-0.65, 0.18, -8.7], - "initial_position": [-1.65, 0.18, -8.7] - } + "big_text": [0.45, 0.265, -8.7] }, "fg_hud_5": { "mirrored": 1, @@ -91,13 +95,14 @@ }, "big": { "position": [-0.35, -0.12, -8.6], - "initial_position": [-1.35, -0.12, -8.6] + "initial_position": [-1.35, -0.12, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [0.45, -0.05, -8.7], - "medium_text": { - "position": [-0.65, -0.13, -8.7], - "initial_position": [-1.65, -0.13, -8.7] - } + "big_text": [0.45, -0.05, -8.7] }, "fg_hud_6": { "mirrored": 1, @@ -111,13 +116,14 @@ }, "big": { "position": [-0.25, -0.28, -8.6], - "initial_position": [-1.25, -0.28, -8.6] + "initial_position": [-1.25, -0.28, -8.6], + "protocol_line_positions": [ + [0.03, 0.06, 0], + [0.06, 0.12, 0], + [0.09, 0.18, 0] + ] }, - "big_text": [0.45, -0.32, -8.7], - "medium_text": { - "position": [-0.55, -0.32, -8.7], - "initial_position": [-1.55, -0.32, -8.7] - } + "big_text": [0.45, -0.32, -8.7] }, "bg_hud_1": { "mirrored": 0, @@ -131,13 +137,14 @@ }, "big": { "position": [0.3, 0.015, -8.6], - "initial_position": [1.3, 0.015, -8.6] + "initial_position": [1.3, 0.015, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [-0.15, 0.1, -8.7], - "medium_text": { - "position": [0.1, 0.02, -8.7], - "initial_position": [1.1, 0.02, -8.7] - } + "big_text": [-0.15, 0.1, -8.7] }, "bg_hud_2": { "mirrored": 0, @@ -151,13 +158,14 @@ }, "big": { "position": [0.3, -0.1, -8.6], - "initial_position": [1.35, -0.1, -8.6] + "initial_position": [1.35, -0.1, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [-0.15, -0.03, -8.7], - "medium_text": { - "position": [0.18, -0.13, -8.7], - "initial_position": [1.18, -0.13, -8.7] - } + "big_text": [-0.15, -0.03, -8.7] }, "bg_hud_3": { "mirrored": 0, @@ -171,13 +179,14 @@ }, "big": { "position": [0.3, -0.22, -8.6], - "initial_position": [1.35, -0.22, -8.6] + "initial_position": [1.35, -0.22, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [-0.15, -0.17, -8.7], - "medium_text": { - "position": [0.18, -0.25, -8.7], - "initial_position": [1.18, -0.25, -8.7] - } + "big_text": [-0.15, -0.17, -8.7] }, "bg_hud_4": { "mirrored": 1, @@ -191,13 +200,14 @@ }, "big": { "position": [-0.35, 0.015, -8.6], - "initial_position": [-1.35, 0.015, -8.6] + "initial_position": [-1.35, 0.015, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [0.2, 0.1, -8.7], - "medium_text": { - "position": [-0.65, 0.02, -8.7], - "initial_position": [-1.65, 0.02, -8.7] - } + "big_text": [0.2, 0.1, -8.7] }, "bg_hud_5": { "mirrored": 1, @@ -211,13 +221,14 @@ }, "big": { "position": [-0.35, -0.1, -8.6], - "initial_position": [-1.35, -0.1, -8.6] + "initial_position": [-1.35, -0.1, -8.6], + "protocol_line_positions": [ + [-0.03, -0.06, 0], + [-0.06, -0.12, 0], + [-0.09, -0.18, 0] + ] }, - "big_text": [0.2, -0.03, -8.7], - "medium_text": { - "position": [-0.65, -0.11, -8.7], - "initial_position": [-1.65, -0.11, -8.7] - } + "big_text": [0.2, -0.03, -8.7] }, "bg_hud_6": { "mirrored": 1, @@ -231,12 +242,13 @@ }, "big": { "position": [-0.25, -0.22, -8.6], - "initial_position": [-1.25, -0.22, -8.6] + "initial_position": [-1.25, -0.22, -8.6], + "protocol_line_positions": [ + [0.03, 0.06, 0], + [0.06, 0.12, 0], + [0.09, 0.18, 0] + ] }, - "big_text": [0.2, -0.17, -8.7], - "medium_text": { - "position": [-0.53, -0.25, -8.7], - "initial_position": [-1.53, -0.25, -8.7] - } + "big_text": [0.2, -0.17, -8.7] } } diff --git a/src/resources/site_a.json b/src/resources/site_a.json index fc881b4..dda1edf 100644 --- a/src/resources/site_a.json +++ b/src/resources/site_a.json @@ -9,6 +9,11 @@ }, "media_file": "LAIN13.XA[19]", "node_name": "Env001", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/**%#\"673\"" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -31,6 +36,11 @@ }, "media_file": "LAIN13.XA[20]", "node_name": "Env002", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/**76%373\"" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -53,6 +63,11 @@ }, "media_file": "LAIN13.XA[21]", "node_name": "Env004", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/52\"**3\"" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -75,6 +90,11 @@ }, "media_file": "LAIN13.XA[22]", "node_name": "Env005", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/%2\"53\"" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -97,6 +117,11 @@ }, "media_file": "LAIN13.XA[23]", "node_name": "Env006", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/006%3" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -119,6 +144,11 @@ }, "media_file": "LAIN13.XA[24]", "node_name": "Env007", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/*4451%\"" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -141,6 +171,11 @@ }, "media_file": "LAIN13.XA[25]", "node_name": "Env008", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/789.235\"" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -163,6 +198,11 @@ }, "media_file": "LAIN13.XA[26]", "node_name": "Env010", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/121.%%0" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -185,6 +225,11 @@ }, "media_file": "LAIN13.XA[27]", "node_name": "Env011", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/078.123%\"" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -207,6 +252,11 @@ }, "media_file": "LAIN13.XA[28]", "node_name": "Env012", + "protocol_lines": { + "1": "anonymous_user", + "2": "***unknown", + "3": "ftp/\"\"%#808" + }, "required_final_video_viewcount": 0, "site": "A", "title": "network voices?", @@ -231,6 +281,11 @@ }, "media_file": "LAIN07.XA[31]", "node_name": "Tda001", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -253,6 +308,11 @@ }, "media_file": "LAIN08.XA[0]", "node_name": "Tda002", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -275,6 +335,11 @@ }, "media_file": "F013.STR[0]", "node_name": "Dc1009", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -297,6 +362,11 @@ }, "media_file": "LAIN08.XA[1]", "node_name": "Tda003", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -319,6 +389,11 @@ }, "media_file": "LAIN08.XA[2]", "node_name": "Tda004", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -341,6 +416,11 @@ }, "media_file": "LAIN09.XA[11]", "node_name": "TaK001", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -363,6 +443,11 @@ }, "media_file": "LAIN09.XA[12]", "node_name": "TaK002", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -385,6 +470,11 @@ }, "media_file": "LAIN03.XA[3]", "node_name": "Ekm001", + "protocol_lines": { + "1": "authorized_il", + "2": "talking_F#00021", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 2, "site": "A", "title": "DATA of CLN01", @@ -407,6 +497,11 @@ }, "media_file": "LAIN08.XA[3]", "node_name": "Tda005", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -429,6 +524,11 @@ }, "media_file": "LAIN08.XA[4]", "node_name": "Tda006", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -451,6 +551,11 @@ }, "media_file": "LAIN09.XA[13]", "node_name": "TaK003", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -473,6 +578,11 @@ }, "media_file": "LAIN09.XA[14]", "node_name": "TaK004", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -495,6 +605,11 @@ }, "media_file": "LAIN09.XA[15]", "node_name": "TaK005", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -519,6 +634,11 @@ }, "media_file": "LAIN03.XA[4]", "node_name": "Ekm002", + "protocol_lines": { + "1": "authorized_il", + "2": "talking_F#00381", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 2, "site": "A", "title": "DATA of CLN01", @@ -541,6 +661,11 @@ }, "media_file": "F014.STR[0]", "node_name": "Dc1010", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -563,6 +688,11 @@ }, "media_file": "LAIN08.XA[5]", "node_name": "Tda007", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -585,6 +715,11 @@ }, "media_file": "LAIN08.XA[6]", "node_name": "Tda008", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -607,6 +742,11 @@ }, "media_file": "LAIN09.XA[16]", "node_name": "TaK006", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -629,6 +769,11 @@ }, "media_file": "LAIN12.XA[6]", "node_name": "TaK123", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -651,6 +796,11 @@ }, "media_file": "LAIN12.XA[5]", "node_name": "TaK122", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -673,6 +823,11 @@ }, "media_file": "LAIN09.XA[18]", "node_name": "TaK008", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -695,6 +850,11 @@ }, "media_file": "LAIN12.XA[7]", "node_name": "TaK124", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -717,6 +877,11 @@ }, "media_file": "LAIN03.XA[5]", "node_name": "Ekm003", + "protocol_lines": { + "1": "authorized_il", + "2": "talking_F#01980", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 2, "site": "A", "title": "DATA of CLN01", @@ -739,6 +904,11 @@ }, "media_file": "LAIN09.XA[19]", "node_name": "TaK009", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -761,6 +931,11 @@ }, "media_file": "LAIN08.XA[7]", "node_name": "Tda009", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -783,6 +958,11 @@ }, "media_file": "LAIN08.XA[8]", "node_name": "Tda010", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -805,6 +985,11 @@ }, "media_file": "LAIN09.XA[17]", "node_name": "TaK007", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -827,6 +1012,11 @@ }, "media_file": "LAIN09.XA[20]", "node_name": "TaK010", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -849,6 +1039,11 @@ }, "media_file": "LAIN12.XA[8]", "node_name": "TaK125", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -871,6 +1066,11 @@ }, "media_file": "LAIN03.XA[6]", "node_name": "Ekm004", + "protocol_lines": { + "1": "authorized_il", + "2": "talking_F#04522", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 2, "site": "A", "title": "DATA of CLN01", @@ -893,6 +1093,11 @@ }, "media_file": "LAIN08.XA[9]", "node_name": "Tda011", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -915,6 +1120,11 @@ }, "media_file": "LAIN08.XA[10]", "node_name": "Tda012", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -937,6 +1147,11 @@ }, "media_file": "LAIN08.XA[11]", "node_name": "Tda013", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -961,6 +1176,11 @@ }, "media_file": "LAIN08.XA[14]", "node_name": "Tda016", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -983,6 +1203,11 @@ }, "media_file": "LAIN09.XA[21]", "node_name": "TaK011", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -1005,6 +1230,11 @@ }, "media_file": "LAIN09.XA[22]", "node_name": "TaK012", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -1027,6 +1257,11 @@ }, "media_file": "LAIN03.XA[7]", "node_name": "Ekm005", + "protocol_lines": { + "1": "authorized_il", + "2": "talking_F#10294", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 2, "site": "A", "title": "DATA of CLN01", @@ -1049,6 +1284,11 @@ }, "media_file": "LAIN08.XA[12]", "node_name": "Tda014", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1071,6 +1311,11 @@ }, "media_file": "LAIN08.XA[13]", "node_name": "Tda015", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1093,6 +1338,11 @@ }, "media_file": "LAIN08.XA[16]", "node_name": "Tda018", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1115,6 +1365,11 @@ }, "media_file": "LAIN12.XA[9]", "node_name": "TaK126", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -1137,6 +1392,11 @@ }, "media_file": "LAIN12.XA[10]", "node_name": "TaK127", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -1159,6 +1419,11 @@ }, "media_file": "LAIN03.XA[8]", "node_name": "Ekm006", + "protocol_lines": { + "1": "authorized_il", + "2": "talking_F#15413", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 2, "site": "A", "title": "DATA of CLN01", @@ -1181,6 +1446,11 @@ }, "media_file": "LAIN12.XA[11]", "node_name": "TaK128", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -1203,6 +1473,11 @@ }, "media_file": "LAIN08.XA[15]", "node_name": "Tda017", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1225,6 +1500,11 @@ }, "media_file": "LAIN08.XA[17]", "node_name": "Tda019", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1247,6 +1527,11 @@ }, "media_file": "LAIN08.XA[18]", "node_name": "Tda020", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1269,6 +1554,11 @@ }, "media_file": "LAIN09.XA[23]", "node_name": "TaK013", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -1291,6 +1581,11 @@ }, "media_file": "LAIN09.XA[24]", "node_name": "TaK014", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -1313,6 +1608,11 @@ }, "media_file": "LAIN09.XA[25]", "node_name": "TaK015", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -1335,6 +1635,11 @@ }, "media_file": "LAIN09.XA[26]", "node_name": "TaK016", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -1359,6 +1664,11 @@ }, "media_file": "LAIN09.XA[27]", "node_name": "TaK017", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -1381,6 +1691,11 @@ }, "media_file": "LAIN08.XA[19]", "node_name": "Tda021", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1403,6 +1718,11 @@ }, "media_file": "LAIN08.XA[20]", "node_name": "Tda022", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1425,6 +1745,11 @@ }, "media_file": "LAIN09.XA[28]", "node_name": "TaK018", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -1447,6 +1772,11 @@ }, "media_file": "LAIN12.XA[12]", "node_name": "TaK129", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -1469,6 +1799,11 @@ }, "media_file": "F025.STR[0]", "node_name": "Dc1015", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -1491,6 +1826,11 @@ }, "media_file": "LAIN09.XA[29]", "node_name": "TaK019", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -1513,6 +1853,11 @@ }, "media_file": "LAIN12.XA[13]", "node_name": "TaK130", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -1535,6 +1880,11 @@ }, "media_file": "LAIN02.XA[6]", "node_name": "Dia001", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -1557,6 +1907,11 @@ }, "media_file": "LAIN02.XA[7]", "node_name": "Dia002", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -1579,6 +1934,11 @@ }, "media_file": "LAIN08.XA[21]", "node_name": "Tda023", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "TOUKO's DIARY", @@ -1601,6 +1961,11 @@ }, "media_file": "LAIN08.XA[22]", "node_name": "Tda024", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -1623,6 +1988,11 @@ }, "media_file": "LAIN08.XA[23]", "node_name": "Tda025", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -1645,6 +2015,11 @@ }, "media_file": "INS01.STR[0]", "node_name": "SSkn01", + "protocol_lines": { + "1": "movie tool", + "2": "playing movie", + "3": "freeware" + }, "required_final_video_viewcount": 0, "site": "A", "title": "mT up-date App.", @@ -1667,6 +2042,11 @@ }, "media_file": "LAIN01.XA[0]", "node_name": "Cou001", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -1689,6 +2069,11 @@ }, "media_file": "LAIN01.XA[1]", "node_name": "Cou002", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -1711,6 +2096,11 @@ }, "media_file": "LAIN01.XA[3]", "node_name": "Cou004", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -1733,6 +2123,11 @@ }, "media_file": "LAIN21.XA[5]", "node_name": "GaTE01", + "protocol_lines": { + "1": "network tool", + "2": "changing site", + "3": " quarter of GP" + }, "required_final_video_viewcount": 0, "site": "A", "title": "nT APPLICATION", @@ -1755,6 +2150,11 @@ }, "media_file": "LAIN02.XA[8]", "node_name": "Dia003", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -1777,6 +2177,11 @@ }, "media_file": "LAIN02.XA[9]", "node_name": "Dia004", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -1799,6 +2204,11 @@ }, "media_file": "LAIN08.XA[24]", "node_name": "Tda026", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -1821,6 +2231,11 @@ }, "media_file": "LAIN08.XA[25]", "node_name": "Tda027", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -1843,6 +2258,11 @@ }, "media_file": "LAIN08.XA[26]", "node_name": "Tda028", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -1865,6 +2285,11 @@ }, "media_file": "LAIN01.XA[2]", "node_name": "Cou003", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -1889,6 +2314,11 @@ }, "media_file": "F029.STR[0]", "node_name": "Dc1018", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -1911,6 +2341,11 @@ }, "media_file": "LAIN01.XA[4]", "node_name": "Cou005", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -1933,6 +2368,11 @@ }, "media_file": "LAIN02.XA[10]", "node_name": "Dia005", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -1955,6 +2395,11 @@ }, "media_file": "LAIN02.XA[11]", "node_name": "Dia006", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -1977,6 +2422,11 @@ }, "media_file": "LAIN02.XA[12]", "node_name": "Dia007", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -1999,6 +2449,11 @@ }, "media_file": "LAIN08.XA[27]", "node_name": "Tda029", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2021,6 +2476,11 @@ }, "media_file": "LAIN08.XA[28]", "node_name": "Tda030", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2043,6 +2503,11 @@ }, "media_file": "LAIN08.XA[30]", "node_name": "Tda032", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2065,6 +2530,11 @@ }, "media_file": "LAIN08.XA[31]", "node_name": "Tda033", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2087,6 +2557,11 @@ }, "media_file": "LAIN01.XA[5]", "node_name": "Cou006", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2109,6 +2584,11 @@ }, "media_file": "LAIN01.XA[6]", "node_name": "Cou007", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2131,6 +2611,11 @@ }, "media_file": "LAIN09.XA[30]", "node_name": "TaK020", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -2153,6 +2638,11 @@ }, "media_file": "F004.STR[0]", "node_name": "Dc1004", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -2175,6 +2665,11 @@ }, "media_file": "LAIN02.XA[13]", "node_name": "Dia008", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2197,6 +2692,11 @@ }, "media_file": "LAIN08.XA[29]", "node_name": "Tda031", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2219,6 +2719,11 @@ }, "media_file": "LAIN02.XA[15]", "node_name": "Dia010", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2241,6 +2746,11 @@ }, "media_file": "LAIN09.XA[0]", "node_name": "Tda034", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2263,6 +2773,11 @@ }, "media_file": "LAIN09.XA[1]", "node_name": "Tda035", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2285,6 +2800,11 @@ }, "media_file": "LAIN01.XA[7]", "node_name": "Cou008", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2307,6 +2827,11 @@ }, "media_file": "LAIN01.XA[8]", "node_name": "Cou009", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2329,6 +2854,11 @@ }, "media_file": "LAIN01.XA[9]", "node_name": "Cou010", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2351,6 +2881,11 @@ }, "media_file": "LAIN02.XA[14]", "node_name": "Dia009", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2375,6 +2910,11 @@ }, "media_file": "LAIN02.XA[17]", "node_name": "Dia012", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2397,6 +2937,11 @@ }, "media_file": "LAIN02.XA[16]", "node_name": "Dia011", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2419,6 +2964,11 @@ }, "media_file": "LAIN09.XA[2]", "node_name": "Tda036", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2441,6 +2991,11 @@ }, "media_file": "LAIN09.XA[3]", "node_name": "Tda037", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -2463,6 +3018,11 @@ }, "media_file": "LAIN09.XA[31]", "node_name": "TaK021", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -2485,6 +3045,11 @@ }, "media_file": "LAIN01.XA[10]", "node_name": "Cou011", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2507,6 +3072,11 @@ }, "media_file": "LAIN01.XA[11]", "node_name": "Cou012", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2529,6 +3099,11 @@ }, "media_file": "LAIN01.XA[13]", "node_name": "Cou014", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2551,6 +3126,11 @@ }, "media_file": "LAIN02.XA[18]", "node_name": "Dia013", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2573,6 +3153,11 @@ }, "media_file": "LAIN02.XA[19]", "node_name": "Dia014", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2595,6 +3180,11 @@ }, "media_file": "LAIN02.XA[20]", "node_name": "Dia015", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2617,6 +3207,11 @@ }, "media_file": "LAIN10.XA[0]", "node_name": "TaK022", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -2639,6 +3234,11 @@ }, "media_file": "LAIN03.XA[9]", "node_name": "Lda001", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -2661,6 +3261,11 @@ }, "media_file": "LAIN10.XA[1]", "node_name": "TaK023", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -2683,6 +3288,11 @@ }, "media_file": "LAIN01.XA[12]", "node_name": "Cou013", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2705,6 +3315,11 @@ }, "media_file": "LAIN01.XA[14]", "node_name": "Cou015", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2727,6 +3342,11 @@ }, "media_file": "LAIN01.XA[15]", "node_name": "Cou016", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2749,6 +3369,11 @@ }, "media_file": "INS02.STR[0]", "node_name": "SSkn02", + "protocol_lines": { + "1": "movie tool", + "2": "playing movie", + "3": "freeware" + }, "required_final_video_viewcount": 0, "site": "A", "title": "mT up-date App.", @@ -2771,6 +3396,11 @@ }, "media_file": "LAIN02.XA[21]", "node_name": "Dia016", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2793,6 +3423,11 @@ }, "media_file": "LAIN12.XA[14]", "node_name": "TaK131", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -2815,6 +3450,11 @@ }, "media_file": "LAIN21.XA[6]", "node_name": "GaTE02", + "protocol_lines": { + "1": "network tool", + "2": "changing site", + "3": " quarter of GP" + }, "required_final_video_viewcount": 0, "site": "A", "title": "nT APPLICATION", @@ -2837,6 +3477,11 @@ }, "media_file": "LAIN10.XA[2]", "node_name": "TaK024", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -2859,6 +3504,11 @@ }, "media_file": "LAIN12.XA[15]", "node_name": "TaK132", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -2883,6 +3533,11 @@ }, "media_file": "LAIN03.XA[10]", "node_name": "Lda002", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -2905,6 +3560,11 @@ }, "media_file": "LAIN01.XA[16]", "node_name": "Cou017", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2927,6 +3587,11 @@ }, "media_file": "LAIN01.XA[17]", "node_name": "Cou018", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -2949,6 +3614,11 @@ }, "media_file": "LAIN02.XA[22]", "node_name": "Dia017", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -2971,6 +3641,11 @@ }, "media_file": "LAIN21.XA[9]", "node_name": "P2-01", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 0, "site": "A", "title": "POLY-TAN PARTS", @@ -2993,6 +3668,11 @@ }, "media_file": "LAIN09.XA[4]", "node_name": "Tda038", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -3015,6 +3695,11 @@ }, "media_file": "LAIN10.XA[3]", "node_name": "TaK025", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -3037,6 +3722,11 @@ }, "media_file": "LAIN03.XA[11]", "node_name": "Lda003", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3059,6 +3749,11 @@ }, "media_file": "LAIN03.XA[12]", "node_name": "Lda004", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3081,6 +3776,11 @@ }, "media_file": "F022.STR[0]", "node_name": "Dc1013", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -3103,6 +3803,11 @@ }, "media_file": "LAIN10.XA[4]", "node_name": "TaK026", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -3125,6 +3830,11 @@ }, "media_file": "LAIN12.XA[16]", "node_name": "TaK133", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -3147,6 +3857,11 @@ }, "media_file": "LAIN10.XA[7]", "node_name": "TaK029", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -3169,6 +3884,11 @@ }, "media_file": "LAIN03.XA[13]", "node_name": "Lda005", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3191,6 +3911,11 @@ }, "media_file": "LAIN03.XA[14]", "node_name": "Lda006", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3213,6 +3938,11 @@ }, "media_file": "LAIN01.XA[18]", "node_name": "Cou019", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -3235,6 +3965,11 @@ }, "media_file": "LAIN02.XA[23]", "node_name": "Dia018", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -3257,6 +3992,11 @@ }, "media_file": "LAIN10.XA[5]", "node_name": "TaK027", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -3281,6 +4021,11 @@ }, "media_file": "LAIN21.XA[7]", "node_name": "GaTE03", + "protocol_lines": { + "1": "network tool", + "2": "changing site", + "3": " quarter of GP" + }, "required_final_video_viewcount": 0, "site": "A", "title": "nT APPLICATION", @@ -3303,6 +4048,11 @@ }, "media_file": "LAIN10.XA[6]", "node_name": "TaK028", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -3325,6 +4075,11 @@ }, "media_file": "LAIN12.XA[17]", "node_name": "TaK134", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -3347,6 +4102,11 @@ }, "media_file": "LAIN03.XA[15]", "node_name": "Lda007", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3369,6 +4129,11 @@ }, "media_file": "LAIN03.XA[16]", "node_name": "Lda008", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3391,6 +4156,11 @@ }, "media_file": "LAIN03.XA[17]", "node_name": "Lda009", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3413,6 +4183,11 @@ }, "media_file": "LAIN03.XA[18]", "node_name": "Lda010", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3435,6 +4210,11 @@ }, "media_file": "LAIN10.XA[8]", "node_name": "TaK030", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -3457,6 +4237,11 @@ }, "media_file": "LAIN12.XA[18]", "node_name": "TaK135", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -3479,6 +4264,11 @@ }, "media_file": "LAIN03.XA[19]", "node_name": "Lda011", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3501,6 +4291,11 @@ }, "media_file": "LAIN03.XA[20]", "node_name": "Lda012", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3523,6 +4318,11 @@ }, "media_file": "LAIN03.XA[21]", "node_name": "Lda013", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3545,6 +4345,11 @@ }, "media_file": "LAIN10.XA[9]", "node_name": "TaK031", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -3567,6 +4372,11 @@ }, "media_file": "LAIN01.XA[19]", "node_name": "Cou020", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -3589,6 +4399,11 @@ }, "media_file": "LAIN01.XA[20]", "node_name": "Cou021", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -3611,6 +4426,11 @@ }, "media_file": "LAIN02.XA[24]", "node_name": "Dia019", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -3633,6 +4453,11 @@ }, "media_file": "LAIN10.XA[10]", "node_name": "TaK032", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -3655,6 +4480,11 @@ }, "media_file": "LAIN12.XA[19]", "node_name": "TaK136", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -3677,6 +4507,11 @@ }, "media_file": "LAIN03.XA[22]", "node_name": "Lda014", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3699,6 +4534,11 @@ }, "media_file": "LAIN03.XA[23]", "node_name": "Lda015", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3721,6 +4561,11 @@ }, "media_file": "LAIN03.XA[24]", "node_name": "Lda016", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3745,6 +4590,11 @@ }, "media_file": "LAIN03.XA[27]", "node_name": "Lda019", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3767,6 +4617,11 @@ }, "media_file": "LAIN01.XA[21]", "node_name": "Cou022", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -3789,6 +4644,11 @@ }, "media_file": "LAIN01.XA[22]", "node_name": "Cou023", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -3811,6 +4671,11 @@ }, "media_file": "F012.STR[0]", "node_name": "Dc1008", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -3833,6 +4698,11 @@ }, "media_file": "LAIN10.XA[11]", "node_name": "TaK033", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -3855,6 +4725,11 @@ }, "media_file": "LAIN03.XA[25]", "node_name": "Lda017", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3877,6 +4752,11 @@ }, "media_file": "LAIN03.XA[26]", "node_name": "Lda018", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3899,6 +4779,11 @@ }, "media_file": "LAIN03.XA[28]", "node_name": "Lda020", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3921,6 +4806,11 @@ }, "media_file": "LAIN03.XA[29]", "node_name": "Lda021", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -3943,6 +4833,11 @@ }, "media_file": "F026.STR[0]", "node_name": "Dc1016", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -3965,6 +4860,11 @@ }, "media_file": "LAIN09.XA[5]", "node_name": "Tda039", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -3987,6 +4887,11 @@ }, "media_file": "LAIN10.XA[12]", "node_name": "TaK034", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -4009,6 +4914,11 @@ }, "media_file": "LAIN12.XA[20]", "node_name": "TaK137", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -4031,6 +4941,11 @@ }, "media_file": "LAIN03.XA[30]", "node_name": "Lda022", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4053,6 +4968,11 @@ }, "media_file": "LAIN03.XA[31]", "node_name": "Lda023", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4075,6 +4995,11 @@ }, "media_file": "LAIN10.XA[13]", "node_name": "TaK035", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -4097,6 +5022,11 @@ }, "media_file": "LAIN12.XA[21]", "node_name": "TaK138", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -4119,6 +5049,11 @@ }, "media_file": "LAIN10.XA[14]", "node_name": "TaK036", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -4141,6 +5076,11 @@ }, "media_file": "LAIN10.XA[15]", "node_name": "TaK037", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -4163,6 +5103,11 @@ }, "media_file": "LAIN12.XA[22]", "node_name": "TaK139", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -4187,6 +5132,11 @@ }, "media_file": "LAIN10.XA[16]", "node_name": "TaK038", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -4209,6 +5159,11 @@ }, "media_file": "LAIN04.XA[0]", "node_name": "Lda024", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4231,6 +5186,11 @@ }, "media_file": "LAIN04.XA[1]", "node_name": "Lda025", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4253,6 +5213,11 @@ }, "media_file": "LAIN01.XA[23]", "node_name": "Cou024", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -4275,6 +5240,11 @@ }, "media_file": "LAIN01.XA[24]", "node_name": "Cou025", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -4297,6 +5267,11 @@ }, "media_file": "LAIN02.XA[25]", "node_name": "Dia020", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -4319,6 +5294,11 @@ }, "media_file": "LAIN10.XA[17]", "node_name": "TaK039", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -4341,6 +5321,11 @@ }, "media_file": "LAIN09.XA[6]", "node_name": "Tda040", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -4363,6 +5348,11 @@ }, "media_file": "LAIN09.XA[7]", "node_name": "Tda041", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -4385,6 +5375,11 @@ }, "media_file": "LAIN04.XA[2]", "node_name": "Lda026", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4407,6 +5402,11 @@ }, "media_file": "LAIN04.XA[3]", "node_name": "Lda027", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4429,6 +5429,11 @@ }, "media_file": "LAIN04.XA[4]", "node_name": "Lda028", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4451,6 +5456,11 @@ }, "media_file": "LAIN04.XA[5]", "node_name": "Lda029", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4473,6 +5483,11 @@ }, "media_file": "LAIN12.XA[23]", "node_name": "TaK140", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -4495,6 +5510,11 @@ }, "media_file": "LAIN01.XA[25]", "node_name": "Cou026", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -4517,6 +5537,11 @@ }, "media_file": "LAIN01.XA[26]", "node_name": "Cou027", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -4539,6 +5564,11 @@ }, "media_file": "LAIN09.XA[8]", "node_name": "Tda042", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -4561,6 +5591,11 @@ }, "media_file": "LAIN09.XA[9]", "node_name": "Tda043", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -4583,6 +5618,11 @@ }, "media_file": "LAIN02.XA[26]", "node_name": "Dia021", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -4605,6 +5645,11 @@ }, "media_file": "LAIN04.XA[6]", "node_name": "Lda030", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4627,6 +5672,11 @@ }, "media_file": "LAIN04.XA[7]", "node_name": "Lda031", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4651,6 +5701,11 @@ }, "media_file": "LAIN10.XA[18]", "node_name": "TaK040", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -4673,6 +5728,11 @@ }, "media_file": "LAIN10.XA[19]", "node_name": "TaK041", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -4695,6 +5755,11 @@ }, "media_file": "LAIN12.XA[24]", "node_name": "TaK141", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -4717,6 +5782,11 @@ }, "media_file": "LAIN10.XA[20]", "node_name": "TaK042", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -4739,6 +5809,11 @@ }, "media_file": "F036.STR[0]", "node_name": "Dc1022", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -4761,6 +5836,11 @@ }, "media_file": "LAIN04.XA[8]", "node_name": "Lda032", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4783,6 +5863,11 @@ }, "media_file": "LAIN04.XA[9]", "node_name": "Lda033", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4805,6 +5890,11 @@ }, "media_file": "LAIN04.XA[10]", "node_name": "Lda034", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4827,6 +5917,11 @@ }, "media_file": "LAIN10.XA[21]", "node_name": "TaK043", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -4849,6 +5944,11 @@ }, "media_file": "LAIN12.XA[25]", "node_name": "TaK142", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -4871,6 +5971,11 @@ }, "media_file": "LAIN21.XA[10]", "node_name": "P2-02", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 0, "site": "A", "title": "POLY-TAN PARTS", @@ -4893,6 +5998,11 @@ }, "media_file": "INS03.STR[0]", "node_name": "SSkn03", + "protocol_lines": { + "1": "movie tool", + "2": "playing movie", + "3": "freeware" + }, "required_final_video_viewcount": 0, "site": "A", "title": "mT up-date App.", @@ -4915,6 +6025,11 @@ }, "media_file": "LAIN21.XA[11]", "node_name": "P2-03", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 0, "site": "A", "title": "POLY-TAN PARTS", @@ -4937,6 +6052,11 @@ }, "media_file": "LAIN04.XA[11]", "node_name": "Lda035", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4959,6 +6079,11 @@ }, "media_file": "LAIN04.XA[12]", "node_name": "Lda036", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -4981,6 +6106,11 @@ }, "media_file": "LAIN04.XA[14]", "node_name": "Lda038", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5003,6 +6133,11 @@ }, "media_file": "LAIN04.XA[15]", "node_name": "Lda039", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5025,6 +6160,11 @@ }, "media_file": "LAIN04.XA[16]", "node_name": "Lda040", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5047,6 +6187,11 @@ }, "media_file": "LAIN01.XA[27]", "node_name": "Cou028", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -5069,6 +6214,11 @@ }, "media_file": "LAIN01.XA[28]", "node_name": "Cou029", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -5091,6 +6241,11 @@ }, "media_file": "LAIN02.XA[27]", "node_name": "Dia022", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -5113,6 +6268,11 @@ }, "media_file": "LAIN04.XA[13]", "node_name": "Lda037", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5137,6 +6297,11 @@ }, "media_file": "LAIN10.XA[22]", "node_name": "TaK044", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -5159,6 +6324,11 @@ }, "media_file": "LAIN04.XA[17]", "node_name": "Lda041", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5181,6 +6351,11 @@ }, "media_file": "LAIN04.XA[18]", "node_name": "Lda042", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5203,6 +6378,11 @@ }, "media_file": "LAIN04.XA[19]", "node_name": "Lda043", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5225,6 +6405,11 @@ }, "media_file": "LAIN10.XA[23]", "node_name": "TaK045", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -5247,6 +6432,11 @@ }, "media_file": "LAIN12.XA[26]", "node_name": "TaK143", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -5269,6 +6459,11 @@ }, "media_file": "LAIN10.XA[25]", "node_name": "TaK047", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -5291,6 +6486,11 @@ }, "media_file": "LAIN12.XA[27]", "node_name": "TaK144", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -5313,6 +6513,11 @@ }, "media_file": "LAIN04.XA[20]", "node_name": "Lda044", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5335,6 +6540,11 @@ }, "media_file": "LAIN04.XA[21]", "node_name": "Lda045", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5357,6 +6567,11 @@ }, "media_file": "LAIN04.XA[22]", "node_name": "Lda046", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5379,6 +6594,11 @@ }, "media_file": "LAIN10.XA[24]", "node_name": "TaK046", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -5401,6 +6621,11 @@ }, "media_file": "F037.STR[0]", "node_name": "Dc1023", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -5423,6 +6648,11 @@ }, "media_file": "LAIN01.XA[29]", "node_name": "Cou030", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -5445,6 +6675,11 @@ }, "media_file": "LAIN01.XA[30]", "node_name": "Cou031", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -5467,6 +6702,11 @@ }, "media_file": "LAIN02.XA[28]", "node_name": "Dia023", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -5489,6 +6729,11 @@ }, "media_file": "LAIN10.XA[26]", "node_name": "TaK048", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -5511,6 +6756,11 @@ }, "media_file": "LAIN04.XA[23]", "node_name": "Lda047", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5533,6 +6783,11 @@ }, "media_file": "LAIN04.XA[24]", "node_name": "Lda048", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5555,6 +6810,11 @@ }, "media_file": "LAIN10.XA[30]", "node_name": "TaK052", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -5579,6 +6839,11 @@ }, "media_file": "LAIN04.XA[28]", "node_name": "Lda052", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5601,6 +6866,11 @@ }, "media_file": "LAIN10.XA[27]", "node_name": "TaK049", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -5623,6 +6893,11 @@ }, "media_file": "LAIN12.XA[28]", "node_name": "TaK145", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -5645,6 +6920,11 @@ }, "media_file": "LAIN04.XA[25]", "node_name": "Lda049", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5667,6 +6947,11 @@ }, "media_file": "LAIN04.XA[26]", "node_name": "Lda050", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5689,6 +6974,11 @@ }, "media_file": "LAIN04.XA[27]", "node_name": "Lda051", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5711,6 +7001,11 @@ }, "media_file": "LAIN04.XA[31]", "node_name": "Lda055", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5733,6 +7028,11 @@ }, "media_file": "F033.STR[0]", "node_name": "Dc1019", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -5755,6 +7055,11 @@ }, "media_file": "LAIN10.XA[28]", "node_name": "TaK050", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -5777,6 +7082,11 @@ }, "media_file": "LAIN10.XA[29]", "node_name": "TaK051", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -5799,6 +7109,11 @@ }, "media_file": "LAIN12.XA[29]", "node_name": "TaK146", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -5821,6 +7136,11 @@ }, "media_file": "LAIN04.XA[29]", "node_name": "Lda053", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5843,6 +7163,11 @@ }, "media_file": "LAIN04.XA[30]", "node_name": "Lda054", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5865,6 +7190,11 @@ }, "media_file": "LAIN05.XA[0]", "node_name": "Lda056", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5887,6 +7217,11 @@ }, "media_file": "LAIN05.XA[1]", "node_name": "Lda057", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5909,6 +7244,11 @@ }, "media_file": "LAIN05.XA[2]", "node_name": "Lda058", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5931,6 +7271,11 @@ }, "media_file": "LAIN05.XA[3]", "node_name": "Lda059", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -5953,6 +7298,11 @@ }, "media_file": "LAIN01.XA[31]", "node_name": "Cou032", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -5975,6 +7325,11 @@ }, "media_file": "LAIN02.XA[0]", "node_name": "Cou033", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -5997,6 +7352,11 @@ }, "media_file": "LAIN02.XA[29]", "node_name": "Dia024", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -6021,6 +7381,11 @@ }, "media_file": "LAIN21.XA[12]", "node_name": "P2-04", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 0, "site": "A", "title": "POLY-TAN PARTS", @@ -6043,6 +7408,11 @@ }, "media_file": "LAIN05.XA[4]", "node_name": "Lda060", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6065,6 +7435,11 @@ }, "media_file": "LAIN05.XA[5]", "node_name": "Lda061", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6087,6 +7462,11 @@ }, "media_file": "LAIN10.XA[31]", "node_name": "TaK053", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -6109,6 +7489,11 @@ }, "media_file": "F027.STR[0]", "node_name": "Dc1017", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -6131,6 +7516,11 @@ }, "media_file": "LAIN11.XA[0]", "node_name": "TaK054", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -6153,6 +7543,11 @@ }, "media_file": "LAIN12.XA[31]", "node_name": "TaK148", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -6175,6 +7570,11 @@ }, "media_file": "LAIN05.XA[6]", "node_name": "Lda062", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6197,6 +7597,11 @@ }, "media_file": "LAIN05.XA[7]", "node_name": "Lda063", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6219,6 +7624,11 @@ }, "media_file": "LAIN11.XA[1]", "node_name": "TaK055", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -6241,6 +7651,11 @@ }, "media_file": "LAIN12.XA[30]", "node_name": "TaK147", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -6263,6 +7678,11 @@ }, "media_file": "LAIN11.XA[2]", "node_name": "TaK056", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -6285,6 +7705,11 @@ }, "media_file": "LAIN13.XA[0]", "node_name": "TaK149", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -6307,6 +7732,11 @@ }, "media_file": "LAIN21.XA[13]", "node_name": "P2-05", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 0, "site": "A", "title": "POLY-TAN PARTS", @@ -6329,6 +7759,11 @@ }, "media_file": "LAIN11.XA[3]", "node_name": "TaK057", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -6351,6 +7786,11 @@ }, "media_file": "LAIN05.XA[8]", "node_name": "Lda064", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6373,6 +7813,11 @@ }, "media_file": "LAIN05.XA[9]", "node_name": "Lda065", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6395,6 +7840,11 @@ }, "media_file": "F002.STR[0]", "node_name": "Dc1002", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -6419,6 +7869,11 @@ }, "media_file": "F003.STR[0]", "node_name": "Dc1003", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -6441,6 +7896,11 @@ }, "media_file": "LAIN11.XA[4]", "node_name": "TaK058", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -6463,6 +7923,11 @@ }, "media_file": "LAIN13.XA[1]", "node_name": "TaK150", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -6485,6 +7950,11 @@ }, "media_file": "LAIN05.XA[10]", "node_name": "Lda066", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6507,6 +7977,11 @@ }, "media_file": "LAIN05.XA[11]", "node_name": "Lda067", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6529,6 +8004,11 @@ }, "media_file": "LAIN05.XA[12]", "node_name": "Lda068", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6551,6 +8031,11 @@ }, "media_file": "LAIN05.XA[15]", "node_name": "Lda071", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6573,6 +8058,11 @@ }, "media_file": "LAIN05.XA[16]", "node_name": "Lda072", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6595,6 +8085,11 @@ }, "media_file": "LAIN02.XA[1]", "node_name": "Cou034", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -6617,6 +8112,11 @@ }, "media_file": "LAIN02.XA[30]", "node_name": "Dia025", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -6639,6 +8139,11 @@ }, "media_file": "F006.STR[0]", "node_name": "Dc1005", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -6661,6 +8166,11 @@ }, "media_file": "LAIN11.XA[5]", "node_name": "TaK059", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -6683,6 +8193,11 @@ }, "media_file": "LAIN05.XA[13]", "node_name": "Lda069", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6705,6 +8220,11 @@ }, "media_file": "LAIN05.XA[14]", "node_name": "Lda070", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6727,6 +8247,11 @@ }, "media_file": "LAIN05.XA[18]", "node_name": "Lda074", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6749,6 +8274,11 @@ }, "media_file": "LAIN05.XA[19]", "node_name": "Lda075", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6771,6 +8301,11 @@ }, "media_file": "F008.STR[0]", "node_name": "Dc1006", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -6793,6 +8328,11 @@ }, "media_file": "LAIN11.XA[6]", "node_name": "TaK060", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -6815,6 +8355,11 @@ }, "media_file": "LAIN13.XA[2]", "node_name": "TaK151", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -6837,6 +8382,11 @@ }, "media_file": "LAIN05.XA[17]", "node_name": "Lda073", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6861,6 +8411,11 @@ }, "media_file": "LAIN05.XA[20]", "node_name": "Lda076", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6883,6 +8438,11 @@ }, "media_file": "LAIN05.XA[21]", "node_name": "Lda077", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -6905,6 +8465,11 @@ }, "media_file": "LAIN05.XA[22]", "node_name": "Lda078", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6927,6 +8492,11 @@ }, "media_file": "LAIN05.XA[23]", "node_name": "Lda079", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -6949,6 +8519,11 @@ }, "media_file": "LAIN11.XA[7]", "node_name": "TaK061", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -6971,6 +8546,11 @@ }, "media_file": "LAIN02.XA[2]", "node_name": "Cou035", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -6993,6 +8573,11 @@ }, "media_file": "F010.STR[0]", "node_name": "Dc1007", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -7015,6 +8600,11 @@ }, "media_file": "LAIN02.XA[31]", "node_name": "Dia026", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -7037,6 +8627,11 @@ }, "media_file": "F015.STR[0]", "node_name": "Dc1011", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -7059,6 +8654,11 @@ }, "media_file": "LAIN05.XA[24]", "node_name": "Lda080", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7081,6 +8681,11 @@ }, "media_file": "LAIN05.XA[25]", "node_name": "Lda081", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7103,6 +8708,11 @@ }, "media_file": "LAIN05.XA[26]", "node_name": "Lda082", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7125,6 +8735,11 @@ }, "media_file": "LAIN05.XA[27]", "node_name": "Lda083", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7147,6 +8762,11 @@ }, "media_file": "LAIN11.XA[8]", "node_name": "TaK062", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -7169,6 +8789,11 @@ }, "media_file": "LAIN13.XA[3]", "node_name": "TaK152", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -7191,6 +8816,11 @@ }, "media_file": "LAIN05.XA[28]", "node_name": "Lda084", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7213,6 +8843,11 @@ }, "media_file": "LAIN05.XA[29]", "node_name": "Lda085", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7235,6 +8870,11 @@ }, "media_file": "LAIN05.XA[30]", "node_name": "Lda086", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -7257,6 +8897,11 @@ }, "media_file": "LAIN05.XA[31]", "node_name": "Lda087", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7279,6 +8924,11 @@ }, "media_file": "F020.STR[0]", "node_name": "Dc1012", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -7303,6 +8953,11 @@ }, "media_file": "INS04.STR[0]", "node_name": "SSkn04", + "protocol_lines": { + "1": "movie tool", + "2": "playing movie", + "3": "freeware" + }, "required_final_video_viewcount": 0, "site": "A", "title": "mT up-date App.", @@ -7325,6 +8980,11 @@ }, "media_file": "LAIN21.XA[8]", "node_name": "GaTE04", + "protocol_lines": { + "1": "network tool", + "2": "changing site", + "3": " quarter of GP" + }, "required_final_video_viewcount": 0, "site": "A", "title": "nT APPLICATION", @@ -7347,6 +9007,11 @@ }, "media_file": "LAIN06.XA[0]", "node_name": "Lda088", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7369,6 +9034,11 @@ }, "media_file": "LAIN06.XA[1]", "node_name": "Lda089", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7391,6 +9061,11 @@ }, "media_file": "LAIN06.XA[2]", "node_name": "Lda090", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -7413,6 +9088,11 @@ }, "media_file": "F034.STR[0]", "node_name": "Dc1020", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -7435,6 +9115,11 @@ }, "media_file": "LAIN11.XA[9]", "node_name": "TaK063", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -7457,6 +9142,11 @@ }, "media_file": "LAIN13.XA[4]", "node_name": "TaK153", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -7479,6 +9169,11 @@ }, "media_file": "LAIN11.XA[10]", "node_name": "TaK064", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -7501,6 +9196,11 @@ }, "media_file": "LAIN06.XA[3]", "node_name": "Lda091", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -7523,6 +9223,11 @@ }, "media_file": "LAIN06.XA[4]", "node_name": "Lda092", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -7545,6 +9250,11 @@ }, "media_file": "LAIN06.XA[5]", "node_name": "Lda093", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -7567,6 +9277,11 @@ }, "media_file": "LAIN06.XA[9]", "node_name": "Lda097", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7589,6 +9304,11 @@ }, "media_file": "F024.STR[0]", "node_name": "Dc1014", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -7611,6 +9331,11 @@ }, "media_file": "LAIN11.XA[11]", "node_name": "TaK065", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -7633,6 +9358,11 @@ }, "media_file": "LAIN13.XA[5]", "node_name": "TaK154", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -7655,6 +9385,11 @@ }, "media_file": "LAIN06.XA[6]", "node_name": "Lda094", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7677,6 +9412,11 @@ }, "media_file": "LAIN06.XA[7]", "node_name": "Lda095", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7699,6 +9439,11 @@ }, "media_file": "LAIN06.XA[8]", "node_name": "Lda096", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7723,6 +9468,11 @@ }, "media_file": "LAIN06.XA[12]", "node_name": "Lda100", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7745,6 +9495,11 @@ }, "media_file": "LAIN06.XA[13]", "node_name": "Lda101", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -7767,6 +9522,11 @@ }, "media_file": "LAIN11.XA[12]", "node_name": "TaK066", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -7789,6 +9549,11 @@ }, "media_file": "LAIN06.XA[10]", "node_name": "Lda098", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -7811,6 +9576,11 @@ }, "media_file": "LAIN06.XA[11]", "node_name": "Lda099", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -7833,6 +9603,11 @@ }, "media_file": "LAIN06.XA[15]", "node_name": "Lda103", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7855,6 +9630,11 @@ }, "media_file": "LAIN06.XA[16]", "node_name": "Lda104", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7877,6 +9657,11 @@ }, "media_file": "LAIN06.XA[17]", "node_name": "Lda105", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7899,6 +9684,11 @@ }, "media_file": "LAIN11.XA[13]", "node_name": "TaK067", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -7921,6 +9711,11 @@ }, "media_file": "LAIN13.XA[6]", "node_name": "TaK155", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -7943,6 +9738,11 @@ }, "media_file": "LAIN11.XA[14]", "node_name": "TaK068", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -7965,6 +9765,11 @@ }, "media_file": "LAIN06.XA[14]", "node_name": "Lda102", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -7987,6 +9792,11 @@ }, "media_file": "LAIN06.XA[18]", "node_name": "Lda106", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8009,6 +9819,11 @@ }, "media_file": "LAIN06.XA[19]", "node_name": "Lda107", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8031,6 +9846,11 @@ }, "media_file": "LAIN06.XA[20]", "node_name": "Lda108", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8053,6 +9873,11 @@ }, "media_file": "LAIN11.XA[15]", "node_name": "TaK069", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -8075,6 +9900,11 @@ }, "media_file": "LAIN13.XA[7]", "node_name": "TaK156", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -8097,6 +9927,11 @@ }, "media_file": "LAIN11.XA[16]", "node_name": "TaK070", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -8119,6 +9954,11 @@ }, "media_file": "LAIN11.XA[17]", "node_name": "TaK071", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -8141,6 +9981,11 @@ }, "media_file": "LAIN13.XA[8]", "node_name": "TaK157", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -8165,6 +10010,11 @@ }, "media_file": "LAIN06.XA[21]", "node_name": "Lda109", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8187,6 +10037,11 @@ }, "media_file": "LAIN06.XA[22]", "node_name": "Lda110", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8209,6 +10064,11 @@ }, "media_file": "LAIN06.XA[23]", "node_name": "Lda111", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8231,6 +10091,11 @@ }, "media_file": "LAIN06.XA[24]", "node_name": "Lda112", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8253,6 +10118,11 @@ }, "media_file": "LAIN11.XA[18]", "node_name": "TaK072", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -8275,6 +10145,11 @@ }, "media_file": "LAIN11.XA[19]", "node_name": "TaK073", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -8297,6 +10172,11 @@ }, "media_file": "LAIN13.XA[9]", "node_name": "TaK158", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -8319,6 +10199,11 @@ }, "media_file": "LAIN11.XA[21]", "node_name": "TaK075", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -8341,6 +10226,11 @@ }, "media_file": "LAIN13.XA[10]", "node_name": "TaK159", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -8363,6 +10253,11 @@ }, "media_file": "LAIN06.XA[25]", "node_name": "Lda113", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8385,6 +10280,11 @@ }, "media_file": "LAIN06.XA[26]", "node_name": "Lda114", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8407,6 +10307,11 @@ }, "media_file": "LAIN06.XA[27]", "node_name": "Lda115", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8429,6 +10334,11 @@ }, "media_file": "LAIN06.XA[28]", "node_name": "Lda116", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8451,6 +10361,11 @@ }, "media_file": "F035.STR[0]", "node_name": "Dc1021", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -8473,6 +10388,11 @@ }, "media_file": "LAIN11.XA[20]", "node_name": "TaK074", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -8495,6 +10415,11 @@ }, "media_file": "LAIN21.XA[14]", "node_name": "P2-06", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 0, "site": "A", "title": "POLY-TAN PARTS", @@ -8517,6 +10442,11 @@ }, "media_file": "LAIN11.XA[22]", "node_name": "TaK076", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -8539,6 +10469,11 @@ }, "media_file": "LAIN06.XA[29]", "node_name": "Lda117", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8561,6 +10496,11 @@ }, "media_file": "LAIN06.XA[30]", "node_name": "Lda118", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8583,6 +10523,11 @@ }, "media_file": "LAIN06.XA[31]", "node_name": "Lda119", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8605,6 +10550,11 @@ }, "media_file": "LAIN07.XA[0]", "node_name": "Lda120", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -8629,6 +10579,11 @@ }, "media_file": "LAIN11.XA[29]", "node_name": "TaK083", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -8651,6 +10606,11 @@ }, "media_file": "LAIN11.XA[23]", "node_name": "TaK077", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -8673,6 +10633,11 @@ }, "media_file": "LAIN13.XA[11]", "node_name": "TaK160", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -8695,6 +10660,11 @@ }, "media_file": "LAIN07.XA[1]", "node_name": "Lda121", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8717,6 +10687,11 @@ }, "media_file": "LAIN07.XA[2]", "node_name": "Lda122", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8739,6 +10714,11 @@ }, "media_file": "LAIN07.XA[3]", "node_name": "Lda123", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8761,6 +10741,11 @@ }, "media_file": "LAIN07.XA[4]", "node_name": "Lda124", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8783,6 +10768,11 @@ }, "media_file": "LAIN07.XA[8]", "node_name": "Lda128", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8805,6 +10795,11 @@ }, "media_file": "F042.STR[0]", "node_name": "Dc1027", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -8827,6 +10822,11 @@ }, "media_file": "LAIN02.XA[3]", "node_name": "Cou036", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -8849,6 +10849,11 @@ }, "media_file": "LAIN03.XA[0]", "node_name": "Dia027", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -8871,6 +10876,11 @@ }, "media_file": "LAIN11.XA[24]", "node_name": "TaK078", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -8893,6 +10903,11 @@ }, "media_file": "LAIN07.XA[5]", "node_name": "Lda125", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8915,6 +10930,11 @@ }, "media_file": "LAIN07.XA[6]", "node_name": "Lda126", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8937,6 +10957,11 @@ }, "media_file": "LAIN07.XA[7]", "node_name": "Lda127", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8959,6 +10984,11 @@ }, "media_file": "LAIN07.XA[11]", "node_name": "Lda131", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -8981,6 +11011,11 @@ }, "media_file": "LAIN07.XA[12]", "node_name": "Lda132", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9003,6 +11038,11 @@ }, "media_file": "LAIN11.XA[28]", "node_name": "TaK082", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -9025,6 +11065,11 @@ }, "media_file": "LAIN11.XA[25]", "node_name": "TaK079", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -9047,6 +11092,11 @@ }, "media_file": "LAIN13.XA[12]", "node_name": "TaK161", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -9069,6 +11119,11 @@ }, "media_file": "LAIN07.XA[9]", "node_name": "Lda129", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9091,6 +11146,11 @@ }, "media_file": "LAIN07.XA[10]", "node_name": "Lda130", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9115,6 +11175,11 @@ }, "media_file": "LAIN07.XA[14]", "node_name": "Lda134", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9137,6 +11202,11 @@ }, "media_file": "LAIN07.XA[15]", "node_name": "Lda135", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9159,6 +11229,11 @@ }, "media_file": "LAIN07.XA[16]", "node_name": "Lda136", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9181,6 +11256,11 @@ }, "media_file": "LAIN11.XA[26]", "node_name": "TaK080", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -9203,6 +11283,11 @@ }, "media_file": "LAIN11.XA[27]", "node_name": "TaK081", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -9225,6 +11310,11 @@ }, "media_file": "LAIN13.XA[13]", "node_name": "TaK162", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -9247,6 +11337,11 @@ }, "media_file": "LAIN07.XA[13]", "node_name": "Lda133", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9269,6 +11364,11 @@ }, "media_file": "LAIN07.XA[17]", "node_name": "Lda137", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9291,6 +11391,11 @@ }, "media_file": "LAIN07.XA[18]", "node_name": "Lda138", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9313,6 +11418,11 @@ }, "media_file": "LAIN07.XA[19]", "node_name": "Lda139", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "A", "title": "lain's DIARY", @@ -9335,6 +11445,11 @@ }, "media_file": "LAIN02.XA[4]", "node_name": "Cou037", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -9357,6 +11472,11 @@ }, "media_file": "LAIN03.XA[1]", "node_name": "Dia028", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", @@ -9379,6 +11499,11 @@ }, "media_file": "LAIN13.XA[14]", "node_name": "TaK163", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "A", "title": "", @@ -9401,6 +11526,11 @@ }, "media_file": "LAIN07.XA[20]", "node_name": "Lda140", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9423,6 +11553,11 @@ }, "media_file": "LAIN07.XA[21]", "node_name": "Lda141", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9445,6 +11580,11 @@ }, "media_file": "LAIN07.XA[22]", "node_name": "Lda142", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9467,6 +11607,11 @@ }, "media_file": "LAIN07.XA[23]", "node_name": "Lda143", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9489,6 +11634,11 @@ }, "media_file": "LAIN11.XA[31]", "node_name": "TaK085", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -9513,6 +11663,11 @@ }, "media_file": "LAIN11.XA[30]", "node_name": "TaK084", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -9535,6 +11690,11 @@ }, "media_file": "LAIN13.XA[15]", "node_name": "TaK164", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -9557,6 +11717,11 @@ }, "media_file": "LAIN07.XA[24]", "node_name": "Lda144", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9579,6 +11744,11 @@ }, "media_file": "LAIN07.XA[25]", "node_name": "Lda145", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9601,6 +11771,11 @@ }, "media_file": "LAIN07.XA[26]", "node_name": "Lda146", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9623,6 +11798,11 @@ }, "media_file": "LAIN12.XA[0]", "node_name": "TaK086", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -9645,6 +11825,11 @@ }, "media_file": "LAIN13.XA[16]", "node_name": "TaK165", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -9667,6 +11852,11 @@ }, "media_file": "LAIN12.XA[1]", "node_name": "TaK087", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "A", "title": "", @@ -9689,6 +11879,11 @@ }, "media_file": "LAIN12.XA[2]", "node_name": "TaK088", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -9711,6 +11906,11 @@ }, "media_file": "LAIN13.XA[17]", "node_name": "TaK166", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "A", "title": "", @@ -9733,6 +11933,11 @@ }, "media_file": "LAIN07.XA[27]", "node_name": "Lda147", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9755,6 +11960,11 @@ }, "media_file": "LAIN07.XA[28]", "node_name": "Lda148", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9777,6 +11987,11 @@ }, "media_file": "LAIN12.XA[4]", "node_name": "TaK090", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -9799,6 +12014,11 @@ }, "media_file": "LAIN13.XA[18]", "node_name": "TaK167", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "A", "title": "", @@ -9821,6 +12041,11 @@ }, "media_file": "LAIN12.XA[3]", "node_name": "TaK089", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "A", "title": "", @@ -9843,6 +12068,11 @@ }, "media_file": "F038.STR[0]", "node_name": "Dc1024", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -9865,6 +12095,11 @@ }, "media_file": "LAIN09.XA[10]", "node_name": "Tda044", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "TOUKO's DIARY", @@ -9887,6 +12122,11 @@ }, "media_file": "F043.STR[0]", "node_name": "Dc1028", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DATA of CLN01", @@ -9909,6 +12149,11 @@ }, "media_file": "LAIN07.XA[29]", "node_name": "Lda149", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9931,6 +12176,11 @@ }, "media_file": "LAIN07.XA[30]", "node_name": "Lda150", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "lain's DIARY", @@ -9953,6 +12203,11 @@ }, "media_file": "LAIN02.XA[5]", "node_name": "Cou038", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "COUNSELING REC.", @@ -9975,6 +12230,11 @@ }, "media_file": "LAIN03.XA[2]", "node_name": "Dia029", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "A", "title": "DIAGNOSIS CLN01", diff --git a/src/resources/site_b.json b/src/resources/site_b.json index a05fd1e..954bce1 100644 --- a/src/resources/site_b.json +++ b/src/resources/site_b.json @@ -9,6 +9,11 @@ }, "media_file": "INS05.STR[0]", "node_name": "SSkn04#", + "protocol_lines": { + "1": "movie tool", + "2": "playing movie", + "3": "freeware" + }, "required_final_video_viewcount": 0, "site": "B", "title": "mT up-date App.", @@ -31,6 +36,11 @@ }, "media_file": "INS03.STR[0]", "node_name": "Dc1025", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -53,6 +63,11 @@ }, "media_file": "LAIN18.XA[8]", "node_name": "Tda045", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -75,6 +90,11 @@ }, "media_file": "LAIN18.XA[9]", "node_name": "Tda046", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -97,6 +117,11 @@ }, "media_file": "LAIN15.XA[17]", "node_name": "Lda151", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -119,6 +144,11 @@ }, "media_file": "LAIN15.XA[18]", "node_name": "Lda152", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -141,6 +171,11 @@ }, "media_file": "LAIN18.XA[10]", "node_name": "Tda047", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -163,6 +198,11 @@ }, "media_file": "LAIN19.XA[24]", "node_name": "TaK091", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "B", "title": "", @@ -185,6 +225,11 @@ }, "media_file": "LAIN20.XA[23]", "node_name": "TaK168", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -207,6 +252,11 @@ }, "media_file": "LAIN15.XA[19]", "node_name": "Lda153", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -229,6 +279,11 @@ }, "media_file": "LAIN15.XA[20]", "node_name": "Lda154", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -251,6 +306,11 @@ }, "media_file": "LAIN15.XA[22]", "node_name": "Lda156", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -273,6 +333,11 @@ }, "media_file": "LAIN18.XA[11]", "node_name": "Tda048", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -295,6 +360,11 @@ }, "media_file": "LAIN19.XA[25]", "node_name": "TaK092", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "B", "title": "", @@ -317,6 +387,11 @@ }, "media_file": "LAIN20.XA[24]", "node_name": "TaK169", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -339,6 +414,11 @@ }, "media_file": "LAIN15.XA[21]", "node_name": "Lda155", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -363,6 +443,11 @@ }, "media_file": "LAIN15.XA[23]", "node_name": "Lda157", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -385,6 +470,11 @@ }, "media_file": "LAIN15.XA[24]", "node_name": "Lda158", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -407,6 +497,11 @@ }, "media_file": "INS04.STR[0]", "node_name": "Dc1026", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -429,6 +524,11 @@ }, "media_file": "LAIN18.XA[12]", "node_name": "Tda049", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -451,6 +551,11 @@ }, "media_file": "LAIN18.XA[13]", "node_name": "Tda050", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -473,6 +578,11 @@ }, "media_file": "LAIN19.XA[26]", "node_name": "TaK093", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -495,6 +605,11 @@ }, "media_file": "LAIN15.XA[25]", "node_name": "Lda159", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -517,6 +632,11 @@ }, "media_file": "LAIN15.XA[26]", "node_name": "Lda160", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -539,6 +659,11 @@ }, "media_file": "LAIN18.XA[14]", "node_name": "Tda051", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -561,6 +686,11 @@ }, "media_file": "LAIN15.XA[27]", "node_name": "Lda161", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -583,6 +713,11 @@ }, "media_file": "LAIN15.XA[28]", "node_name": "Lda162", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -605,6 +740,11 @@ }, "media_file": "LAIN18.XA[15]", "node_name": "Tda052", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -627,6 +767,11 @@ }, "media_file": "LAIN18.XA[16]", "node_name": "Tda053", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -649,6 +794,11 @@ }, "media_file": "F002.STR[0]", "node_name": "Dc1042", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN-1", @@ -671,6 +821,11 @@ }, "media_file": "LAIN18.XA[17]", "node_name": "Tda054", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -693,6 +848,11 @@ }, "media_file": "LAIN15.XA[29]", "node_name": "Lda163", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -715,6 +875,11 @@ }, "media_file": "LAIN15.XA[30]", "node_name": "Lda164", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -739,6 +904,11 @@ }, "media_file": "LAIN19.XA[27]", "node_name": "TaK094", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -761,6 +931,11 @@ }, "media_file": "LAIN20.XA[25]", "node_name": "TaK170", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -783,6 +958,11 @@ }, "media_file": "LAIN19.XA[28]", "node_name": "TaK095", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -805,6 +985,11 @@ }, "media_file": "LAIN20.XA[26]", "node_name": "TaK171", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -827,6 +1012,11 @@ }, "media_file": "LAIN18.XA[18]", "node_name": "Tda055", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -849,6 +1039,11 @@ }, "media_file": "LAIN15.XA[31]", "node_name": "Lda165", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -871,6 +1066,11 @@ }, "media_file": "LAIN16.XA[0]", "node_name": "Lda166", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -893,6 +1093,11 @@ }, "media_file": "LAIN16.XA[2]", "node_name": "Lda168", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -915,6 +1120,11 @@ }, "media_file": "LAIN16.XA[3]", "node_name": "Lda169", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -937,6 +1147,11 @@ }, "media_file": "LAIN16.XA[4]", "node_name": "Lda170", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -959,6 +1174,11 @@ }, "media_file": "LAIN18.XA[19]", "node_name": "Tda056", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -981,6 +1201,11 @@ }, "media_file": "LAIN18.XA[20]", "node_name": "Tda057", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1003,6 +1228,11 @@ }, "media_file": "LAIN18.XA[21]", "node_name": "Tda058", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1025,6 +1255,11 @@ }, "media_file": "LAIN18.XA[22]", "node_name": "Tda059", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1047,6 +1282,11 @@ }, "media_file": "LAIN16.XA[1]", "node_name": "Lda167", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1069,6 +1309,11 @@ }, "media_file": "LAIN16.XA[5]", "node_name": "Lda171", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1091,6 +1336,11 @@ }, "media_file": "LAIN16.XA[6]", "node_name": "Lda172", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1113,6 +1363,11 @@ }, "media_file": "LAIN16.XA[7]", "node_name": "Lda173", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1135,6 +1390,11 @@ }, "media_file": "LAIN16.XA[8]", "node_name": "Lda174", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1157,6 +1417,11 @@ }, "media_file": "LAIN18.XA[23]", "node_name": "Tda060", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1179,6 +1444,11 @@ }, "media_file": "LAIN18.XA[24]", "node_name": "Tda061", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1201,6 +1471,11 @@ }, "media_file": "LAIN19.XA[29]", "node_name": "TaK096", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -1225,6 +1500,11 @@ }, "media_file": "LAIN16.XA[9]", "node_name": "Lda175", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1247,6 +1527,11 @@ }, "media_file": "LAIN16.XA[10]", "node_name": "Lda176", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1269,6 +1554,11 @@ }, "media_file": "LAIN16.XA[11]", "node_name": "Lda177", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1291,6 +1581,11 @@ }, "media_file": "LAIN16.XA[12]", "node_name": "Lda178", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1313,6 +1608,11 @@ }, "media_file": "LAIN16.XA[13]", "node_name": "Lda179", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1335,6 +1635,11 @@ }, "media_file": "LAIN19.XA[30]", "node_name": "TaK097", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -1357,6 +1662,11 @@ }, "media_file": "LAIN20.XA[27]", "node_name": "TaK172", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -1379,6 +1689,11 @@ }, "media_file": "LAIN18.XA[25]", "node_name": "Tda062", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1401,6 +1716,11 @@ }, "media_file": "LAIN18.XA[26]", "node_name": "Tda063", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1423,6 +1743,11 @@ }, "media_file": "LAIN18.XA[27]", "node_name": "Tda064", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1445,6 +1770,11 @@ }, "media_file": "LAIN19.XA[31]", "node_name": "TaK098", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "B", "title": "", @@ -1467,6 +1797,11 @@ }, "media_file": "LAIN20.XA[0]", "node_name": "TaK099", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "B", "title": "", @@ -1489,6 +1824,11 @@ }, "media_file": "LAIN20.XA[28]", "node_name": "TaK173", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -1511,6 +1851,11 @@ }, "media_file": "INS06.STR[0]", "node_name": "SSkn05", + "protocol_lines": { + "1": "movie tool", + "2": "playing movie", + "3": "freeware" + }, "required_final_video_viewcount": 0, "site": "B", "title": "mT up-date App.", @@ -1533,6 +1878,11 @@ }, "media_file": "LAIN14.XA[15]", "node_name": "Dia030", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -1555,6 +1905,11 @@ }, "media_file": "LAIN16.XA[14]", "node_name": "Lda180", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1577,6 +1932,11 @@ }, "media_file": "LAIN16.XA[15]", "node_name": "Lda181", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1599,6 +1959,11 @@ }, "media_file": "LAIN15.XA[7]", "node_name": "Ere001", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "RESEARCH \"Ky\"", @@ -1621,6 +1986,11 @@ }, "media_file": "LAIN18.XA[28]", "node_name": "Tda065", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1643,6 +2013,11 @@ }, "media_file": "LAIN18.XA[29]", "node_name": "Tda066", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1665,6 +2040,11 @@ }, "media_file": "LAIN18.XA[30]", "node_name": "Tda067", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1687,6 +2067,11 @@ }, "media_file": "LAIN14.XA[0]", "node_name": "Cou039", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -1711,6 +2096,11 @@ }, "media_file": "LAIN15.XA[8]", "node_name": "Ere002", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "RESEARCH \"Ky\"", @@ -1733,6 +2123,11 @@ }, "media_file": "LAIN15.XA[9]", "node_name": "Ere003", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 2, "site": "B", "title": "RESEARCH \"Ky\"", @@ -1755,6 +2150,11 @@ }, "media_file": "LAIN16.XA[16]", "node_name": "Lda182", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1777,6 +2177,11 @@ }, "media_file": "LAIN16.XA[17]", "node_name": "Lda183", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1799,6 +2204,11 @@ }, "media_file": "LAIN18.XA[31]", "node_name": "Tda068", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1821,6 +2231,11 @@ }, "media_file": "LAIN19.XA[0]", "node_name": "Tda069", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1843,6 +2258,11 @@ }, "media_file": "LAIN19.XA[1]", "node_name": "Tda070", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1865,6 +2285,11 @@ }, "media_file": "LAIN19.XA[2]", "node_name": "Tda071", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -1887,6 +2312,11 @@ }, "media_file": "LAIN15.XA[10]", "node_name": "Ere004", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "RESEARCH \"Ky\"", @@ -1909,6 +2339,11 @@ }, "media_file": "LAIN15.XA[11]", "node_name": "Ere005", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 2, "site": "B", "title": "RESEARCH \"Ky\"", @@ -1931,6 +2366,11 @@ }, "media_file": "LAIN15.XA[12]", "node_name": "Ere006", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "RESEARCH \"Ky\"", @@ -1953,6 +2393,11 @@ }, "media_file": "LAIN16.XA[18]", "node_name": "Lda184", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1975,6 +2420,11 @@ }, "media_file": "LAIN16.XA[19]", "node_name": "Lda185", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -1997,6 +2447,11 @@ }, "media_file": "LAIN15.XA[13]", "node_name": "Ere007", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "RESEARCH \"Ka\"", @@ -2019,6 +2474,11 @@ }, "media_file": "LAIN15.XA[14]", "node_name": "Ere008", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "RESEARCH \"Ka\"", @@ -2041,6 +2501,11 @@ }, "media_file": "LAIN15.XA[15]", "node_name": "Ere009", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "RESEARCH \"Ka\"", @@ -2063,6 +2528,11 @@ }, "media_file": "LAIN15.XA[16]", "node_name": "Ere010", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 2, "site": "B", "title": "RESEARCH \"Ka\"", @@ -2085,6 +2555,11 @@ }, "media_file": "LAIN14.XA[1]", "node_name": "Cou040", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -2107,6 +2582,11 @@ }, "media_file": "LAIN14.XA[16]", "node_name": "Dia031", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -2129,6 +2609,11 @@ }, "media_file": "LAIN16.XA[20]", "node_name": "Lda186", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2151,6 +2636,11 @@ }, "media_file": "LAIN20.XA[1]", "node_name": "TaK100", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -2173,6 +2663,11 @@ }, "media_file": "LAIN20.XA[29]", "node_name": "TaK174", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -2197,6 +2692,11 @@ }, "media_file": "LAIN14.XA[3]", "node_name": "Cou042", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -2219,6 +2719,11 @@ }, "media_file": "LAIN20.XA[2]", "node_name": "TaK101", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -2241,6 +2746,11 @@ }, "media_file": "LAIN14.XA[19]", "node_name": "Dia034", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -2263,6 +2773,11 @@ }, "media_file": "LAIN20.XA[3]", "node_name": "TaK102", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -2285,6 +2800,11 @@ }, "media_file": "LAIN20.XA[30]", "node_name": "TaK175", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -2307,6 +2827,11 @@ }, "media_file": "LAIN14.XA[2]", "node_name": "Cou041", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -2329,6 +2854,11 @@ }, "media_file": "LAIN14.XA[17]", "node_name": "Dia032", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -2351,6 +2881,11 @@ }, "media_file": "INS15.STR[0]", "node_name": "Dc1040", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -2373,6 +2908,11 @@ }, "media_file": "LAIN20.XA[4]", "node_name": "TaK103", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "B", "title": "", @@ -2395,6 +2935,11 @@ }, "media_file": "LAIN19.XA[3]", "node_name": "Tda072", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -2417,6 +2962,11 @@ }, "media_file": "LAIN19.XA[4]", "node_name": "Tda073", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -2439,6 +2989,11 @@ }, "media_file": "LAIN16.XA[21]", "node_name": "Lda187", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2461,6 +3016,11 @@ }, "media_file": "LAIN16.XA[22]", "node_name": "Lda188", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2483,6 +3043,11 @@ }, "media_file": "LAIN19.XA[5]", "node_name": "Tda074", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -2505,6 +3070,11 @@ }, "media_file": "LAIN14.XA[4]", "node_name": "Cou043", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -2527,6 +3097,11 @@ }, "media_file": "LAIN14.XA[18]", "node_name": "Dia033", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -2549,6 +3124,11 @@ }, "media_file": "LAIN14.XA[20]", "node_name": "Dia035", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -2571,6 +3151,11 @@ }, "media_file": "LAIN14.XA[21]", "node_name": "Dia036", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -2593,6 +3178,11 @@ }, "media_file": "F001.STR[0]", "node_name": "Dc1041", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN-1", @@ -2615,6 +3205,11 @@ }, "media_file": "LAIN16.XA[23]", "node_name": "Lda189", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2637,6 +3232,11 @@ }, "media_file": "LAIN16.XA[24]", "node_name": "Lda190", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2661,6 +3261,11 @@ }, "media_file": "LAIN16.XA[26]", "node_name": "Lda192", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2683,6 +3288,11 @@ }, "media_file": "LAIN16.XA[27]", "node_name": "Lda193", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2705,6 +3315,11 @@ }, "media_file": "LAIN16.XA[28]", "node_name": "Lda194", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2727,6 +3342,11 @@ }, "media_file": "LAIN19.XA[6]", "node_name": "Tda075", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -2749,6 +3369,11 @@ }, "media_file": "LAIN14.XA[22]", "node_name": "Dia037", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -2771,6 +3396,11 @@ }, "media_file": "LAIN14.XA[7]", "node_name": "Cou046", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -2793,6 +3423,11 @@ }, "media_file": "LAIN16.XA[25]", "node_name": "Lda191", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2815,6 +3450,11 @@ }, "media_file": "LAIN20.XA[5]", "node_name": "TaK104", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "B", "title": "", @@ -2837,6 +3477,11 @@ }, "media_file": "LAIN20.XA[31]", "node_name": "TaK176", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -2859,6 +3504,11 @@ }, "media_file": "LAIN16.XA[29]", "node_name": "Lda195", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2881,6 +3531,11 @@ }, "media_file": "LAIN16.XA[30]", "node_name": "Lda196", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -2903,6 +3558,11 @@ }, "media_file": "LAIN20.XA[6]", "node_name": "TaK105", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "B", "title": "", @@ -2925,6 +3585,11 @@ }, "media_file": "LAIN21.XA[0]", "node_name": "TaK177", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -2947,6 +3612,11 @@ }, "media_file": "LAIN20.XA[7]", "node_name": "TaK106", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -2969,6 +3639,11 @@ }, "media_file": "INS07.STR[0]", "node_name": "SSkn06", + "protocol_lines": { + "1": "movie tool", + "2": "playing movie", + "3": "freeware" + }, "required_final_video_viewcount": 0, "site": "B", "title": "mT up-date App.", @@ -2991,6 +3666,11 @@ }, "media_file": "LAIN14.XA[5]", "node_name": "Cou044", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -3013,6 +3693,11 @@ }, "media_file": "LAIN14.XA[6]", "node_name": "Cou045", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -3035,6 +3720,11 @@ }, "media_file": "F003.STR[0]", "node_name": "Dc1043", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN-1", @@ -3057,6 +3747,11 @@ }, "media_file": "LAIN16.XA[31]", "node_name": "Lda197", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3079,6 +3774,11 @@ }, "media_file": "LAIN17.XA[0]", "node_name": "Lda198", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3101,6 +3801,11 @@ }, "media_file": "F004.STR[0]", "node_name": "Dc1044", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN-1", @@ -3123,6 +3828,11 @@ }, "media_file": "LAIN19.XA[7]", "node_name": "Tda076", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -3147,6 +3857,11 @@ }, "media_file": "LAIN14.XA[23]", "node_name": "Dia038", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN01", @@ -3169,6 +3884,11 @@ }, "media_file": "LAIN20.XA[9]", "node_name": "TaK108", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -3191,6 +3911,11 @@ }, "media_file": "LAIN14.XA[8]", "node_name": "Cou047", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -3213,6 +3938,11 @@ }, "media_file": "F008.STR[0]", "node_name": "Dc1046", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN-1", @@ -3235,6 +3965,11 @@ }, "media_file": "F006.STR[0]", "node_name": "Dc1045", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN-1", @@ -3257,6 +3992,11 @@ }, "media_file": "LAIN17.XA[1]", "node_name": "Lda199", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3279,6 +4019,11 @@ }, "media_file": "LAIN17.XA[2]", "node_name": "Lda200", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3301,6 +4046,11 @@ }, "media_file": "LAIN15.XA[2]", "node_name": "Eda001", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/poa_server" + }, "required_final_video_viewcount": 3, "site": "B", "title": "RESEARCH \"Ma\"", @@ -3323,6 +4073,11 @@ }, "media_file": "LAIN15.XA[3]", "node_name": "Eda002", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/poa_server" + }, "required_final_video_viewcount": 3, "site": "B", "title": "RESEARCH \"Ma\"", @@ -3345,6 +4100,11 @@ }, "media_file": "LAIN15.XA[4]", "node_name": "Eda003", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/poa_server" + }, "required_final_video_viewcount": 3, "site": "B", "title": "RESEARCH \"Ma\"", @@ -3367,6 +4127,11 @@ }, "media_file": "LAIN21.XA[2]", "node_name": "TaK179", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -3389,6 +4154,11 @@ }, "media_file": "F015.STR[0]", "node_name": "Dc1051", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -3411,6 +4181,11 @@ }, "media_file": "LAIN20.XA[8]", "node_name": "TaK107", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -3433,6 +4208,11 @@ }, "media_file": "LAIN21.XA[1]", "node_name": "TaK178", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -3455,6 +4235,11 @@ }, "media_file": "LAIN17.XA[3]", "node_name": "Lda201", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3477,6 +4262,11 @@ }, "media_file": "LAIN17.XA[4]", "node_name": "Lda202", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3499,6 +4289,11 @@ }, "media_file": "LAIN17.XA[5]", "node_name": "Lda203", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3521,6 +4316,11 @@ }, "media_file": "LAIN17.XA[6]", "node_name": "Lda204", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3543,6 +4343,11 @@ }, "media_file": "LAIN17.XA[7]", "node_name": "Lda205", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3565,6 +4370,11 @@ }, "media_file": "LAIN14.XA[9]", "node_name": "Cou048", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -3587,6 +4397,11 @@ }, "media_file": "INS05.STR[0]", "node_name": "Dc1030", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -3609,6 +4424,11 @@ }, "media_file": "LAIN14.XA[24]", "node_name": "Dia039", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -3631,6 +4451,11 @@ }, "media_file": "LAIN14.XA[25]", "node_name": "Dia040", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -3653,6 +4478,11 @@ }, "media_file": "INS06.STR[0]", "node_name": "Dc1031", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -3677,6 +4507,11 @@ }, "media_file": "LAIN17.XA[8]", "node_name": "Lda206", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3699,6 +4534,11 @@ }, "media_file": "LAIN17.XA[9]", "node_name": "Lda207", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3721,6 +4561,11 @@ }, "media_file": "LAIN17.XA[10]", "node_name": "Lda208", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3743,6 +4588,11 @@ }, "media_file": "INS07.STR[0]", "node_name": "Dc1032", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -3765,6 +4615,11 @@ }, "media_file": "INS08.STR[0]", "node_name": "Dc1033", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -3787,6 +4642,11 @@ }, "media_file": "LAIN19.XA[8]", "node_name": "Tda077", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -3809,6 +4669,11 @@ }, "media_file": "LAIN19.XA[9]", "node_name": "Tda078", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -3831,6 +4696,11 @@ }, "media_file": "LAIN14.XA[26]", "node_name": "Dia041", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -3853,6 +4723,11 @@ }, "media_file": "LAIN14.XA[10]", "node_name": "Cou049", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -3875,6 +4750,11 @@ }, "media_file": "LAIN17.XA[11]", "node_name": "Lda209", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3897,6 +4777,11 @@ }, "media_file": "LAIN17.XA[12]", "node_name": "Lda210", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3919,6 +4804,11 @@ }, "media_file": "LAIN17.XA[13]", "node_name": "Lda211", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -3941,6 +4831,11 @@ }, "media_file": "INS09.STR[0]", "node_name": "Dc1034", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -3963,6 +4858,11 @@ }, "media_file": "LAIN19.XA[10]", "node_name": "Tda079", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -3985,6 +4885,11 @@ }, "media_file": "LAIN19.XA[11]", "node_name": "Tda080", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4007,6 +4912,11 @@ }, "media_file": "LAIN14.XA[27]", "node_name": "Dia042", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -4029,6 +4939,11 @@ }, "media_file": "LAIN14.XA[28]", "node_name": "Dia043", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -4051,6 +4966,11 @@ }, "media_file": "LAIN14.XA[11]", "node_name": "Cou050", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -4073,6 +4993,11 @@ }, "media_file": "LAIN17.XA[14]", "node_name": "Lda212", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4095,6 +5020,11 @@ }, "media_file": "INS10.STR[0]", "node_name": "Dc1035", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -4117,6 +5047,11 @@ }, "media_file": "INS12.STR[0]", "node_name": "Dc1037", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -4139,6 +5074,11 @@ }, "media_file": "LAIN19.XA[12]", "node_name": "Tda081", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4163,6 +5103,11 @@ }, "media_file": "LAIN20.XA[10]", "node_name": "TaK109", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -4185,6 +5130,11 @@ }, "media_file": "LAIN19.XA[13]", "node_name": "Tda082", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4207,6 +5157,11 @@ }, "media_file": "LAIN19.XA[14]", "node_name": "Tda083", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4229,6 +5184,11 @@ }, "media_file": "LAIN17.XA[15]", "node_name": "Lda213", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4251,6 +5211,11 @@ }, "media_file": "LAIN17.XA[16]", "node_name": "Lda214", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4273,6 +5238,11 @@ }, "media_file": "INS13.STR[0]", "node_name": "Dc1038", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -4295,6 +5265,11 @@ }, "media_file": "INS14.STR[0]", "node_name": "Dc1039", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN-1", @@ -4317,6 +5292,11 @@ }, "media_file": "LAIN17.XA[17]", "node_name": "Lda215", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4339,6 +5319,11 @@ }, "media_file": "LAIN17.XA[18]", "node_name": "Lda216", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4361,6 +5346,11 @@ }, "media_file": "F020.STR[0]", "node_name": "Dc1052", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -4383,6 +5373,11 @@ }, "media_file": "LAIN20.XA[11]", "node_name": "TaK110", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -4405,6 +5400,11 @@ }, "media_file": "LAIN19.XA[15]", "node_name": "Tda084", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4427,6 +5427,11 @@ }, "media_file": "LAIN21.XA[3]", "node_name": "TaK180", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -4449,6 +5454,11 @@ }, "media_file": "LAIN15.XA[5]", "node_name": "Eda004", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/poa_server" + }, "required_final_video_viewcount": 4, "site": "B", "title": "RESEARCH \"Ma\"", @@ -4471,6 +5481,11 @@ }, "media_file": "LAIN17.XA[19]", "node_name": "Lda217", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4493,6 +5508,11 @@ }, "media_file": "LAIN17.XA[20]", "node_name": "Lda218", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4515,6 +5535,11 @@ }, "media_file": "LAIN17.XA[21]", "node_name": "Lda219", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4537,6 +5562,11 @@ }, "media_file": "LAIN14.XA[29]", "node_name": "Dia044", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -4559,6 +5589,11 @@ }, "media_file": "LAIN14.XA[30]", "node_name": "Dia045", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -4581,6 +5616,11 @@ }, "media_file": "LAIN19.XA[16]", "node_name": "Tda085", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4603,6 +5643,11 @@ }, "media_file": "LAIN14.XA[12]", "node_name": "Cou051", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -4627,6 +5672,11 @@ }, "media_file": "LAIN17.XA[22]", "node_name": "Lda220", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4649,6 +5699,11 @@ }, "media_file": "LAIN17.XA[23]", "node_name": "Lda221", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4671,6 +5726,11 @@ }, "media_file": "LAIN17.XA[24]", "node_name": "Lda222", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4693,6 +5753,11 @@ }, "media_file": "LAIN17.XA[25]", "node_name": "Lda223", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4715,6 +5780,11 @@ }, "media_file": "LAIN19.XA[17]", "node_name": "Tda086", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4737,6 +5807,11 @@ }, "media_file": "LAIN19.XA[18]", "node_name": "Tda087", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4759,6 +5834,11 @@ }, "media_file": "LAIN14.XA[13]", "node_name": "Cou052", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -4781,6 +5861,11 @@ }, "media_file": "LAIN14.XA[31]", "node_name": "Dia046", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -4803,6 +5888,11 @@ }, "media_file": "LAIN15.XA[0]", "node_name": "Dia047", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -4825,6 +5915,11 @@ }, "media_file": "LAIN20.XA[12]", "node_name": "TaK111", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -4847,6 +5942,11 @@ }, "media_file": "LAIN17.XA[26]", "node_name": "Lda224", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4869,6 +5969,11 @@ }, "media_file": "LAIN17.XA[27]", "node_name": "Lda225", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4891,6 +5996,11 @@ }, "media_file": "LAIN19.XA[19]", "node_name": "Tda088", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4913,6 +6023,11 @@ }, "media_file": "LAIN19.XA[20]", "node_name": "Tda089", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -4935,6 +6050,11 @@ }, "media_file": "LAIN17.XA[30]", "node_name": "Lda228", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4957,6 +6077,11 @@ }, "media_file": "LAIN17.XA[31]", "node_name": "Lda229", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -4979,6 +6104,11 @@ }, "media_file": "F022.STR[0]", "node_name": "Dc1053", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -5001,6 +6131,11 @@ }, "media_file": "LAIN20.XA[13]", "node_name": "TaK112", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "B", "title": "", @@ -5023,6 +6158,11 @@ }, "media_file": "LAIN19.XA[21]", "node_name": "Tda090", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -5045,6 +6185,11 @@ }, "media_file": "LAIN17.XA[28]", "node_name": "Lda226", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -5067,6 +6212,11 @@ }, "media_file": "LAIN17.XA[29]", "node_name": "Lda227", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -5091,6 +6241,11 @@ }, "media_file": "LAIN14.XA[14]", "node_name": "Cou053", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "COUNSELING REC.", @@ -5113,6 +6268,11 @@ }, "media_file": "LAIN15.XA[1]", "node_name": "Dia048", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DIAGNOSIS CLN00", @@ -5135,6 +6295,11 @@ }, "media_file": "LAIN21.XA[4]", "node_name": "TaK181", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -5157,6 +6322,11 @@ }, "media_file": "F024.STR[0]", "node_name": "Dc1054", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -5179,6 +6349,11 @@ }, "media_file": "LAIN19.XA[22]", "node_name": "Tda091", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -5201,6 +6376,11 @@ }, "media_file": "F012.STR[0]", "node_name": "Dc1048", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN00", @@ -5223,6 +6403,11 @@ }, "media_file": "F010.STR[0]", "node_name": "Dc1047", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN00", @@ -5245,6 +6430,11 @@ }, "media_file": "LAIN20.XA[14]", "node_name": "TaK113", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -5267,6 +6457,11 @@ }, "media_file": "LAIN20.XA[15]", "node_name": "TaK114", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -5289,6 +6484,11 @@ }, "media_file": "INS11.STR[0]", "node_name": "Dc1036", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -5311,6 +6511,11 @@ }, "media_file": "LAIN19.XA[23]", "node_name": "Tda092", + "protocol_lines": { + "1": "authorized_il", + "2": "decoded file:t", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "TOUKO's DIARY", @@ -5333,6 +6538,11 @@ }, "media_file": "F013.STR[0]", "node_name": "Dc1049", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN00", @@ -5355,6 +6565,11 @@ }, "media_file": "F014.STR[0]", "node_name": "Dc1050", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN00", @@ -5377,6 +6592,11 @@ }, "media_file": "LAIN15.XA[6]", "node_name": "Eda005", + "protocol_lines": { + "1": "authorized_il", + "2": "downloaded file", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 4, "site": "B", "title": "NEWS SHOW", @@ -5399,6 +6619,11 @@ }, "media_file": "LAIN20.XA[16]", "node_name": "TaK115", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -5421,6 +6646,11 @@ }, "media_file": "F025.STR[0]", "node_name": "Dc1055", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -5445,6 +6675,11 @@ }, "media_file": "LAIN18.XA[0]", "node_name": "Lda230", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -5467,6 +6702,11 @@ }, "media_file": "LAIN18.XA[1]", "node_name": "Lda231", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 1, "site": "B", "title": "lain's DIARY", @@ -5489,6 +6729,11 @@ }, "media_file": "LAIN18.XA[2]", "node_name": "Lda232", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -5511,6 +6756,11 @@ }, "media_file": "LAIN20.XA[17]", "node_name": "TaK116", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 3, "site": "B", "title": "", @@ -5533,6 +6783,11 @@ }, "media_file": "LAIN20.XA[18]", "node_name": "TaK117", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 4, "site": "B", "title": "", @@ -5555,6 +6810,11 @@ }, "media_file": "LAIN20.XA[19]", "node_name": "TaK118", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "B", "title": "", @@ -5577,6 +6837,11 @@ }, "media_file": "F026.STR[0]", "node_name": "Dc1056", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -5599,6 +6864,11 @@ }, "media_file": "LAIN18.XA[3]", "node_name": "Lda233", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -5621,6 +6891,11 @@ }, "media_file": "LAIN18.XA[4]", "node_name": "Lda234", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 2, "site": "B", "title": "lain's DIARY", @@ -5643,6 +6918,11 @@ }, "media_file": "LAIN18.XA[5]", "node_name": "Lda235", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -5665,6 +6945,11 @@ }, "media_file": "LAIN20.XA[20]", "node_name": "TaK119", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 2, "site": "B", "title": "", @@ -5687,6 +6972,11 @@ }, "media_file": "LAIN20.XA[21]", "node_name": "TaK120", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 1, "site": "B", "title": "", @@ -5709,6 +6999,11 @@ }, "media_file": "F027.STR[0]", "node_name": "Dc1057", + "protocol_lines": { + "1": "authorized_il", + "2": "active_file:lv", + "3": "ftp/tl.S_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "DATA of CLN01", @@ -5731,6 +7026,11 @@ }, "media_file": "F029.STR[0]", "node_name": "Dc1058", + "protocol_lines": { + "1": "DATA of CLN01", + "2": "authorized_il", + "3": "active_file:lv" + }, "required_final_video_viewcount": 0, "site": "B", "title": "101", @@ -5753,6 +7053,11 @@ }, "media_file": "LAIN18.XA[6]", "node_name": "Lda236", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -5775,6 +7080,11 @@ }, "media_file": "LAIN18.XA[7]", "node_name": "Lda237", + "protocol_lines": { + "1": "anonymous_user", + "2": "active_file:", + "3": "ftp/tl.L_server" + }, "required_final_video_viewcount": 0, "site": "B", "title": "lain's DIARY", @@ -5797,6 +7107,11 @@ }, "media_file": "LAIN20.XA[22]", "node_name": "TaK121", + "protocol_lines": { + "1": "", + "2": "", + "3": "" + }, "required_final_video_viewcount": 5, "site": "B", "title": "", diff --git a/src/scenes/MediaScene.tsx b/src/scenes/MediaScene.tsx index c3096cb..777a677 100644 --- a/src/scenes/MediaScene.tsx +++ b/src/scenes/MediaScene.tsx @@ -132,7 +132,7 @@ const MediaScene = () => { - + diff --git a/src/store.ts b/src/store.ts index 5dafb64..4f85b4a 100644 --- a/src/store.ts +++ b/src/store.ts @@ -47,6 +47,8 @@ type State = { activeNodeRot: number[]; activeNodeAttributes: NodeAttributes; + protocolLinesToggled: boolean; + lainMoveState: string; canLainMove: boolean; @@ -63,7 +65,6 @@ type State = { endSceneSelectionVisible: boolean; activePauseComponent: PauseComponent; - pauseExitAnimation: boolean; showingAbout: boolean; permissionDenied: boolean; @@ -141,6 +142,9 @@ export const useStore = create( lainMoveState: "standing", canLainMove: true, + // extra node data display + protocolLinesToggled: false, + // site activeSite: "a", siteRot: [0, 0, 0], @@ -363,6 +367,7 @@ export const getMainSceneContext = (): MainSceneContext => { siteSaveState: state.siteSaveState, wordNotFound: state.wordNotFound, canLainMove: state.canLainMove, + protocolLinesToggled: state.protocolLinesToggled, }; }; diff --git a/src/types/types.ts b/src/types/types.ts index ab99ee1..eb2bdae 100644 --- a/src/types/types.ts +++ b/src/types/types.ts @@ -57,6 +57,11 @@ export type NodeData = { unlocked_by: string; upgrade_requirement: number; words: { 1: string; 2: string; 3: string }; + protocol_lines: { + 1: string; + 2: string; + 3: string; + }; matrixIndices?: NodeMatrixIndices; is_viewed?: number; }; @@ -109,6 +114,7 @@ export interface MainSceneContext extends PromptContext { wordNotFound: boolean; siteSaveState: SiteSaveState; canLainMove: boolean; + protocolLinesToggled: boolean; } export type SsknSceneContext = { @@ -186,12 +192,9 @@ export type HUDData = { big: { position: number[]; initial_position: number[]; + protocol_line_positions: number[][]; }; big_text: number[]; - medium_text: { - position: number[]; - initial_position: number[]; - }; }; export type UserSaveState = { diff --git a/src/utils/getKeyPress.ts b/src/utils/getKeyPress.ts index d8522d7..c619cf7 100644 --- a/src/utils/getKeyPress.ts +++ b/src/utils/getKeyPress.ts @@ -1,16 +1,20 @@ const getKeyPress = (key: string) => { - if (["X", "Z", "D", "E", "V"].includes(key)) key = key.toLowerCase(); + if (["X", "Z", "D", "E", "V", "T", "W", "R"].includes(key)) + key = key.toLowerCase(); const keyCodeAssocs = { - ArrowDown: "DOWN", // down arrow - ArrowLeft: "LEFT", // left arrow - ArrowUp: "UP", // up arrow - ArrowRight: "RIGHT", // right arrow - x: "CIRCLE", // x key - z: "CROSS", // z key - d: "TRIANGLE", // d key - e: "L2", // e key - v: "START", // v key + ArrowDown: "DOWN", + ArrowLeft: "LEFT", + ArrowUp: "UP", + ArrowRight: "RIGHT", + x: "CIRCLE", + z: "CROSS", + d: "TRIANGLE", + s: "SQUARE", + e: "L2", + v: "START", + w: "L1", + r: "R1", }; return keyCodeAssocs[key as keyof typeof keyCodeAssocs]; };