diff --git a/Orchid/Code/Comp1/Instance.dSYM/Contents/Info.plist b/Orchid/Code/Comp1/Instance.dSYM/Contents/Info.plist
deleted file mode 100644
index 1b60105..0000000
--- a/Orchid/Code/Comp1/Instance.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.Instance
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
-
-
diff --git a/Orchid/Code/Comp1/Instance.dSYM/Contents/Resources/DWARF/Instance b/Orchid/Code/Comp1/Instance.dSYM/Contents/Resources/DWARF/Instance
deleted file mode 100644
index 11da688..0000000
Binary files a/Orchid/Code/Comp1/Instance.dSYM/Contents/Resources/DWARF/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp1/Instance.py b/Orchid/Code/Comp1/Instance.py
deleted file mode 100644
index 4d249d0..0000000
--- a/Orchid/Code/Comp1/Instance.py
+++ /dev/null
@@ -1,52 +0,0 @@
-from time import sleep
-
-while True:
- if open("Instrc_n.txt", 'r').read() == "n":
-
- sleep(0.1)
-
- fil1 = open("Instrc_r.txt", "r").read()
- fil2 = open("Instrc_s.txt", "w")
- fil2.write("P")
- fil2.close()
- fil2 = open("Instrc_s.txt", "w")
- print(fil1)
- fil1 = fil1.split(" ")
- print(fil1)
- A = fil1[0]
- B = fil1[1]
- Type = fil1[2]
-
-
- if Type == "A":
- Out = float(A)+float(B)
- if Type == "S":
- Out = float(A)-float(B)
- if Type == "M":
- Out = float(A)*float(B)
- if Type == "D":
- Out = float(A)/float(B)
- if Type == "IF=":
- print(A)
- print(B)
- if A == B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF!":
- if A == B:
- Out = "F"
- else:
- Out = "T"
- if Type == "IF>":
- if A > B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF<":
- if A < B:
- Out = "T"
- else:
- Out = "F"
- fil2.write(str(Out))
- fil2.close()
\ No newline at end of file
diff --git a/Orchid/Code/Comp1/Instrc_n.txt b/Orchid/Code/Comp1/Instrc_n.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp1/Instrc_r.txt b/Orchid/Code/Comp1/Instrc_r.txt
deleted file mode 100644
index 3d101dc..0000000
--- a/Orchid/Code/Comp1/Instrc_r.txt
+++ /dev/null
@@ -1 +0,0 @@
-! 123 IF=
\ No newline at end of file
diff --git a/Orchid/Code/Comp1/Instrc_s.txt b/Orchid/Code/Comp1/Instrc_s.txt
deleted file mode 100644
index c137216..0000000
--- a/Orchid/Code/Comp1/Instrc_s.txt
+++ /dev/null
@@ -1 +0,0 @@
-F
\ No newline at end of file
diff --git a/Orchid/Code/Comp1/start.bat b/Orchid/Code/Comp1/start.bat
deleted file mode 100644
index 26458ae..0000000
--- a/Orchid/Code/Comp1/start.bat
+++ /dev/null
@@ -1,7 +0,0 @@
-@ECHO OFF
-
-W:
-cd Code
-python3 ./Comp1/Instance.py
-
-PAUSE
\ No newline at end of file
diff --git a/Orchid/Code/Comp1/start.sh b/Orchid/Code/Comp1/start.sh
deleted file mode 100644
index 1e97325..0000000
--- a/Orchid/Code/Comp1/start.sh
+++ /dev/null
@@ -1 +0,0 @@
-python3 Instance.py
\ No newline at end of file
diff --git a/Orchid/Code/Comp2/Instance b/Orchid/Code/Comp2/Instance
deleted file mode 100644
index dbc7f94..0000000
Binary files a/Orchid/Code/Comp2/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp2/Instance.c b/Orchid/Code/Comp2/Instance.c
deleted file mode 100644
index 54752b8..0000000
--- a/Orchid/Code/Comp2/Instance.c
+++ /dev/null
@@ -1,87 +0,0 @@
-#include
-#include
-#include
-#include
-
-int main() {
- while (1) {
- FILE *file;
- file = fopen("Instrc_n.txt", "r");
- char content[10];
- fgets(content, 10, file);
-
- if (strcmp(content, "n\n") == 0) {
- fclose(file);
- usleep(100000);
-
- FILE *fil1, *fil2;
- fil1 = fopen("Instrc_r.txt", "r");
- fil2 = fopen("Instrc_s.txt", "w");
-
- char str[100], *token;
- fgets(str, 100, fil1);
-
- token = strtok(str, "!!!!!!!");
- float A = atof(token);
- token = strtok(NULL, "!!!!!!!");
- float B = atof(token);
- token = strtok(NULL, "!!!!!!!");
- char *Type = token;
-
- float Out;
- if (strcmp(Type, "A") == 0) {
- Out = A + B;
- }
- else if (strcmp(Type, "S") == 0) {
- Out = A - B;
- }
- else if (strcmp(Type, "M") == 0) {
- Out = A * B;
- }
- else if (strcmp(Type, "D") == 0) {
- Out = A / B;
- }
- else if (strcmp(Type, "IF=") == 0) {
- if (A == B) {
- Out = 'T';
- }
- else {
- Out = 'F';
- }
- }
- else if (strcmp(Type, "IF!") == 0) {
- if (A == B) {
- Out = 'F';
- }
- else {
- Out = 'T';
- }
- }
- else if (strcmp(Type, "IF>") == 0) {
- if (A > B) {
- Out = 'T';
- }
- else {
- Out = 'F';
- }
- }
- else if (strcmp(Type, "IF<") == 0) {
- if (A < B) {
- Out = 'T';
- }
- else {
- Out = 'F';
- }
- }
- char Out1[6];
- gcvt(Out, 6, Out1);
- fprintf(fil2, "%s", Out1);
- fclose(fil1);
- fclose(fil2);
- }
- else {
- fclose(file);
- }
- }
- return 0;
-}
diff --git a/Orchid/Code/Comp2/Instance.dSYM/Contents/Info.plist b/Orchid/Code/Comp2/Instance.dSYM/Contents/Info.plist
deleted file mode 100644
index 1b60105..0000000
--- a/Orchid/Code/Comp2/Instance.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.Instance
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
-
-
diff --git a/Orchid/Code/Comp2/Instance.dSYM/Contents/Resources/DWARF/Instance b/Orchid/Code/Comp2/Instance.dSYM/Contents/Resources/DWARF/Instance
deleted file mode 100644
index 4e2cbde..0000000
Binary files a/Orchid/Code/Comp2/Instance.dSYM/Contents/Resources/DWARF/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp2/Instance.py b/Orchid/Code/Comp2/Instance.py
deleted file mode 100644
index 6229083..0000000
--- a/Orchid/Code/Comp2/Instance.py
+++ /dev/null
@@ -1,53 +0,0 @@
-from time import sleep
-
-while True:
- if open("Instrc_n.txt", 'r').read() == "n":
-
- sleep(0.1)
-
- fil1 = open("Instrc_r.txt", "r").read()
- fil2 = open("Instrc_s.txt", "w")
- fil2.write("P")
- fil2.close()
- fil2 = open("Instrc_s.txt", "w")
- print(fil1)
- fil1 = fil1.split(" ")
- #fil1 = fil1.split("| "+r"\n*\n"+" |")
- print(fil1)
- A = fil1[0]
- B = fil1[1]
- Type = fil1[2]
-
-
- if Type == "A":
- Out = float(A)+float(B)
- if Type == "S":
- Out = float(A)-float(B)
- if Type == "M":
- Out = float(A)*float(B)
- if Type == "D":
- Out = float(A)/float(B)
- if Type == "IF=":
- print(A)
- print(B)
- if A == B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF!":
- if A == B:
- Out = "F"
- else:
- Out = "T"
- if Type == "IF>":
- if A > B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF<":
- if A < B:
- Out = "T"
- else:
- Out = "F"
- fil2.write(str(Out))
- fil2.close()
diff --git a/Orchid/Code/Comp2/Instrc_n.txt b/Orchid/Code/Comp2/Instrc_n.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp2/Instrc_r.txt b/Orchid/Code/Comp2/Instrc_r.txt
deleted file mode 100644
index c868b33..0000000
--- a/Orchid/Code/Comp2/Instrc_r.txt
+++ /dev/null
@@ -1 +0,0 @@
-p! 123 IF=
\ No newline at end of file
diff --git a/Orchid/Code/Comp2/Instrc_s.txt b/Orchid/Code/Comp2/Instrc_s.txt
deleted file mode 100644
index c137216..0000000
--- a/Orchid/Code/Comp2/Instrc_s.txt
+++ /dev/null
@@ -1 +0,0 @@
-F
\ No newline at end of file
diff --git a/Orchid/Code/Comp2/start.bat b/Orchid/Code/Comp2/start.bat
deleted file mode 100644
index 9a9a7c7..0000000
--- a/Orchid/Code/Comp2/start.bat
+++ /dev/null
@@ -1,4 +0,0 @@
-@ECHO OFF
-
-cd W:/Code/Orchid/Code/
-W:/Code/python.exe W:/Code/Orchid/Code/Comp2/Instance.py
\ No newline at end of file
diff --git a/Orchid/Code/Comp2/start.sh b/Orchid/Code/Comp2/start.sh
deleted file mode 100644
index 1e97325..0000000
--- a/Orchid/Code/Comp2/start.sh
+++ /dev/null
@@ -1 +0,0 @@
-python3 Instance.py
\ No newline at end of file
diff --git a/Orchid/Code/Comp3/Instance b/Orchid/Code/Comp3/Instance
deleted file mode 100644
index 633b632..0000000
Binary files a/Orchid/Code/Comp3/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp3/Instance.c b/Orchid/Code/Comp3/Instance.c
deleted file mode 100644
index 3daf8ca..0000000
--- a/Orchid/Code/Comp3/Instance.c
+++ /dev/null
@@ -1,89 +0,0 @@
-#include
-#include
-#include
-#include
-
-int main() {
- while (1) {
- FILE *file;
- file = fopen("Instrc_n.txt", "r");
- char content[10];
- fgets(content, 10, file);
-
- if (strcmp(content, "n\n") == 0) {
- fclose(file);
- usleep(100000);
-
- FILE *fil1, *fil2;
- fil1 = fopen("Instrc_r.txt", "r");
- fil2 = fopen("Instrc_s.txt", "w");
-
- char str[100], *token;
- fgets(str, 100, fil1);
-
- token = strtok(str, "!!!!!!!");
- float A = atof(token);
- token = strtok(NULL, "!!!!!!!");
- float B = atof(token);
- token = strtok(NULL, "!!!!!!!");
- char *Type = token;
-
- int Out;
- if (strcmp(Type, "A") == 0) {
- Out = A + B;
- }
- else if (strcmp(Type, "S") == 0) {
- Out = A - B;
- }
- else if (strcmp(Type, "M") == 0) {
- Out = A * B;
- }
- else if (strcmp(Type, "D") == 0) {
- Out = A / B;
- }
- char Out2;
- if (strcmp(Type, "IF=") == 0) {
- if (A == B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- else if (strcmp(Type, "IF!") == 0) {
- if (A == B) {
- Out2 = "F";
- }
- else {
- Out2 = "T";
- }
- }
- else if (strcmp(Type, "IF>") == 0) {
- if (A > B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- else if (strcmp(Type, "IF<") == 0) {
- if (A < B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- char Out1[6];
- gcvt(Out, 6, Out1);
- fprintf(fil2, "%s", Out1);
- fprintf(fil2, "%c", Out2);
- fclose(fil1);
- fclose(fil2);
- }
- else {
- fclose(file);
- }
- }
- return 0;
-}
diff --git a/Orchid/Code/Comp3/Instance.dSYM/Contents/Info.plist b/Orchid/Code/Comp3/Instance.dSYM/Contents/Info.plist
deleted file mode 100644
index 1b60105..0000000
--- a/Orchid/Code/Comp3/Instance.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.Instance
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
-
-
diff --git a/Orchid/Code/Comp3/Instance.dSYM/Contents/Resources/DWARF/Instance b/Orchid/Code/Comp3/Instance.dSYM/Contents/Resources/DWARF/Instance
deleted file mode 100644
index 11da688..0000000
Binary files a/Orchid/Code/Comp3/Instance.dSYM/Contents/Resources/DWARF/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp3/Instance.py b/Orchid/Code/Comp3/Instance.py
deleted file mode 100644
index b64ece0..0000000
--- a/Orchid/Code/Comp3/Instance.py
+++ /dev/null
@@ -1,49 +0,0 @@
-from time import sleep
-
-while True:
- if open("Instrc_n.txt", 'r').read() == "n":
-
- sleep(0.1)
-
- fil1 = open("Instrc_r.txt", "r").read()
- fil2 = open("Instrc_s.txt", "w")
-
- fil1 = fil1.split('\n*\n')
- print(fil1)
- A = fil1[0]
- B = str(fil1[1])
- Type = fil1[2]
-
-
- if Type == "A":
- Out = float(A)+float(B)
- if Type == "S":
- Out = float(A)-float(B)
- if Type == "M":
- Out = float(A)*float(B)
- if Type == "D":
- Out = float(A)/float(B)
- if Type == "IF=":
- print(A)
- print(B)
- if A == B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF!":
- if A == B:
- Out = "F"
- else:
- Out = "T"
- if Type == "IF>":
- if A > B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF<":
- if A < B:
- Out = "T"
- else:
- Out = "F"
- fil2.write(str(Out))
- fil2.close()
\ No newline at end of file
diff --git a/Orchid/Code/Comp3/Instrc_n.txt b/Orchid/Code/Comp3/Instrc_n.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp3/Instrc_r.txt b/Orchid/Code/Comp3/Instrc_r.txt
deleted file mode 100644
index 2ab319d..0000000
--- a/Orchid/Code/Comp3/Instrc_r.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-qwn
-*
-12
-*
-IF=
\ No newline at end of file
diff --git a/Orchid/Code/Comp3/Instrc_s.txt b/Orchid/Code/Comp3/Instrc_s.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp3/start.bat b/Orchid/Code/Comp3/start.bat
deleted file mode 100644
index 26458ae..0000000
--- a/Orchid/Code/Comp3/start.bat
+++ /dev/null
@@ -1,7 +0,0 @@
-@ECHO OFF
-
-W:
-cd Code
-python3 ./Comp1/Instance.py
-
-PAUSE
\ No newline at end of file
diff --git a/Orchid/Code/Comp3/start.sh b/Orchid/Code/Comp3/start.sh
deleted file mode 100644
index 1e97325..0000000
--- a/Orchid/Code/Comp3/start.sh
+++ /dev/null
@@ -1 +0,0 @@
-python3 Instance.py
\ No newline at end of file
diff --git a/Orchid/Code/Comp4/Instance b/Orchid/Code/Comp4/Instance
deleted file mode 100644
index dbc7f94..0000000
Binary files a/Orchid/Code/Comp4/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp4/Instance.c b/Orchid/Code/Comp4/Instance.c
deleted file mode 100644
index 54752b8..0000000
--- a/Orchid/Code/Comp4/Instance.c
+++ /dev/null
@@ -1,87 +0,0 @@
-#include
-#include
-#include
-#include
-
-int main() {
- while (1) {
- FILE *file;
- file = fopen("Instrc_n.txt", "r");
- char content[10];
- fgets(content, 10, file);
-
- if (strcmp(content, "n\n") == 0) {
- fclose(file);
- usleep(100000);
-
- FILE *fil1, *fil2;
- fil1 = fopen("Instrc_r.txt", "r");
- fil2 = fopen("Instrc_s.txt", "w");
-
- char str[100], *token;
- fgets(str, 100, fil1);
-
- token = strtok(str, "!!!!!!!");
- float A = atof(token);
- token = strtok(NULL, "!!!!!!!");
- float B = atof(token);
- token = strtok(NULL, "!!!!!!!");
- char *Type = token;
-
- float Out;
- if (strcmp(Type, "A") == 0) {
- Out = A + B;
- }
- else if (strcmp(Type, "S") == 0) {
- Out = A - B;
- }
- else if (strcmp(Type, "M") == 0) {
- Out = A * B;
- }
- else if (strcmp(Type, "D") == 0) {
- Out = A / B;
- }
- else if (strcmp(Type, "IF=") == 0) {
- if (A == B) {
- Out = 'T';
- }
- else {
- Out = 'F';
- }
- }
- else if (strcmp(Type, "IF!") == 0) {
- if (A == B) {
- Out = 'F';
- }
- else {
- Out = 'T';
- }
- }
- else if (strcmp(Type, "IF>") == 0) {
- if (A > B) {
- Out = 'T';
- }
- else {
- Out = 'F';
- }
- }
- else if (strcmp(Type, "IF<") == 0) {
- if (A < B) {
- Out = 'T';
- }
- else {
- Out = 'F';
- }
- }
- char Out1[6];
- gcvt(Out, 6, Out1);
- fprintf(fil2, "%s", Out1);
- fclose(fil1);
- fclose(fil2);
- }
- else {
- fclose(file);
- }
- }
- return 0;
-}
diff --git a/Orchid/Code/Comp4/Instance.dSYM/Contents/Info.plist b/Orchid/Code/Comp4/Instance.dSYM/Contents/Info.plist
deleted file mode 100644
index 1b60105..0000000
--- a/Orchid/Code/Comp4/Instance.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.Instance
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
-
-
diff --git a/Orchid/Code/Comp4/Instance.dSYM/Contents/Resources/DWARF/Instance b/Orchid/Code/Comp4/Instance.dSYM/Contents/Resources/DWARF/Instance
deleted file mode 100644
index 4e2cbde..0000000
Binary files a/Orchid/Code/Comp4/Instance.dSYM/Contents/Resources/DWARF/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp4/Instance.py b/Orchid/Code/Comp4/Instance.py
deleted file mode 100644
index 8d605c4..0000000
--- a/Orchid/Code/Comp4/Instance.py
+++ /dev/null
@@ -1,50 +0,0 @@
-from time import sleep
-
-while True:
- if open("Instrc_n.txt", 'r').read() == "n":
-
- sleep(0.1)
-
- fil1 = open("Instrc_r.txt", "r").read()
- fil2 = open("Instrc_s.txt", "w")
-
- fil1 = fil1.split('\n*\n')
- print(fil1)
-
- A = fil1[0]
- B = str(fil1[1])
- Type = fil1[2]
-
-
- if Type == "A":
- Out = float(A)+float(B)
- if Type == "S":
- Out = float(A)-float(B)
- if Type == "M":
- Out = float(A)*float(B)
- if Type == "D":
- Out = float(A)/float(B)
- if Type == "IF=":
- print(A)
- print(B)
- if A == B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF!":
- if A == B:
- Out = "F"
- else:
- Out = "T"
- if Type == "IF>":
- if A > B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF<":
- if A < B:
- Out = "T"
- else:
- Out = "F"
- fil2.write(str(Out))
- fil2.close()
diff --git a/Orchid/Code/Comp4/Instrc_n.txt b/Orchid/Code/Comp4/Instrc_n.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp4/Instrc_r.txt b/Orchid/Code/Comp4/Instrc_r.txt
deleted file mode 100644
index 918424c..0000000
--- a/Orchid/Code/Comp4/Instrc_r.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-qqqi
-*
-12
-*
-IF=
\ No newline at end of file
diff --git a/Orchid/Code/Comp4/Instrc_s.txt b/Orchid/Code/Comp4/Instrc_s.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp4/start.bat b/Orchid/Code/Comp4/start.bat
deleted file mode 100644
index 9a9a7c7..0000000
--- a/Orchid/Code/Comp4/start.bat
+++ /dev/null
@@ -1,4 +0,0 @@
-@ECHO OFF
-
-cd W:/Code/Orchid/Code/
-W:/Code/python.exe W:/Code/Orchid/Code/Comp2/Instance.py
\ No newline at end of file
diff --git a/Orchid/Code/Comp4/start.sh b/Orchid/Code/Comp4/start.sh
deleted file mode 100644
index 1e97325..0000000
--- a/Orchid/Code/Comp4/start.sh
+++ /dev/null
@@ -1 +0,0 @@
-python3 Instance.py
\ No newline at end of file
diff --git a/Orchid/Code/Comp5/Instance b/Orchid/Code/Comp5/Instance
deleted file mode 100644
index 633b632..0000000
Binary files a/Orchid/Code/Comp5/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp5/Instance.c b/Orchid/Code/Comp5/Instance.c
deleted file mode 100644
index 3daf8ca..0000000
--- a/Orchid/Code/Comp5/Instance.c
+++ /dev/null
@@ -1,89 +0,0 @@
-#include
-#include
-#include
-#include
-
-int main() {
- while (1) {
- FILE *file;
- file = fopen("Instrc_n.txt", "r");
- char content[10];
- fgets(content, 10, file);
-
- if (strcmp(content, "n\n") == 0) {
- fclose(file);
- usleep(100000);
-
- FILE *fil1, *fil2;
- fil1 = fopen("Instrc_r.txt", "r");
- fil2 = fopen("Instrc_s.txt", "w");
-
- char str[100], *token;
- fgets(str, 100, fil1);
-
- token = strtok(str, "!!!!!!!");
- float A = atof(token);
- token = strtok(NULL, "!!!!!!!");
- float B = atof(token);
- token = strtok(NULL, "!!!!!!!");
- char *Type = token;
-
- int Out;
- if (strcmp(Type, "A") == 0) {
- Out = A + B;
- }
- else if (strcmp(Type, "S") == 0) {
- Out = A - B;
- }
- else if (strcmp(Type, "M") == 0) {
- Out = A * B;
- }
- else if (strcmp(Type, "D") == 0) {
- Out = A / B;
- }
- char Out2;
- if (strcmp(Type, "IF=") == 0) {
- if (A == B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- else if (strcmp(Type, "IF!") == 0) {
- if (A == B) {
- Out2 = "F";
- }
- else {
- Out2 = "T";
- }
- }
- else if (strcmp(Type, "IF>") == 0) {
- if (A > B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- else if (strcmp(Type, "IF<") == 0) {
- if (A < B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- char Out1[6];
- gcvt(Out, 6, Out1);
- fprintf(fil2, "%s", Out1);
- fprintf(fil2, "%c", Out2);
- fclose(fil1);
- fclose(fil2);
- }
- else {
- fclose(file);
- }
- }
- return 0;
-}
diff --git a/Orchid/Code/Comp5/Instance.dSYM/Contents/Info.plist b/Orchid/Code/Comp5/Instance.dSYM/Contents/Info.plist
deleted file mode 100644
index 1b60105..0000000
--- a/Orchid/Code/Comp5/Instance.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.Instance
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
-
-
diff --git a/Orchid/Code/Comp5/Instance.dSYM/Contents/Resources/DWARF/Instance b/Orchid/Code/Comp5/Instance.dSYM/Contents/Resources/DWARF/Instance
deleted file mode 100644
index 11da688..0000000
Binary files a/Orchid/Code/Comp5/Instance.dSYM/Contents/Resources/DWARF/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp5/Instance.py b/Orchid/Code/Comp5/Instance.py
deleted file mode 100644
index b64ece0..0000000
--- a/Orchid/Code/Comp5/Instance.py
+++ /dev/null
@@ -1,49 +0,0 @@
-from time import sleep
-
-while True:
- if open("Instrc_n.txt", 'r').read() == "n":
-
- sleep(0.1)
-
- fil1 = open("Instrc_r.txt", "r").read()
- fil2 = open("Instrc_s.txt", "w")
-
- fil1 = fil1.split('\n*\n')
- print(fil1)
- A = fil1[0]
- B = str(fil1[1])
- Type = fil1[2]
-
-
- if Type == "A":
- Out = float(A)+float(B)
- if Type == "S":
- Out = float(A)-float(B)
- if Type == "M":
- Out = float(A)*float(B)
- if Type == "D":
- Out = float(A)/float(B)
- if Type == "IF=":
- print(A)
- print(B)
- if A == B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF!":
- if A == B:
- Out = "F"
- else:
- Out = "T"
- if Type == "IF>":
- if A > B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF<":
- if A < B:
- Out = "T"
- else:
- Out = "F"
- fil2.write(str(Out))
- fil2.close()
\ No newline at end of file
diff --git a/Orchid/Code/Comp5/Instrc_n.txt b/Orchid/Code/Comp5/Instrc_n.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp5/Instrc_r.txt b/Orchid/Code/Comp5/Instrc_r.txt
deleted file mode 100644
index 7171f6f..0000000
--- a/Orchid/Code/Comp5/Instrc_r.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-qqqq6
-*
-12
-*
-IF=
\ No newline at end of file
diff --git a/Orchid/Code/Comp5/Instrc_s.txt b/Orchid/Code/Comp5/Instrc_s.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp5/start.bat b/Orchid/Code/Comp5/start.bat
deleted file mode 100644
index 26458ae..0000000
--- a/Orchid/Code/Comp5/start.bat
+++ /dev/null
@@ -1,7 +0,0 @@
-@ECHO OFF
-
-W:
-cd Code
-python3 ./Comp1/Instance.py
-
-PAUSE
\ No newline at end of file
diff --git a/Orchid/Code/Comp5/start.sh b/Orchid/Code/Comp5/start.sh
deleted file mode 100644
index 1e97325..0000000
--- a/Orchid/Code/Comp5/start.sh
+++ /dev/null
@@ -1 +0,0 @@
-python3 Instance.py
\ No newline at end of file
diff --git a/Orchid/Code/Comp6/Instance b/Orchid/Code/Comp6/Instance
deleted file mode 100644
index 633b632..0000000
Binary files a/Orchid/Code/Comp6/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp6/Instance.c b/Orchid/Code/Comp6/Instance.c
deleted file mode 100644
index 3daf8ca..0000000
--- a/Orchid/Code/Comp6/Instance.c
+++ /dev/null
@@ -1,89 +0,0 @@
-#include
-#include
-#include
-#include
-
-int main() {
- while (1) {
- FILE *file;
- file = fopen("Instrc_n.txt", "r");
- char content[10];
- fgets(content, 10, file);
-
- if (strcmp(content, "n\n") == 0) {
- fclose(file);
- usleep(100000);
-
- FILE *fil1, *fil2;
- fil1 = fopen("Instrc_r.txt", "r");
- fil2 = fopen("Instrc_s.txt", "w");
-
- char str[100], *token;
- fgets(str, 100, fil1);
-
- token = strtok(str, "!!!!!!!");
- float A = atof(token);
- token = strtok(NULL, "!!!!!!!");
- float B = atof(token);
- token = strtok(NULL, "!!!!!!!");
- char *Type = token;
-
- int Out;
- if (strcmp(Type, "A") == 0) {
- Out = A + B;
- }
- else if (strcmp(Type, "S") == 0) {
- Out = A - B;
- }
- else if (strcmp(Type, "M") == 0) {
- Out = A * B;
- }
- else if (strcmp(Type, "D") == 0) {
- Out = A / B;
- }
- char Out2;
- if (strcmp(Type, "IF=") == 0) {
- if (A == B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- else if (strcmp(Type, "IF!") == 0) {
- if (A == B) {
- Out2 = "F";
- }
- else {
- Out2 = "T";
- }
- }
- else if (strcmp(Type, "IF>") == 0) {
- if (A > B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- else if (strcmp(Type, "IF<") == 0) {
- if (A < B) {
- Out2 = "T";
- }
- else {
- Out2 = "F";
- }
- }
- char Out1[6];
- gcvt(Out, 6, Out1);
- fprintf(fil2, "%s", Out1);
- fprintf(fil2, "%c", Out2);
- fclose(fil1);
- fclose(fil2);
- }
- else {
- fclose(file);
- }
- }
- return 0;
-}
diff --git a/Orchid/Code/Comp6/Instance.dSYM/Contents/Info.plist b/Orchid/Code/Comp6/Instance.dSYM/Contents/Info.plist
deleted file mode 100644
index 1b60105..0000000
--- a/Orchid/Code/Comp6/Instance.dSYM/Contents/Info.plist
+++ /dev/null
@@ -1,20 +0,0 @@
-
-
-
-
- CFBundleDevelopmentRegion
- English
- CFBundleIdentifier
- com.apple.xcode.dsym.Instance
- CFBundleInfoDictionaryVersion
- 6.0
- CFBundlePackageType
- dSYM
- CFBundleSignature
- ????
- CFBundleShortVersionString
- 1.0
- CFBundleVersion
- 1
-
-
diff --git a/Orchid/Code/Comp6/Instance.dSYM/Contents/Resources/DWARF/Instance b/Orchid/Code/Comp6/Instance.dSYM/Contents/Resources/DWARF/Instance
deleted file mode 100644
index 11da688..0000000
Binary files a/Orchid/Code/Comp6/Instance.dSYM/Contents/Resources/DWARF/Instance and /dev/null differ
diff --git a/Orchid/Code/Comp6/Instance.py b/Orchid/Code/Comp6/Instance.py
deleted file mode 100644
index b64ece0..0000000
--- a/Orchid/Code/Comp6/Instance.py
+++ /dev/null
@@ -1,49 +0,0 @@
-from time import sleep
-
-while True:
- if open("Instrc_n.txt", 'r').read() == "n":
-
- sleep(0.1)
-
- fil1 = open("Instrc_r.txt", "r").read()
- fil2 = open("Instrc_s.txt", "w")
-
- fil1 = fil1.split('\n*\n')
- print(fil1)
- A = fil1[0]
- B = str(fil1[1])
- Type = fil1[2]
-
-
- if Type == "A":
- Out = float(A)+float(B)
- if Type == "S":
- Out = float(A)-float(B)
- if Type == "M":
- Out = float(A)*float(B)
- if Type == "D":
- Out = float(A)/float(B)
- if Type == "IF=":
- print(A)
- print(B)
- if A == B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF!":
- if A == B:
- Out = "F"
- else:
- Out = "T"
- if Type == "IF>":
- if A > B:
- Out = "T"
- else:
- Out = "F"
- if Type == "IF<":
- if A < B:
- Out = "T"
- else:
- Out = "F"
- fil2.write(str(Out))
- fil2.close()
\ No newline at end of file
diff --git a/Orchid/Code/Comp6/Instrc_n.txt b/Orchid/Code/Comp6/Instrc_n.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp6/Instrc_r.txt b/Orchid/Code/Comp6/Instrc_r.txt
deleted file mode 100644
index 318a23c..0000000
--- a/Orchid/Code/Comp6/Instrc_r.txt
+++ /dev/null
@@ -1,5 +0,0 @@
-qqqqqq
-*
-12
-*
-IF=
\ No newline at end of file
diff --git a/Orchid/Code/Comp6/Instrc_s.txt b/Orchid/Code/Comp6/Instrc_s.txt
deleted file mode 100644
index e69de29..0000000
diff --git a/Orchid/Code/Comp6/start.bat b/Orchid/Code/Comp6/start.bat
deleted file mode 100644
index 26458ae..0000000
--- a/Orchid/Code/Comp6/start.bat
+++ /dev/null
@@ -1,7 +0,0 @@
-@ECHO OFF
-
-W:
-cd Code
-python3 ./Comp1/Instance.py
-
-PAUSE
\ No newline at end of file
diff --git a/Orchid/Code/Comp6/start.sh b/Orchid/Code/Comp6/start.sh
deleted file mode 100644
index 1e97325..0000000
--- a/Orchid/Code/Comp6/start.sh
+++ /dev/null
@@ -1 +0,0 @@
-python3 Instance.py
\ No newline at end of file
diff --git a/Orchid/Code/Public/Compiler.py b/Orchid/Code/Public/Compiler.py
deleted file mode 100644
index e67efd5..0000000
--- a/Orchid/Code/Public/Compiler.py
+++ /dev/null
@@ -1,36 +0,0 @@
-import re
-
-pattern1 = r'^(.*)=$'
-pattern2 = r'^(.*):$'
-
-if_statement = open("Code/Input_Code/test.py", "r").read().splitlines()
-
-
-#if_statement = "if A != B: A+1 else: pass"
-out = open("Code/Input_Code/out.py", "w")
-out.write("")
-out = open("Code/Input_Code/out.py", "a")
-for i2 in range(len(if_statement)):
- if1=if_statement[i2].split(None)
-
- if if_statement[i2].find("if") == -1:
- out.write(if_statement[i2]+"\n")
- if if_statement[i2].find(":") != -1:
- out.write("\t")
- for i in range(len(if1)):
- if if1[i] == "if":
- A = if1[i+1]
- B = if1[i+2]
- C = if1[i+3]
- match = re.match(pattern1, B)
- if match:
- B = match.group(1)
-
- match = re.match(pattern2, C)
- if match:
- C = match.group(1)
-
-
- out.write(f"C1.Process({A}, {C}, 'if{B}')\n")
- i2=i2+1
- out.write(f"if C1.Read():\n")
\ No newline at end of file
diff --git a/Orchid/Code/Public/Dig1.py b/Orchid/Code/Public/Dig1.py
deleted file mode 100644
index 56a37b7..0000000
--- a/Orchid/Code/Public/Dig1.py
+++ /dev/null
@@ -1,117 +0,0 @@
-from Lib1 import Instance
-from ctypes import *
-CDLL("Lib1.so")
-from multiprocessing import Process
-
-def D1(alp, password, C1):
- for i2 in range(len(alp)):
-
- test=""+alp[i2]
- C1.Process(test,password,"IF=")
- if C1.Read():
- print("password found! "+test)
- quit()
-def D2(alp, password, C2):
- for i in range(len(alp)):
- test1 = alp[i]
- for i2 in range(len(alp)):
-
- test=test1+alp[i2]
-
- C2.Process(test,password,"IF=")
- if C2.Read():
- print("password found! "+test)
- quit()
-def D3(alp, password, C3):
- for i3 in range(len(alp)):
- test2=alp[i3]
- for i in range(len(alp)):
- test1 = alp[i]
- for i2 in range(len(alp)):
-
- test=test2+test1+alp[i2]
-
- C3.Process(test,password,"IF=")
- if C3.Read():
- print("password found! "+test)
- quit()
-def D4(alp, password, C4):
- for i4 in range(len(alp)):
- test3=alp[i4]
- for i3 in range(len(alp)):
- test2=alp[i3]
- for i in range(len(alp)):
- test1 = alp[i]
- for i2 in range(len(alp)):
-
- test=test3+test2+test1+alp[i2]
-
- C4.Process(test,password,"IF=")
- if C4.Read():
- print("password found! "+test)
- quit()
-def D5(alp, password, C5):
- for i5 in range(len(alp)):
- test4=alp[i5]
- for i4 in range(len(alp)):
- test3=alp[i4]
- for i3 in range(len(alp)):
- test2=alp[i3]
- for i in range(len(alp)):
- test1 = alp[i]
- for i2 in range(len(alp)):
-
- test=test4+test3+test2+test1+alp[i2]
-
- C5.Process(test,password,"IF=")
- if C5.Read():
- print("password found! "+test)
- quit()
-def D6(alp, password, C6):
- for i6 in range(len(alp)):
- test5=alp[i6]
- for i5 in range(len(alp)):
- test4=alp[i5]
- for i4 in range(len(alp)):
- test3=alp[i4]
- for i3 in range(len(alp)):
- test2=alp[i3]
- for i in range(len(alp)):
- test1 = alp[i]
- for i2 in range(len(alp)):
-
- test=test5+test4+test3+test2+test1+alp[i2]
-
- C6.Process(test,password,"IF=")
- if C6.Read():
- print("password found! "+test)
- quit()
-
-if __name__ == "__main__":
-
- C1 = Instance("1")
- C2 = Instance("2")
- C3 = Instance("3")
- C4 = Instance("4")
- C5 = Instance("5")
- C6 = Instance("6")
-
- alp = "qwertyuiop1234567890asdfghjklzxcvbnm,./;'[]-=\\`~@#$\%^&*()_+QWEERTYUIOP\{\}|ASDFGHJKL:\"ZXCVBNM<>?!"
- password = input("Enter a password less than 6 digits: \t")
-
- if len(password) > 6:
- print("Your password is greater than 6 digits!")
-
- Proc1 = Process(target=D1, args=(alp, password, C1))
- Proc2 = Process(target=D2, args=(alp, password, C2))
- Proc3 = Process(target=D3, args=(alp, password, C3))
- Proc4 = Process(target=D4, args=(alp, password, C4))
- Proc5 = Process(target=D5, args=(alp, password, C5))
- Proc6 = Process(target=D6, args=(alp, password, C6))
-
- Proc1.start()
- Proc2.start()
- #Proc3.start()
- #Proc4.start()
- #Proc5.start()
- #Proc6.start()
\ No newline at end of file
diff --git a/Orchid/Code/Public/Lib1.py b/Orchid/Code/Public/Lib1.py
deleted file mode 100644
index 95bcdbd..0000000
--- a/Orchid/Code/Public/Lib1.py
+++ /dev/null
@@ -1,36 +0,0 @@
-import time
-
-class Instance():
- def __init__(self, UUID):
- self.UUID = UUID
- def Process(self, A, B, Type):
- open("Comp"+str(self.UUID)+"/Instrc_n.txt", "w").write("n")
- A_fil = open("Comp"+str(self.UUID)+"/Instrc_r.txt", "w")
- C = open("Comp"+str(self.UUID)+"/Instrc_s.txt", "w")
- C.write("P")
- C.close()
- B_fil = open("Comp"+str(self.UUID)+"/Instrc_s.txt", "r")
- A_fil.write(str(A)+r" "+str(B)+r" "+str(Type))
- A_fil.close()
- while B_fil.read() == "P":
- time.sleep(0.01)
- open("Comp"+str(self.UUID)+"/Instrc_n.txt", "w").write("")
- def Read(self):
- time.sleep(0.1)
- A_fil = open("Comp"+str(self.UUID)+"/Instrc_s.txt", "r")
- while(True):
- A_str = A_fil.read()
- if A_str == "":
- pass
- else:
- if A_str == "F":
- A_fil.close()
-
- return False
- if A_str == "T":
- A_fil.close()
-
- return True
- A_fil.close()
-
- return A_str
\ No newline at end of file
diff --git a/Orchid/Code/Public/Lib1.so b/Orchid/Code/Public/Lib1.so
deleted file mode 100644
index e6d5746..0000000
Binary files a/Orchid/Code/Public/Lib1.so and /dev/null differ
diff --git a/Orchid/Code/Public/Sample.py b/Orchid/Code/Public/Sample.py
deleted file mode 100644
index 3b3353d..0000000
--- a/Orchid/Code/Public/Sample.py
+++ /dev/null
@@ -1,14 +0,0 @@
-from Paths import InitPath
-InitPath()
-from Lib1 import Instance
-
-C1 = Instance("1")
-C2 = Instance("2")
-
-for i in range(100):
- C1.Process(i, 3, "M")
- C2.Process(C1.Read(), 9, "A")
-
- print(i)
- print(C1.Read())
- print(C2.Read())
\ No newline at end of file
diff --git a/Orchid/Code/Public/__pycache__/Lib1.cpython-310.pyc b/Orchid/Code/Public/__pycache__/Lib1.cpython-310.pyc
deleted file mode 100644
index 7dd6a80..0000000
Binary files a/Orchid/Code/Public/__pycache__/Lib1.cpython-310.pyc and /dev/null differ
diff --git a/Orchid/Code/Public/__pycache__/Lib1.cpython-311.pyc b/Orchid/Code/Public/__pycache__/Lib1.cpython-311.pyc
deleted file mode 100644
index 1d9380e..0000000
Binary files a/Orchid/Code/Public/__pycache__/Lib1.cpython-311.pyc and /dev/null differ
diff --git a/Orchid/Code/Public/__pycache__/Paths.cpython-310.pyc b/Orchid/Code/Public/__pycache__/Paths.cpython-310.pyc
deleted file mode 100644
index 2c113fa..0000000
Binary files a/Orchid/Code/Public/__pycache__/Paths.cpython-310.pyc and /dev/null differ
diff --git a/Orchid/Code/Public/__pycache__/Paths.cpython-311.pyc b/Orchid/Code/Public/__pycache__/Paths.cpython-311.pyc
deleted file mode 100644
index ac67ef6..0000000
Binary files a/Orchid/Code/Public/__pycache__/Paths.cpython-311.pyc and /dev/null differ
diff --git a/Orchid/Code/Public/lib.c b/Orchid/Code/Public/lib.c
deleted file mode 100644
index bba6ae4..0000000
--- a/Orchid/Code/Public/lib.c
+++ /dev/null
@@ -1,72 +0,0 @@
-#include
-#include
-#include
-#include
-
-#define BUF_SIZE 1024
-
-typedef struct Instance {
- char UUID[BUF_SIZE];
-} Instance;
-
-void Instance_Init(Instance* instance, char* UUID) {
- strcpy(instance->UUID, UUID);
-}
-
-void Instance_Process(Instance* instance, int A, int B, char* Type) {
- char instrc_n_path[BUF_SIZE], instrc_r_path[BUF_SIZE], instrc_s_path[BUF_SIZE];
- snprintf(instrc_n_path, BUF_SIZE, "Comp%s/Instrc_n.txt", instance->UUID);
- snprintf(instrc_r_path, BUF_SIZE, "Comp%s/Instrc_r.txt", instance->UUID);
- snprintf(instrc_s_path, BUF_SIZE, "Comp%s/Instrc_s.txt", instance->UUID);
-
- FILE* instrc_n_file = fopen(instrc_n_path, "w");
- fprintf(instrc_n_file, "n");
- fclose(instrc_n_file);
-
- FILE* instrc_r_file = fopen(instrc_r_path, "w");
- FILE* instrc_s_file = fopen(instrc_s_path, "w");
- fprintf(instrc_s_file, "P");
- fclose(instrc_s_file);
-
- instrc_s_file = fopen(instrc_s_path, "r");
- fprintf(instrc_r_file, "%d %d %s", A, B, Type);
- fclose(instrc_r_file);
-
- char buf[BUF_SIZE];
- do {
- fseek(instrc_s_file, 0, SEEK_SET);
- fread(buf, sizeof(char), BUF_SIZE, instrc_s_file);
- usleep(10000);
- } while (buf[0] == 'P');
-
- instrc_n_file = fopen(instrc_n_path, "w");
- fclose(instrc_n_file);
-}
-
-char* Instance_Read(Instance* instance) {
- usleep(100000);
- char instrc_s_path[BUF_SIZE];
- snprintf(instrc_s_path, BUF_SIZE, "Comp%s/Instrc_s.txt", instance->UUID);
- FILE* instrc_s_file = fopen(instrc_s_path, "r");
- char* result = NULL;
- while (1) {
- char buf[BUF_SIZE];
- fgets(buf, BUF_SIZE, instrc_s_file);
- if (buf[0] == '\0') {
- continue;
- } else {
- if (buf[0] == 'F') {
- fclose(instrc_s_file);
- return "False";
- } else if (buf[0] == 'T') {
- fclose(instrc_s_file);
- return "True";
- } else {
- result = strdup(buf);
- break;
- }
- }
- }
- fclose(instrc_s_file);
- return result;
-}
diff --git a/Orchid/Code/__pycache__/Lib1.cpython-311.pyc b/Orchid/Code/__pycache__/Lib1.cpython-311.pyc
deleted file mode 100644
index dd75cc9..0000000
Binary files a/Orchid/Code/__pycache__/Lib1.cpython-311.pyc and /dev/null differ
diff --git a/Orchid/Code/__pycache__/Paths.cpython-311.pyc b/Orchid/Code/__pycache__/Paths.cpython-311.pyc
deleted file mode 100644
index c37c459..0000000
Binary files a/Orchid/Code/__pycache__/Paths.cpython-311.pyc and /dev/null differ
diff --git a/Orchid/compile.py b/Orchid/compile.py
deleted file mode 100644
index 929f8ba..0000000
--- a/Orchid/compile.py
+++ /dev/null
@@ -1,39 +0,0 @@
-import py_compile
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig1.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig1_0.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig1_1.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig1_1.pyc", optimize=2)
-
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig2.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig2_0.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig2_1.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig2_1.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig2_2.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig2_2.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig2_3.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig2_3.pyc", optimize=2)
-
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_0.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_1.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_1.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_2.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_2.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_3.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_3.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_4.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_5.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_5.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_6.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_6.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_7.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig3_7.pyc", optimize=2)
-
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_1.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_2.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_3.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_4.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_5.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_6.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_7.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_8.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_9.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_10.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_11.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_12.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_13.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_14.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4_15.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig4.pyc", optimize=2)
-
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig5.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig5.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig6.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Code/Dig6.pyc", optimize=2)
-py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Interperet/Test.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/Computer1/Interperet/Test.pyc", optimize=2)
-#py_compile.compile('C:/Users/Administrator/Desktop/Code/Orchestrator/REF/Lib1.py',"C:/Users/Administrator/Desktop/Code/Orchestrator/REF/Lib1.pyc", optimize=2)
\ No newline at end of file
diff --git a/Orchid/int.sh b/Orchid/int.sh
deleted file mode 100644
index 8b669bd..0000000
--- a/Orchid/int.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-cd Code
-chmod +x Comp1/start.sh
-chmod +x Comp2/start.sh
-chmod +x Comp3/start.sh
-chmod +x Comp4/start.sh
-chmod +x Comp5/start.sh
-
-cd /Users/1002083/Desktop/Orchid/Code/Comp1/
-./start.sh &
-cd /Users/1002083/Desktop/Orchid/Code/Comp2/
-./start.sh &
-cd /Users/1002083/Desktop/Orchid/Code/Comp3/
-./start.sh &
-cd /Users/1002083/Desktop/Orchid/Code/Comp4/
-./start.sh &
-cd /Users/1002083/Desktop/Orchid/Code/Comp5/
-./start.sh
\ No newline at end of file
diff --git a/Orchid/start.bat b/Orchid/start.bat
deleted file mode 100644
index 2f1e394..0000000
--- a/Orchid/start.bat
+++ /dev/null
@@ -1,10 +0,0 @@
-@ECHO OFF
-
-cd W:/Code/Orchid/Code/
-
-PAUSE
-ECHO Starting Programs . . .
-
-W:/Code/python.exe W:/Code/Orchid/Code/Public/Dig1.py
-
-PAUSE
\ No newline at end of file
diff --git a/Orchid/start.sh b/Orchid/start.sh
deleted file mode 100644
index 9b0adf0..0000000
--- a/Orchid/start.sh
+++ /dev/null
@@ -1,2 +0,0 @@
-cd Code
-python3 Public/Dig1.py
\ No newline at end of file