mirror of
https://github.com/bvanroll/startrek-ml.git
synced 2025-08-29 12:02:45 +00:00
Yup
This commit is contained in:
161
Analyser.py
161
Analyser.py
@@ -1,28 +1,149 @@
|
||||
import json
|
||||
import sys, os
|
||||
Cast = {}
|
||||
import Analyser
|
||||
import re
|
||||
|
||||
string = sys.argv[1]
|
||||
temp = ""
|
||||
arrayOfStrings = []
|
||||
space = " "
|
||||
|
||||
|
||||
### VARIABLES
|
||||
|
||||
Cast = [] #an array of cast members
|
||||
string = "sys.argv[1]" #the location of the current file we want to convert
|
||||
temp = "" #temp string
|
||||
spaces = [] #an array of spaces we want to check since some of the formating is lost and newlines are replaced by a bunch of spaces
|
||||
spacesRev = []
|
||||
space = " " #a space var that is used to initiate the spaces list
|
||||
finishstring = "FINISHEDTHESTRINGS" #finished string meant to check for when we run a huge string through a while loop, when it's done splitting everything, the main string will change name to finishedstring
|
||||
|
||||
|
||||
### VAR INITIATERS
|
||||
|
||||
|
||||
## FILS THE SPACES LIST WITH AMOUNTS OF SPACES WE WILL WANT TO SPLIT FROM.
|
||||
for x in range(0, 100):
|
||||
arrayOfStrings.append(space)
|
||||
space = space+" "
|
||||
spaces.append(space)
|
||||
|
||||
for i in reversed(spaces):
|
||||
spacesRev.append(i)
|
||||
|
||||
### FUNCTIONS
|
||||
|
||||
##SPLITTER
|
||||
#takes two arguments, the string to split and the array to append the part it split. Checks for any amount of spaces longer then 1 space
|
||||
|
||||
def splitter(string, array):
|
||||
global spacesRev #get all spaces for comparison
|
||||
global finishstring #get universally set finishstring
|
||||
index = -1
|
||||
lowestStart = -1
|
||||
for space in spaces:
|
||||
m = re.search(space, string)
|
||||
if m is not None:
|
||||
tempStart = m.start()
|
||||
tempEnd = m.end()
|
||||
else:
|
||||
index=-1
|
||||
continue
|
||||
if (tempEnd > index or index == -1) and (tempStart <= lowestStart or lowestStart == -1):
|
||||
index = tempStart
|
||||
lowestStart = tempEnd
|
||||
if index > -1:
|
||||
beforeSplit = string[:index]
|
||||
afterSplit = string[lowestStart:]
|
||||
array.append(beforeSplit)
|
||||
return afterSplit
|
||||
else:
|
||||
array.append(string)
|
||||
return finishstring
|
||||
|
||||
def Folder(folder):
|
||||
global Cast
|
||||
for file in os.listdir(folder):
|
||||
if file.endswith(".txt"):
|
||||
filename = file[:3];
|
||||
with open(folder+"/"+file, "r") as infile:
|
||||
fileNaam=infile.read().replace('\n', ' ')
|
||||
fileNaam = fileNaam.replace('\t', ' ')
|
||||
x = 0
|
||||
while fileNaam != finishstring:
|
||||
fileNaam = splitter(fileNaam, Cast)
|
||||
if(x < len(fileNaam)) and x is not 0:
|
||||
break
|
||||
x = len(fileNaam)
|
||||
print('only ' + str(x) + " characters left from file " + folder+"/"+file + ", rest is being written to Output/" + folder+"/"+file + '.json')
|
||||
with open('Output/'+folder+"/"+file+'.json', 'w+') as outfile:
|
||||
json.dump(Cast, outfile)
|
||||
if "CAST" in Cast:
|
||||
CheckCast = Cast.index("CAST")
|
||||
tempAr =Cast[CheckCast:]
|
||||
if "STAR TREK: THE NEXT GENERATION" in tempAr:
|
||||
endOfCast = tempAr.index("STAR TREK: THE NEXT GENERATION")
|
||||
else:
|
||||
endOfCast = -1
|
||||
else:
|
||||
CheckCast = -1
|
||||
endOfCast = -1
|
||||
|
||||
if (CheckCast is not -1) and (endOfCast is not -1):
|
||||
print(CheckCast)
|
||||
print(endOfCast)
|
||||
with open('Output/'+file+'-Casts.json', 'w+') as outfile:
|
||||
temp = Cast[CheckCast+1:CheckCast+endOfCast]
|
||||
print(temp)
|
||||
json.dump(temp, outfile)
|
||||
Cast = []
|
||||
|
||||
def File(file):
|
||||
global Cast
|
||||
with open(file, "r") as infile:
|
||||
fileNaam=infile.read().replace('\n', ' ')
|
||||
fileNaam = fileNaam.replace('\t', ' ')
|
||||
x = 0
|
||||
while fileNaam != finishstring:
|
||||
fileNaam = splitter(fileNaam, Cast)
|
||||
if(x < len(fileNaam)) and x is not 0:
|
||||
break
|
||||
x = len(fileNaam)
|
||||
print('only ' + str(x) + " characters left from file " + file + ", rest is being written to Output/" + file + '.json')
|
||||
with open('Output/'+file+'.json', 'w+') as outfile:
|
||||
json.dump(Cast, outfile)
|
||||
if "CAST" in Cast:
|
||||
CheckCast = Cast.index("CAST")
|
||||
tempAr =Cast[CheckCast:]
|
||||
if "STAR TREK: THE NEXT GENERATION" in tempAr:
|
||||
endOfCast = tempAr.index("STAR TREK: THE NEXT GENERATION")
|
||||
else:
|
||||
endOfCast = -1
|
||||
else:
|
||||
CheckCast = -1
|
||||
endOfCast = -1
|
||||
|
||||
if (CheckCast is not -1) and (endOfCast is not -1):
|
||||
print(CheckCast)
|
||||
print(endOfCast)
|
||||
with open('Output/'+file+'-Casts.json', 'w+') as outfile:
|
||||
temp = Cast[CheckCast+1:CheckCast+endOfCast]
|
||||
print(temp)
|
||||
json.dump(temp, outfile)
|
||||
Cast = []
|
||||
|
||||
|
||||
def Main():
|
||||
if len(sys.argv) > 1:
|
||||
if (os.path.isdir(sys.argv[1])):
|
||||
print("folder")
|
||||
Folder(sys.argv[1])
|
||||
if (os.path.isfile(sys.argv[1])):
|
||||
print("file")
|
||||
File(sys.argv[1])
|
||||
else:
|
||||
print("Invalid file")
|
||||
input()
|
||||
else:
|
||||
print('no argument')
|
||||
input()
|
||||
|
||||
|
||||
|
||||
with open(string, "r") as infile:
|
||||
fileNaam=infile.read().replace('\n', ' ')
|
||||
array=fileNaam.split()
|
||||
arrayFromCast = array[array.index("CAST")+1:]
|
||||
Cast=arrayFromCast[:arrayFromCast.index("STAR")];
|
||||
|
||||
|
||||
|
||||
|
||||
with open('output.json', 'w+') as outfile:
|
||||
json.dump(Cast, outfile)
|
||||
with open('Temp.txt', 'w+') as outfile:
|
||||
outfile.write(temp)
|
||||
outfile.close()
|
||||
Main()
|
||||
|
1
Output/103.txt-Casts.json
Normal file
1
Output/103.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
["PICARD", "SARAH MACDOUGAL", "RIKER", "JIM SHIMODA", "DATA", "CREWMAN (2)", "TROI", "CREWWOMAN", "BEVERLY", "SECURITY GUARD", "TASHA", "TRANSPORTER CHIEF", "WORF", "CONN", "GEORDI", "WESLEY"]
|
1
Output/109.txt-Casts.json
Normal file
1
Output/109.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
["PICARD", "FIRST EDO CITIZEN", "RIKER", "TWO EDO CITIZENS", "DATA", "RIVAN (YOUNG FEMALE EDO)", "TROI", "LIATOR (MALE EDO)", "BEVERLY", "EDOLORD", "TASHA", "FIRST EDO BOY", "GEORDI", "CONN CREWMEMBER", "WORF", "EDO GIRL", "WESLEY", "SECOND EDO BOY", "FIRST MEDIATOR (MALE EDO)", "SECOND MEDIATOR (MALE EDO)", "EDO", "ADULTS", "CHILDREN", "MUSIC GROUP OF EDO HARPISTS", "TRANSPORTER CHIEF", "MEDICAL TECHNICIAN", "STAR TREK: \"Justice\" - 9/4/87 - SETS"]
|
1
Output/110.txt-Casts.json
Normal file
1
Output/110.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
["PICARD", "FERENGI:", "RIKER", "DAIMON BOK", "BEVERLY", "KAZAGO", "DATA", "RATA", "TROI", "TASHA", "STARGAZER:", "GEORDI", "PHANTOM BRIDGE CREW", "WORF", "VOICES (V.O.)", "WESLEY", "FIRST VOICE (V.O.)", "SECOND VOICE (V.O.)", "THIRD VOICE (V.O.)", "STAR TREK: \"The Battle\" - 9/14/87 - SETS"]
|
1
Output/111.txt-Casts.json
Normal file
1
Output/111.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
["PICARD", "\"Q\"", "RIKER", "WOMAN (SURVIVOR)", "BEVERLY", "BEVERLY", "DATA", "Non-Speaking Roles", "TROI", "CREWMEMBERS", "TASHA", "SICKBAY STAFF", "GEORDI", "TWO SENTRIES", "WORF", "ANIMAL-SOLDIERS", "WESLEY", "DOZEN SURVIVORS", "CHILD (FEMALE SURVIVOR)", "STAR TREK: Hide And \"Q\" - 9/25/87 - SETS"]
|
1
Output/180.txt-Casts.json
Normal file
1
Output/180.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
["PICARD", "HAYNE", "RIKER", "ISHARA YAR", "DATA", "COALITION MAN #1", "BEVERLY", "TAN TSU", "TROI", "GEORDI", "WORF", "Non-Speaking", "VARIOUS TURKANANS", "O'BRIEN", "COALITION MEMBERS", "ALLIANCE MEMBERS", "Non-Speaking", "SUPERNUMERARIES", "STAR TREK: \"Legacy\" - 8/20/90 - SETS"]
|
1
Output/181.txt-Casts.json
Normal file
1
Output/181.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
["PICARD", "K'MPEC", "RIKER", "DURAS", "DATA", "GOWRON", "BEVERLY", "K'EHLEYR", "TROI", "ALEXANDER", "GEORDI", "KLINGON GUARD #1", "WORF", "KLINGON GUARD #2", "TRANSPORTER TECHNICIAN", "SECURITY OFFICER", "Non-Speaking", "Non-Speaking", "SECURITY GUARDS", "4 KLINGON RETAINERS", "2 CHILDREN", "NURSE", "MEDICAL TECHNICIAN", "SUPERNUMERARIES", "STAR TREK: \"Reunion\" - 9/4/90 - SETS"]
|
1
Output/199.txt-Casts.json
Normal file
1
Output/199.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
["PICARD", "ENSIGN JENNA D'SORA", "RIKER", "DATA", "ENSIGN McKNIGHT", "BEVERLY", "TROI", "GEORDI", "WORF", "GUINAN", "O'BRIEN", "KEIKO", "COMPUTER VOICE", "Non-Speaking", "NURSE", "SECURITY OFFICERS", "THORNE", "LIEUTENANT VAN MAYTER", "DATA'S CAT", "SUPERNUMERARIES", "STAR TREK: \"In Theory\" - 3/20/91 - SETS"]
|
1
Output/274.txt-Casts.json
Normal file
1
Output/274.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
["PICARD", "BOK", "RIKER", "JASON", "DATA", "BIRTA", "BEVERLY", "TOL", "TROI", "RHODES", "WORF", "COM VOICE", "GEORDI", "Non-Speaking", "Non-Speaking", "N.D. SUPERNUMERARIES", "N.D FERENGI", "STAR TREK: \"Bloodlines\" - 02/09/94 - SETS"]
|
1
Output/Data/Tng/102.txt.json
Normal file
1
Output/Data/Tng/102.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/103.txt-Casts.json
Normal file
1
Output/Data/Tng/103.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
1
Output/Data/Tng/103.txt.json
Normal file
1
Output/Data/Tng/103.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/104.txt.json
Normal file
1
Output/Data/Tng/104.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/105.txt.json
Normal file
1
Output/Data/Tng/105.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/106.txt.json
Normal file
1
Output/Data/Tng/106.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/107.txt.json
Normal file
1
Output/Data/Tng/107.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/108.txt.json
Normal file
1
Output/Data/Tng/108.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/109.txt-Casts.json
Normal file
1
Output/Data/Tng/109.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
1
Output/Data/Tng/109.txt.json
Normal file
1
Output/Data/Tng/109.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/110.txt-Casts.json
Normal file
1
Output/Data/Tng/110.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
1
Output/Data/Tng/110.txt.json
Normal file
1
Output/Data/Tng/110.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/111.txt-Casts.json
Normal file
1
Output/Data/Tng/111.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
1
Output/Data/Tng/111.txt.json
Normal file
1
Output/Data/Tng/111.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/112.txt.json
Normal file
1
Output/Data/Tng/112.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/113.txt.json
Normal file
1
Output/Data/Tng/113.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/114.txt.json
Normal file
1
Output/Data/Tng/114.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/115.txt.json
Normal file
1
Output/Data/Tng/115.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/116.txt.json
Normal file
1
Output/Data/Tng/116.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/117.txt.json
Normal file
1
Output/Data/Tng/117.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/118.txt.json
Normal file
1
Output/Data/Tng/118.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/119.txt.json
Normal file
1
Output/Data/Tng/119.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/120.txt.json
Normal file
1
Output/Data/Tng/120.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/121.txt.json
Normal file
1
Output/Data/Tng/121.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/122.txt.json
Normal file
1
Output/Data/Tng/122.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/123.txt.json
Normal file
1
Output/Data/Tng/123.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/124.txt.json
Normal file
1
Output/Data/Tng/124.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/125.txt.json
Normal file
1
Output/Data/Tng/125.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/126.txt.json
Normal file
1
Output/Data/Tng/126.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/127.txt.json
Normal file
1
Output/Data/Tng/127.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/128.txt.json
Normal file
1
Output/Data/Tng/128.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/129.txt.json
Normal file
1
Output/Data/Tng/129.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/130.txt.json
Normal file
1
Output/Data/Tng/130.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/131.txt.json
Normal file
1
Output/Data/Tng/131.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/132.txt.json
Normal file
1
Output/Data/Tng/132.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/133.txt.json
Normal file
1
Output/Data/Tng/133.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/134.txt.json
Normal file
1
Output/Data/Tng/134.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/135.txt.json
Normal file
1
Output/Data/Tng/135.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/136.txt.json
Normal file
1
Output/Data/Tng/136.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/137.txt.json
Normal file
1
Output/Data/Tng/137.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/138.txt.json
Normal file
1
Output/Data/Tng/138.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/139.txt.json
Normal file
1
Output/Data/Tng/139.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/140.txt.json
Normal file
1
Output/Data/Tng/140.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/141.txt.json
Normal file
1
Output/Data/Tng/141.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/142.txt.json
Normal file
1
Output/Data/Tng/142.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/143.txt.json
Normal file
1
Output/Data/Tng/143.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/144.txt.json
Normal file
1
Output/Data/Tng/144.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/145.txt.json
Normal file
1
Output/Data/Tng/145.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/146.txt.json
Normal file
1
Output/Data/Tng/146.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/147.txt.json
Normal file
1
Output/Data/Tng/147.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/148.txt-Casts.json
Normal file
1
Output/Data/Tng/148.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
1
Output/Data/Tng/148.txt.json
Normal file
1
Output/Data/Tng/148.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/149.txt.json
Normal file
1
Output/Data/Tng/149.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/150.txt.json
Normal file
1
Output/Data/Tng/150.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/151.txt.json
Normal file
1
Output/Data/Tng/151.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/152.txt.json
Normal file
1
Output/Data/Tng/152.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/153.txt.json
Normal file
1
Output/Data/Tng/153.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/154.txt.json
Normal file
1
Output/Data/Tng/154.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/155.txt.json
Normal file
1
Output/Data/Tng/155.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/156.txt.json
Normal file
1
Output/Data/Tng/156.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/157.txt.json
Normal file
1
Output/Data/Tng/157.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/158.txt.json
Normal file
1
Output/Data/Tng/158.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/159.txt.json
Normal file
1
Output/Data/Tng/159.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/160.txt.json
Normal file
1
Output/Data/Tng/160.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/161.txt.json
Normal file
1
Output/Data/Tng/161.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/162.txt.json
Normal file
1
Output/Data/Tng/162.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/163.txt.json
Normal file
1
Output/Data/Tng/163.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/164.txt.json
Normal file
1
Output/Data/Tng/164.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/165.txt.json
Normal file
1
Output/Data/Tng/165.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/166.txt.json
Normal file
1
Output/Data/Tng/166.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/167.txt.json
Normal file
1
Output/Data/Tng/167.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/168.txt.json
Normal file
1
Output/Data/Tng/168.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/169.txt.json
Normal file
1
Output/Data/Tng/169.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/170.txt.json
Normal file
1
Output/Data/Tng/170.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/171.txt.json
Normal file
1
Output/Data/Tng/171.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/172.txt.json
Normal file
1
Output/Data/Tng/172.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/173.txt.json
Normal file
1
Output/Data/Tng/173.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/174.txt.json
Normal file
1
Output/Data/Tng/174.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/175.txt.json
Normal file
1
Output/Data/Tng/175.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/176.txt.json
Normal file
1
Output/Data/Tng/176.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/177.txt.json
Normal file
1
Output/Data/Tng/177.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/178.txt.json
Normal file
1
Output/Data/Tng/178.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/179.txt.json
Normal file
1
Output/Data/Tng/179.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/180.txt-Casts.json
Normal file
1
Output/Data/Tng/180.txt-Casts.json
Normal file
@@ -0,0 +1 @@
|
||||
[]
|
1
Output/Data/Tng/180.txt.json
Normal file
1
Output/Data/Tng/180.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/181.txt.json
Normal file
1
Output/Data/Tng/181.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/182.txt.json
Normal file
1
Output/Data/Tng/182.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/183.txt.json
Normal file
1
Output/Data/Tng/183.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/184.txt.json
Normal file
1
Output/Data/Tng/184.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/185.txt.json
Normal file
1
Output/Data/Tng/185.txt.json
Normal file
File diff suppressed because one or more lines are too long
1
Output/Data/Tng/186.txt.json
Normal file
1
Output/Data/Tng/186.txt.json
Normal file
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user