diff --git a/ElginTZM_ip_master/authorship.json b/ElginTZM_ip_master/authorship.json index 6f10d2c2..69ef8dd2 100644 --- a/ElginTZM_ip_master/authorship.json +++ b/ElginTZM_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"public class Deadline extends Task {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"-"},"content":" private static String SYMBOL \u003d \"D\";","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" protected String dueDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":" public Deadline(String description, String dueDatetime) {","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":" super(description);","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":" this.dueDatetime \u003d dueDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"-"},"content":" @Override","lastModifiedDate":"2023-08-30"},{"lineNumber":11,"author":{"gitId":"-"},"content":" public String getDataString() {","lastModifiedDate":"2023-08-30"},{"lineNumber":12,"author":{"gitId":"-"},"content":" return String.join(\" | \", Deadline.SYMBOL, super.isDone ? \"1\" : \"0\", super.getDescription(), this.dueDatetime);","lastModifiedDate":"2023-08-30"},{"lineNumber":13,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":14,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":17,"author":{"gitId":"-"},"content":" return String.format(\"[%s]%s (by: %s)\", Deadline.SYMBOL, super.toString(), this.dueDatetime);","lastModifiedDate":"2023-08-30"},{"lineNumber":18,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":19,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":12,"-":7}},{"path":"src/main/java/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"-"},"content":"import java.io.BufferedReader;","lastModifiedDate":"2023-08-30"},{"lineNumber":2,"author":{"gitId":"-"},"content":"import java.io.BufferedWriter;","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"-"},"content":"import java.nio.file.Files;","lastModifiedDate":"2023-08-30"},{"lineNumber":4,"author":{"gitId":"-"},"content":"import java.nio.file.Path;","lastModifiedDate":"2023-08-30"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":"import java.util.ArrayList;","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":"import java.util.List;","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"-"},"content":"import java.util.Optional;","lastModifiedDate":"2023-08-30"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":"import java.util.Scanner;","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"-"},"content":"public class Duke {","lastModifiedDate":"2019-07-29"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":" private static String LINE_SEPARATOR \u003d \" ----------------------------------------------------------------------\";","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":" private static ArrayList\u003cTask\u003e tasks \u003d new ArrayList\u003cTask\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":" private static Boolean programRunning \u003d true;","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"-"},"content":" private enum TaskType {","lastModifiedDate":"2023-08-30"},{"lineNumber":16,"author":{"gitId":"-"},"content":" TODO, DEADLINE, EVENT","lastModifiedDate":"2023-08-30"},{"lineNumber":17,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":18,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":19,"author":{"gitId":"ElginTZM"},"content":" private static \u003cT\u003e void respond(T message) {","lastModifiedDate":"2023-08-24"},{"lineNumber":20,"author":{"gitId":"ElginTZM"},"content":" System.out.println(LINE_SEPARATOR);","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"ElginTZM"},"content":" System.out.println(String.format(\" %s\", message.toString()));","lastModifiedDate":"2023-08-24"},{"lineNumber":22,"author":{"gitId":"ElginTZM"},"content":" System.out.println(LINE_SEPARATOR);","lastModifiedDate":"2023-08-24"},{"lineNumber":23,"author":{"gitId":"ElginTZM"},"content":" System.out.print(\"\u003e\u003e\u003e \");","lastModifiedDate":"2023-08-24"},{"lineNumber":24,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":25,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":26,"author":{"gitId":"ElginTZM"},"content":" private static \u003cT\u003e void respond(List\u003cT\u003e messages) {","lastModifiedDate":"2023-08-24"},{"lineNumber":27,"author":{"gitId":"ElginTZM"},"content":" System.out.println(LINE_SEPARATOR);","lastModifiedDate":"2023-08-24"},{"lineNumber":28,"author":{"gitId":"ElginTZM"},"content":" for (T message: messages) {","lastModifiedDate":"2023-08-24"},{"lineNumber":29,"author":{"gitId":"ElginTZM"},"content":" System.out.println(String.format(\" %s\", message.toString()));","lastModifiedDate":"2023-08-24"},{"lineNumber":30,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":31,"author":{"gitId":"ElginTZM"},"content":" System.out.println(LINE_SEPARATOR);","lastModifiedDate":"2023-08-24"},{"lineNumber":32,"author":{"gitId":"ElginTZM"},"content":" System.out.print(\"\u003e\u003e\u003e \");","lastModifiedDate":"2023-08-24"},{"lineNumber":33,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":34,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-24"},{"lineNumber":35,"author":{"gitId":"ElginTZM"},"content":" private static void greet() {","lastModifiedDate":"2023-08-24"},{"lineNumber":36,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":37,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"Hello! I\u0027m A-CAT (Automated Chatbot Assistant for Tasks)\");","lastModifiedDate":"2023-08-24"},{"lineNumber":38,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"What do you want to do today?\");","lastModifiedDate":"2023-08-24"},{"lineNumber":39,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-24"},{"lineNumber":40,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":41,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":42,"author":{"gitId":"ElginTZM"},"content":" private static void exit() {","lastModifiedDate":"2023-08-24"},{"lineNumber":43,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(\"Bye. Hope to see you again soon!\");","lastModifiedDate":"2023-08-24"},{"lineNumber":44,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":45,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":46,"author":{"gitId":"ElginTZM"},"content":" private static void listTasks(ArrayList\u003cTask\u003e tasks) throws DukeException{","lastModifiedDate":"2023-08-24"},{"lineNumber":47,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e output \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":48,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":49,"author":{"gitId":"ElginTZM"},"content":" for (int i \u003d 0; i \u003c tasks.size(); i++) {","lastModifiedDate":"2023-08-24"},{"lineNumber":50,"author":{"gitId":"ElginTZM"},"content":" String taskOutput \u003d String.format(\"%d. %s\", i + 1, tasks.get(i));","lastModifiedDate":"2023-08-24"},{"lineNumber":51,"author":{"gitId":"ElginTZM"},"content":" output.add(taskOutput);","lastModifiedDate":"2023-08-24"},{"lineNumber":52,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":53,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":54,"author":{"gitId":"ElginTZM"},"content":" if (output.size() \u003d\u003d 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":55,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(\"There are no tasks in your list.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":56,"author":{"gitId":"ElginTZM"},"content":" return;","lastModifiedDate":"2023-08-24"},{"lineNumber":57,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":58,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":59,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(output);","lastModifiedDate":"2023-08-24"},{"lineNumber":60,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":61,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":62,"author":{"gitId":"ElginTZM"},"content":" private static void markTaskAsDone(String args) throws DukeException {","lastModifiedDate":"2023-08-24"},{"lineNumber":63,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":64,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"There are no tasks added. Please add a task first.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":65,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":66,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":67,"author":{"gitId":"ElginTZM"},"content":" String taskIndexString \u003d args.split(\" \")[0];","lastModifiedDate":"2023-08-24"},{"lineNumber":68,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":69,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-24"},{"lineNumber":70,"author":{"gitId":"ElginTZM"},"content":" int taskIndex \u003d Integer.parseInt(taskIndexString) - 1;","lastModifiedDate":"2023-08-24"},{"lineNumber":71,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003c 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":72,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Task number cannot be negative.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":73,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":74,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":75,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":76,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003e\u003d tasks.size()) {","lastModifiedDate":"2023-08-24"},{"lineNumber":77,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 1) {","lastModifiedDate":"2023-08-24"},{"lineNumber":78,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":79,"author":{"gitId":"ElginTZM"},"content":" + \"Use \\\"mark 1\\\" to mark the first task as done.\", taskIndex + 1));","lastModifiedDate":"2023-08-24"},{"lineNumber":80,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":81,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":82,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist. Use a number between 1 and %d.\",","lastModifiedDate":"2023-08-24"},{"lineNumber":83,"author":{"gitId":"ElginTZM"},"content":" taskIndex + 1,","lastModifiedDate":"2023-08-24"},{"lineNumber":84,"author":{"gitId":"ElginTZM"},"content":" tasks.size()));","lastModifiedDate":"2023-08-24"},{"lineNumber":85,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":86,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":87,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":88,"author":{"gitId":"ElginTZM"},"content":" Task targetTask \u003d tasks.get(taskIndex);","lastModifiedDate":"2023-08-24"},{"lineNumber":89,"author":{"gitId":"ElginTZM"},"content":" targetTask.markAsDone();","lastModifiedDate":"2023-08-24"},{"lineNumber":90,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":91,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":92,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2023-08-24"},{"lineNumber":93,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\" %s\",targetTask.toString()));","lastModifiedDate":"2023-08-24"},{"lineNumber":94,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":95,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-24"},{"lineNumber":96,"author":{"gitId":"-"},"content":" Duke.storeTasks();","lastModifiedDate":"2023-08-30"},{"lineNumber":97,"author":{"gitId":"ElginTZM"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2023-08-24"},{"lineNumber":98,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task number provided \\\"%s\\\" is not a number.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":99,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\", taskIndexString));","lastModifiedDate":"2023-08-24"},{"lineNumber":100,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":101,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":102,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":103,"author":{"gitId":"ElginTZM"},"content":" private static void markTaskAsUndone(String args) throws DukeException{","lastModifiedDate":"2023-08-24"},{"lineNumber":104,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":105,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"There are no tasks added. Please add a task first.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":106,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":107,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":108,"author":{"gitId":"ElginTZM"},"content":" String taskIndexString \u003d args.split(\" \")[0];","lastModifiedDate":"2023-08-24"},{"lineNumber":109,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":110,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-24"},{"lineNumber":111,"author":{"gitId":"ElginTZM"},"content":" int taskIndex \u003d Integer.parseInt(taskIndexString) - 1;","lastModifiedDate":"2023-08-24"},{"lineNumber":112,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003c 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":113,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Task number cannot be negative.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":114,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":115,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":116,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":117,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003e\u003d tasks.size()) {","lastModifiedDate":"2023-08-24"},{"lineNumber":118,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 1) {","lastModifiedDate":"2023-08-24"},{"lineNumber":119,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":120,"author":{"gitId":"ElginTZM"},"content":" + \"Use \\\"unmark 1\\\" to mark the first task as not done.\", taskIndex + 1));","lastModifiedDate":"2023-08-24"},{"lineNumber":121,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":122,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":123,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist. Use a number between 1 and %d.\",","lastModifiedDate":"2023-08-24"},{"lineNumber":124,"author":{"gitId":"ElginTZM"},"content":" taskIndex + 1,","lastModifiedDate":"2023-08-24"},{"lineNumber":125,"author":{"gitId":"ElginTZM"},"content":" tasks.size()));","lastModifiedDate":"2023-08-24"},{"lineNumber":126,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":127,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":128,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":129,"author":{"gitId":"ElginTZM"},"content":" Task targetTask \u003d tasks.get(taskIndex);","lastModifiedDate":"2023-08-24"},{"lineNumber":130,"author":{"gitId":"-"},"content":" targetTask.markAsUndone();","lastModifiedDate":"2023-08-29"},{"lineNumber":131,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":132,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":133,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"OK, I\u0027ve marked this task as not done yet:\");","lastModifiedDate":"2023-08-24"},{"lineNumber":134,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\" %s\",targetTask.toString()));","lastModifiedDate":"2023-08-24"},{"lineNumber":135,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":136,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-24"},{"lineNumber":137,"author":{"gitId":"-"},"content":" Duke.storeTasks();","lastModifiedDate":"2023-08-30"},{"lineNumber":138,"author":{"gitId":"ElginTZM"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2023-08-24"},{"lineNumber":139,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task number provided \\\"%s\\\" is not a number.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":140,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\", taskIndexString));","lastModifiedDate":"2023-08-24"},{"lineNumber":141,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":142,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":143,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":144,"author":{"gitId":"ElginTZM"},"content":" private static void deleteTask(String args) throws DukeException{","lastModifiedDate":"2023-08-24"},{"lineNumber":145,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":146,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"There are no tasks added. Please add a task first.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":147,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":148,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":149,"author":{"gitId":"ElginTZM"},"content":" String taskIndexString \u003d args.split(\" \")[0];","lastModifiedDate":"2023-08-24"},{"lineNumber":150,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":151,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-24"},{"lineNumber":152,"author":{"gitId":"ElginTZM"},"content":" int taskIndex \u003d Integer.parseInt(taskIndexString) - 1;","lastModifiedDate":"2023-08-24"},{"lineNumber":153,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003c 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":154,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Task number cannot be negative.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":155,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":156,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":157,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":158,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003e\u003d tasks.size()) {","lastModifiedDate":"2023-08-24"},{"lineNumber":159,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 1) {","lastModifiedDate":"2023-08-24"},{"lineNumber":160,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":161,"author":{"gitId":"ElginTZM"},"content":" + \"Use \\\"delete 1\\\" to delete the first task.\", taskIndex + 1));","lastModifiedDate":"2023-08-24"},{"lineNumber":162,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":163,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":164,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist. Use a number between 1 and %d.\",","lastModifiedDate":"2023-08-24"},{"lineNumber":165,"author":{"gitId":"ElginTZM"},"content":" taskIndex + 1,","lastModifiedDate":"2023-08-24"},{"lineNumber":166,"author":{"gitId":"ElginTZM"},"content":" tasks.size()));","lastModifiedDate":"2023-08-24"},{"lineNumber":167,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":168,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":169,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":170,"author":{"gitId":"ElginTZM"},"content":" String targetTaskInfo \u003d tasks.get(taskIndex).toString();","lastModifiedDate":"2023-08-24"},{"lineNumber":171,"author":{"gitId":"ElginTZM"},"content":" tasks.remove(taskIndex);","lastModifiedDate":"2023-08-24"},{"lineNumber":172,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":173,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":174,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"Noted. I\u0027ve removed this task:\");","lastModifiedDate":"2023-08-24"},{"lineNumber":175,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\" %s\", targetTaskInfo));","lastModifiedDate":"2023-08-24"},{"lineNumber":176,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\"Now you have %d tasks in the list.\", tasks.size()));","lastModifiedDate":"2023-08-24"},{"lineNumber":177,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":178,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-24"},{"lineNumber":179,"author":{"gitId":"-"},"content":" Duke.storeTasks();","lastModifiedDate":"2023-08-30"},{"lineNumber":180,"author":{"gitId":"ElginTZM"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2023-08-24"},{"lineNumber":181,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task number provided \\\"%s\\\" is not a number.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":182,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\", taskIndexString));","lastModifiedDate":"2023-08-24"},{"lineNumber":183,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":184,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":185,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":186,"author":{"gitId":"-"},"content":" private static void addTask(TaskType taskType, String args) {","lastModifiedDate":"2023-08-30"},{"lineNumber":187,"author":{"gitId":"-"},"content":" Duke.addTask(taskType, args, false, false);","lastModifiedDate":"2023-08-30"},{"lineNumber":188,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":189,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":190,"author":{"gitId":"-"},"content":" private static void addTask(TaskType taskType, String args, boolean completed) {","lastModifiedDate":"2023-08-30"},{"lineNumber":191,"author":{"gitId":"-"},"content":" Duke.addTask(taskType, args, completed, false);","lastModifiedDate":"2023-08-30"},{"lineNumber":192,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":193,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":194,"author":{"gitId":"-"},"content":" private static void addTask(TaskType taskType, String args, boolean completed, boolean silent) {","lastModifiedDate":"2023-08-30"},{"lineNumber":195,"author":{"gitId":"-"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":196,"author":{"gitId":"-"},"content":" Optional\u003cTask\u003e taskToAdd \u003d Optional.empty();","lastModifiedDate":"2023-08-30"},{"lineNumber":197,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":198,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":199,"author":{"gitId":"-"},"content":" switch (taskType) {","lastModifiedDate":"2023-08-30"},{"lineNumber":200,"author":{"gitId":"-"},"content":" case TODO:","lastModifiedDate":"2023-08-30"},{"lineNumber":201,"author":{"gitId":"-"},"content":" if (args.trim().equals(\"\")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":202,"author":{"gitId":"-"},"content":" throw new DukeException(\"No description specified. Please specify a description.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":203,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":204,"author":{"gitId":"-"},"content":" taskToAdd \u003d Optional.of(new Todo(args));","lastModifiedDate":"2023-08-30"},{"lineNumber":205,"author":{"gitId":"-"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":206,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":207,"author":{"gitId":"-"},"content":" case DEADLINE:","lastModifiedDate":"2023-08-30"},{"lineNumber":208,"author":{"gitId":"-"},"content":" String[] deadlineArguments \u003d args.split(\"/\");","lastModifiedDate":"2023-08-30"},{"lineNumber":209,"author":{"gitId":"-"},"content":" String deadlineDescription \u003d deadlineArguments[0].trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":210,"author":{"gitId":"ElginTZM"},"content":" String dueDateTime \u003d null;","lastModifiedDate":"2023-08-24"},{"lineNumber":211,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":212,"author":{"gitId":"-"},"content":" for (int i \u003d 1; i \u003c deadlineArguments.length; i++) {","lastModifiedDate":"2023-08-30"},{"lineNumber":213,"author":{"gitId":"-"},"content":" if (deadlineArguments[i].startsWith(\"by \")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":214,"author":{"gitId":"-"},"content":" dueDateTime \u003d deadlineArguments[i].substring(3).trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":215,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":216,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":217,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":218,"author":{"gitId":"-"},"content":" if (deadlineDescription.equals(\"\")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":219,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No description specified. Please specify a description.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":220,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":221,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":222,"author":{"gitId":"ElginTZM"},"content":" if (dueDateTime \u003d\u003d null || dueDateTime.equals(\"\")) {","lastModifiedDate":"2023-08-24"},{"lineNumber":223,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No due date/time specified. Please specify a due date/time\");","lastModifiedDate":"2023-08-24"},{"lineNumber":224,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":225,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":226,"author":{"gitId":"-"},"content":" taskToAdd \u003d Optional.of(new Deadline(deadlineDescription, dueDateTime));","lastModifiedDate":"2023-08-30"},{"lineNumber":227,"author":{"gitId":"-"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":228,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":229,"author":{"gitId":"-"},"content":" case EVENT:","lastModifiedDate":"2023-08-30"},{"lineNumber":230,"author":{"gitId":"-"},"content":" String[] eventArguments \u003d args.split(\"/\");","lastModifiedDate":"2023-08-30"},{"lineNumber":231,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":232,"author":{"gitId":"-"},"content":" String eventDescription \u003d eventArguments[0].trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":233,"author":{"gitId":"ElginTZM"},"content":" String startDatetime \u003d null;","lastModifiedDate":"2023-08-24"},{"lineNumber":234,"author":{"gitId":"ElginTZM"},"content":" String endDatetime \u003d null;","lastModifiedDate":"2023-08-24"},{"lineNumber":235,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-24"},{"lineNumber":236,"author":{"gitId":"-"},"content":" for (int i \u003d 1; i \u003c eventArguments.length; i++) {","lastModifiedDate":"2023-08-30"},{"lineNumber":237,"author":{"gitId":"-"},"content":" if (eventArguments[i].startsWith(\"from \")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":238,"author":{"gitId":"-"},"content":" startDatetime \u003d eventArguments[i].substring(5).trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":239,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":240,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":241,"author":{"gitId":"-"},"content":" if (eventArguments[i].startsWith(\"to \")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":242,"author":{"gitId":"-"},"content":" endDatetime \u003d eventArguments[i].substring(3).trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":243,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":244,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":245,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":246,"author":{"gitId":"-"},"content":" if (eventDescription.equals(\"\")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":247,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No description specified. Please specify a description.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":248,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":249,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-24"},{"lineNumber":250,"author":{"gitId":"ElginTZM"},"content":" if (startDatetime \u003d\u003d null || startDatetime.equals(\"\")) {","lastModifiedDate":"2023-08-24"},{"lineNumber":251,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No start date/time specified. Please specify a start date/time.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":252,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":253,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":254,"author":{"gitId":"ElginTZM"},"content":" if (endDatetime \u003d\u003d null|| endDatetime.equals(\"\")) {","lastModifiedDate":"2023-08-24"},{"lineNumber":255,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No end date/time specified. Please specify an end date/time.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":256,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":257,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":258,"author":{"gitId":"-"},"content":" taskToAdd \u003d Optional.of(new Event(eventDescription, startDatetime, endDatetime));","lastModifiedDate":"2023-08-30"},{"lineNumber":259,"author":{"gitId":"-"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":260,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":261,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":262,"author":{"gitId":"-"},"content":" taskToAdd.ifPresent(","lastModifiedDate":"2023-08-30"},{"lineNumber":263,"author":{"gitId":"-"},"content":" task -\u003e {","lastModifiedDate":"2023-08-30"},{"lineNumber":264,"author":{"gitId":"-"},"content":" tasks.add(task);","lastModifiedDate":"2023-08-30"},{"lineNumber":265,"author":{"gitId":"-"},"content":" if (!silent) {","lastModifiedDate":"2023-08-30"},{"lineNumber":266,"author":{"gitId":"-"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-30"},{"lineNumber":267,"author":{"gitId":"-"},"content":" messages.add(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2023-08-30"},{"lineNumber":268,"author":{"gitId":"-"},"content":" messages.add(String.format(\" %s\", task.toString()));","lastModifiedDate":"2023-08-30"},{"lineNumber":269,"author":{"gitId":"-"},"content":" messages.add(String.format(\"Now you have %d tasks in the list.\", tasks.size()));","lastModifiedDate":"2023-08-30"},{"lineNumber":270,"author":{"gitId":"-"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-30"},{"lineNumber":271,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":272,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":273,"author":{"gitId":"-"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":274,"author":{"gitId":"-"},"content":" Duke.storeTasks();","lastModifiedDate":"2023-08-30"},{"lineNumber":275,"author":{"gitId":"-"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":276,"author":{"gitId":"-"},"content":" Duke.respond(e);","lastModifiedDate":"2023-08-30"},{"lineNumber":277,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":278,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":279,"author":{"gitId":"-"},"content":" );","lastModifiedDate":"2023-08-30"},{"lineNumber":280,"author":{"gitId":"-"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":281,"author":{"gitId":"-"},"content":" Duke.respond(e);","lastModifiedDate":"2023-08-30"},{"lineNumber":282,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":283,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":284,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":285,"author":{"gitId":"ElginTZM"},"content":" private static void loadTasks() throws DukeException{","lastModifiedDate":"2023-08-28"},{"lineNumber":286,"author":{"gitId":"-"},"content":" Path taskFilePath \u003d Path.of(\"./data/duke.txt\");","lastModifiedDate":"2023-08-30"},{"lineNumber":287,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":288,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-28"},{"lineNumber":289,"author":{"gitId":"-"},"content":" if (!Files.exists(taskFilePath)) {","lastModifiedDate":"2023-08-30"},{"lineNumber":290,"author":{"gitId":"-"},"content":" Files.createDirectories(taskFilePath.getParent());","lastModifiedDate":"2023-08-30"},{"lineNumber":291,"author":{"gitId":"-"},"content":" Files.createFile(taskFilePath);","lastModifiedDate":"2023-08-30"},{"lineNumber":292,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":293,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":294,"author":{"gitId":"-"},"content":" BufferedReader reader \u003d Files.newBufferedReader(taskFilePath);","lastModifiedDate":"2023-08-30"},{"lineNumber":295,"author":{"gitId":"-"},"content":" reader.lines().forEach(line -\u003e {","lastModifiedDate":"2023-08-30"},{"lineNumber":296,"author":{"gitId":"-"},"content":" String[] taskData \u003d line.split(\" \\\\| \");","lastModifiedDate":"2023-08-30"},{"lineNumber":297,"author":{"gitId":"-"},"content":" ","lastModifiedDate":"2023-08-30"},{"lineNumber":298,"author":{"gitId":"-"},"content":" // Handles case where empty line is read","lastModifiedDate":"2023-08-30"},{"lineNumber":299,"author":{"gitId":"-"},"content":" if (taskData.length \u003d\u003d 0) {","lastModifiedDate":"2023-08-30"},{"lineNumber":300,"author":{"gitId":"-"},"content":" return;","lastModifiedDate":"2023-08-30"},{"lineNumber":301,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":302,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":303,"author":{"gitId":"-"},"content":" switch (taskData[0]) {","lastModifiedDate":"2023-08-30"},{"lineNumber":304,"author":{"gitId":"-"},"content":" case \"T\":","lastModifiedDate":"2023-08-30"},{"lineNumber":305,"author":{"gitId":"-"},"content":" // Ensures there is completion status and description","lastModifiedDate":"2023-08-30"},{"lineNumber":306,"author":{"gitId":"-"},"content":" if (taskData.length \u003c 3) {","lastModifiedDate":"2023-08-30"},{"lineNumber":307,"author":{"gitId":"-"},"content":" return;","lastModifiedDate":"2023-08-30"},{"lineNumber":308,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":309,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":310,"author":{"gitId":"-"},"content":" boolean todoCompletion \u003d taskData[1].equals(\"1\");","lastModifiedDate":"2023-08-30"},{"lineNumber":311,"author":{"gitId":"-"},"content":" String todoDescription \u003d taskData[2];","lastModifiedDate":"2023-08-30"},{"lineNumber":312,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":313,"author":{"gitId":"-"},"content":" Duke.addTask(TaskType.TODO, todoDescription, todoCompletion, true);","lastModifiedDate":"2023-08-30"},{"lineNumber":314,"author":{"gitId":"-"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":315,"author":{"gitId":"-"},"content":" case \"D\":","lastModifiedDate":"2023-08-30"},{"lineNumber":316,"author":{"gitId":"-"},"content":" // Ensure there is completion status, description and deadline","lastModifiedDate":"2023-08-30"},{"lineNumber":317,"author":{"gitId":"-"},"content":" if (taskData.length \u003c 4) {","lastModifiedDate":"2023-08-30"},{"lineNumber":318,"author":{"gitId":"-"},"content":" return;","lastModifiedDate":"2023-08-30"},{"lineNumber":319,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":320,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":321,"author":{"gitId":"-"},"content":" boolean deadlineCompletion \u003d taskData[1].equals(\"1\");","lastModifiedDate":"2023-08-30"},{"lineNumber":322,"author":{"gitId":"-"},"content":" String deadlineDescription \u003d taskData[2];","lastModifiedDate":"2023-08-30"},{"lineNumber":323,"author":{"gitId":"-"},"content":" String deadlineDueDate \u003d taskData[3];","lastModifiedDate":"2023-08-30"},{"lineNumber":324,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":325,"author":{"gitId":"-"},"content":" Duke.addTask(TaskType.DEADLINE,","lastModifiedDate":"2023-08-30"},{"lineNumber":326,"author":{"gitId":"-"},"content":" String.format(\"%s /by %s\", deadlineDescription, deadlineDueDate),","lastModifiedDate":"2023-08-30"},{"lineNumber":327,"author":{"gitId":"-"},"content":" deadlineCompletion,","lastModifiedDate":"2023-08-30"},{"lineNumber":328,"author":{"gitId":"-"},"content":" true);","lastModifiedDate":"2023-08-30"},{"lineNumber":329,"author":{"gitId":"-"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":330,"author":{"gitId":"-"},"content":" case \"E\":","lastModifiedDate":"2023-08-30"},{"lineNumber":331,"author":{"gitId":"-"},"content":" // Ensure there is completion status, description, start and end date","lastModifiedDate":"2023-08-30"},{"lineNumber":332,"author":{"gitId":"-"},"content":" if (taskData.length \u003c 5) {","lastModifiedDate":"2023-08-30"},{"lineNumber":333,"author":{"gitId":"-"},"content":" return;","lastModifiedDate":"2023-08-30"},{"lineNumber":334,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":335,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":336,"author":{"gitId":"-"},"content":" boolean eventCompletion \u003d taskData[1].equals(\"1\");","lastModifiedDate":"2023-08-30"},{"lineNumber":337,"author":{"gitId":"-"},"content":" String eventDescription \u003d taskData[2];","lastModifiedDate":"2023-08-30"},{"lineNumber":338,"author":{"gitId":"-"},"content":" String eventStartDate \u003d taskData[3];","lastModifiedDate":"2023-08-30"},{"lineNumber":339,"author":{"gitId":"-"},"content":" String eventEndDate \u003d taskData[4];","lastModifiedDate":"2023-08-30"},{"lineNumber":340,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":341,"author":{"gitId":"-"},"content":" Duke.addTask(TaskType.EVENT,","lastModifiedDate":"2023-08-30"},{"lineNumber":342,"author":{"gitId":"-"},"content":" String.format(\"%s /from %s /to %s\", eventDescription, eventStartDate, eventEndDate),","lastModifiedDate":"2023-08-30"},{"lineNumber":343,"author":{"gitId":"-"},"content":" eventCompletion,","lastModifiedDate":"2023-08-30"},{"lineNumber":344,"author":{"gitId":"-"},"content":" true);","lastModifiedDate":"2023-08-30"},{"lineNumber":345,"author":{"gitId":"-"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":346,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":347,"author":{"gitId":"-"},"content":" });","lastModifiedDate":"2023-08-30"},{"lineNumber":348,"author":{"gitId":"-"},"content":" } catch (Exception e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":349,"author":{"gitId":"-"},"content":" throw new DukeException(\"Unable to load previously saved tasks.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":350,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":351,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":352,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":353,"author":{"gitId":"-"},"content":" private static void storeTasks() throws DukeException{","lastModifiedDate":"2023-08-30"},{"lineNumber":354,"author":{"gitId":"-"},"content":" Path taskFilePath \u003d Path.of(\"./data/duke.txt\");","lastModifiedDate":"2023-08-30"},{"lineNumber":355,"author":{"gitId":"-"},"content":" ","lastModifiedDate":"2023-08-30"},{"lineNumber":356,"author":{"gitId":"-"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":357,"author":{"gitId":"-"},"content":" Files.deleteIfExists(taskFilePath);","lastModifiedDate":"2023-08-30"},{"lineNumber":358,"author":{"gitId":"-"},"content":" } catch (Exception e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":359,"author":{"gitId":"-"},"content":" throw new DukeException(\"Unable to save task data.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":360,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":361,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":362,"author":{"gitId":"-"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":363,"author":{"gitId":"-"},"content":" BufferedWriter writer \u003d Files.newBufferedWriter(taskFilePath);","lastModifiedDate":"2023-08-30"},{"lineNumber":364,"author":{"gitId":"-"},"content":" for (Task task: tasks) {","lastModifiedDate":"2023-08-30"},{"lineNumber":365,"author":{"gitId":"-"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":366,"author":{"gitId":"-"},"content":" writer.write(task.getDataString());","lastModifiedDate":"2023-08-30"},{"lineNumber":367,"author":{"gitId":"-"},"content":" writer.newLine();","lastModifiedDate":"2023-08-30"},{"lineNumber":368,"author":{"gitId":"-"},"content":" } catch (Exception e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":369,"author":{"gitId":"-"},"content":" throw new DukeException(\"Unable to write task data.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":370,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":371,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-28"},{"lineNumber":372,"author":{"gitId":"-"},"content":" writer.close();","lastModifiedDate":"2023-08-30"},{"lineNumber":373,"author":{"gitId":"ElginTZM"},"content":" } catch (Exception e) {","lastModifiedDate":"2023-08-28"},{"lineNumber":374,"author":{"gitId":"-"},"content":" throw new DukeException(\"Unable to open file.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":375,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-28"},{"lineNumber":376,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-28"},{"lineNumber":377,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-28"},{"lineNumber":378,"author":{"gitId":"-"},"content":" public static void main(String[] args) {","lastModifiedDate":"2019-07-29"},{"lineNumber":379,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-28"},{"lineNumber":380,"author":{"gitId":"ElginTZM"},"content":" Duke.loadTasks();","lastModifiedDate":"2023-08-28"},{"lineNumber":381,"author":{"gitId":"ElginTZM"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-28"},{"lineNumber":382,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(e);","lastModifiedDate":"2023-08-28"},{"lineNumber":383,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-28"},{"lineNumber":384,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-28"},{"lineNumber":385,"author":{"gitId":"ElginTZM"},"content":" Duke.greet();","lastModifiedDate":"2023-08-24"},{"lineNumber":386,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":387,"author":{"gitId":"ElginTZM"},"content":" Scanner scanner \u003d new Scanner(System.in);","lastModifiedDate":"2023-08-24"},{"lineNumber":388,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":389,"author":{"gitId":"ElginTZM"},"content":" while (programRunning) {","lastModifiedDate":"2023-08-24"},{"lineNumber":390,"author":{"gitId":"ElginTZM"},"content":" String input \u003d scanner.nextLine();","lastModifiedDate":"2023-08-24"},{"lineNumber":391,"author":{"gitId":"ElginTZM"},"content":" System.out.println();","lastModifiedDate":"2023-08-24"},{"lineNumber":392,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":393,"author":{"gitId":"ElginTZM"},"content":" if (input.trim().equals(\"\")) {","lastModifiedDate":"2023-08-24"},{"lineNumber":394,"author":{"gitId":"ElginTZM"},"content":" continue;","lastModifiedDate":"2023-08-24"},{"lineNumber":395,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":396,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":397,"author":{"gitId":"ElginTZM"},"content":" String[] splitInput \u003d input.split(\" \", 2);","lastModifiedDate":"2023-08-24"},{"lineNumber":398,"author":{"gitId":"ElginTZM"},"content":" String command \u003d splitInput[0];","lastModifiedDate":"2023-08-24"},{"lineNumber":399,"author":{"gitId":"ElginTZM"},"content":" String arguments \u003d splitInput.length \u003e 1 ? splitInput[1] : \"\";","lastModifiedDate":"2023-08-24"},{"lineNumber":400,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":401,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-24"},{"lineNumber":402,"author":{"gitId":"ElginTZM"},"content":" switch(command) {","lastModifiedDate":"2023-08-24"},{"lineNumber":403,"author":{"gitId":"ElginTZM"},"content":" case \"bye\":","lastModifiedDate":"2023-08-24"},{"lineNumber":404,"author":{"gitId":"ElginTZM"},"content":" programRunning \u003d false;","lastModifiedDate":"2023-08-24"},{"lineNumber":405,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":406,"author":{"gitId":"ElginTZM"},"content":" case \"list\":","lastModifiedDate":"2023-08-24"},{"lineNumber":407,"author":{"gitId":"ElginTZM"},"content":" Duke.listTasks(tasks);","lastModifiedDate":"2023-08-24"},{"lineNumber":408,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":409,"author":{"gitId":"ElginTZM"},"content":" case \"mark\":","lastModifiedDate":"2023-08-24"},{"lineNumber":410,"author":{"gitId":"ElginTZM"},"content":" Duke.markTaskAsDone(arguments);","lastModifiedDate":"2023-08-24"},{"lineNumber":411,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":412,"author":{"gitId":"ElginTZM"},"content":" case \"unmark\":","lastModifiedDate":"2023-08-24"},{"lineNumber":413,"author":{"gitId":"ElginTZM"},"content":" Duke.markTaskAsUndone(arguments);","lastModifiedDate":"2023-08-24"},{"lineNumber":414,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":415,"author":{"gitId":"ElginTZM"},"content":" case \"todo\":","lastModifiedDate":"2023-08-24"},{"lineNumber":416,"author":{"gitId":"-"},"content":" Duke.addTask(TaskType.TODO, arguments);","lastModifiedDate":"2023-08-30"},{"lineNumber":417,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":418,"author":{"gitId":"ElginTZM"},"content":" case \"deadline\":","lastModifiedDate":"2023-08-24"},{"lineNumber":419,"author":{"gitId":"-"},"content":" Duke.addTask(TaskType.DEADLINE, arguments);","lastModifiedDate":"2023-08-30"},{"lineNumber":420,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":421,"author":{"gitId":"ElginTZM"},"content":" case \"event\":","lastModifiedDate":"2023-08-24"},{"lineNumber":422,"author":{"gitId":"-"},"content":" Duke.addTask(TaskType.EVENT, arguments);","lastModifiedDate":"2023-08-30"},{"lineNumber":423,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":424,"author":{"gitId":"ElginTZM"},"content":" case \"delete\": ","lastModifiedDate":"2023-08-24"},{"lineNumber":425,"author":{"gitId":"ElginTZM"},"content":" Duke.deleteTask(arguments);","lastModifiedDate":"2023-08-24"},{"lineNumber":426,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":427,"author":{"gitId":"ElginTZM"},"content":" default:","lastModifiedDate":"2023-08-24"},{"lineNumber":428,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Command \\\"%s\\\" does not exist!\"","lastModifiedDate":"2023-08-24"},{"lineNumber":429,"author":{"gitId":"ElginTZM"},"content":" + \"Please type another command.\", command));","lastModifiedDate":"2023-08-24"},{"lineNumber":430,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":431,"author":{"gitId":"ElginTZM"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-24"},{"lineNumber":432,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(e);","lastModifiedDate":"2023-08-24"},{"lineNumber":433,"author":{"gitId":"ElginTZM"},"content":" continue;","lastModifiedDate":"2023-08-24"},{"lineNumber":434,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":435,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":436,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":437,"author":{"gitId":"ElginTZM"},"content":" scanner.close();","lastModifiedDate":"2023-08-24"},{"lineNumber":438,"author":{"gitId":"ElginTZM"},"content":" Duke.exit();","lastModifiedDate":"2023-08-24"},{"lineNumber":439,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2019-07-29"},{"lineNumber":440,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2019-07-29"}],"authorContributionMap":{"ElginTZM":276,"-":164}},{"path":"src/main/java/DukeException.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"public class DukeException extends Exception {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":" private static final String ANSI_RED \u003d \"\\u001B[31m\";","lastModifiedDate":"2023-08-24"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" private static final String ANSI_RESET \u003d \"\\u001B[0m\";","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":" public DukeException(String message) {","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":" super(message);","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":" return String.format(\"%sError: %s%s\", ANSI_RED, super.getMessage(), ANSI_RESET);","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":13}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"public class Event extends Task {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"-"},"content":" private static String SYMBOL \u003d \"E\";","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" protected String startDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":" protected String endDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":" public Event(String description, String startDatetime, String endDatetime) {","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":" super(description);","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":" this.startDatetime \u003d startDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":" this.endDatetime \u003d endDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"-"},"content":" @Override","lastModifiedDate":"2023-08-30"},{"lineNumber":13,"author":{"gitId":"-"},"content":" public String getDataString() {","lastModifiedDate":"2023-08-30"},{"lineNumber":14,"author":{"gitId":"-"},"content":" return String.join(\" | \", Event.SYMBOL, super.isDone ? \"1\" : \"0\", super.getDescription(), this.startDatetime, this.endDatetime);","lastModifiedDate":"2023-08-30"},{"lineNumber":15,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":16,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":18,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":19,"author":{"gitId":"-"},"content":" return String.format(\"[%s]%s (from: %s to: %s)\", Event.SYMBOL, super.toString(), this.startDatetime, this.endDatetime);","lastModifiedDate":"2023-08-30"},{"lineNumber":20,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":14,"-":7}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"-"},"content":"abstract class Task {","lastModifiedDate":"2023-08-30"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":" protected String description;","lastModifiedDate":"2023-08-24"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" protected boolean isDone;","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"-"},"content":" abstract public String getDataString();","lastModifiedDate":"2023-08-30"},{"lineNumber":6,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":" public Task(String description) {","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":" this.description \u003d description;","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":" protected String getStatusIcon() {","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":" return (isDone ? \"X\" : \" \");","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":16,"author":{"gitId":"-"},"content":" protected String getDescription() {","lastModifiedDate":"2023-08-30"},{"lineNumber":17,"author":{"gitId":"-"},"content":" return this.description;","lastModifiedDate":"2023-08-30"},{"lineNumber":18,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":19,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":20,"author":{"gitId":"ElginTZM"},"content":" public void markAsDone() {","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"ElginTZM"},"content":" this.isDone \u003d true;","lastModifiedDate":"2023-08-24"},{"lineNumber":22,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":23,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":24,"author":{"gitId":"ElginTZM"},"content":" public void markAsUndone() {","lastModifiedDate":"2023-08-24"},{"lineNumber":25,"author":{"gitId":"ElginTZM"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-24"},{"lineNumber":26,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":27,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":28,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":29,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":30,"author":{"gitId":"-"},"content":" return String.format(\"[%s] %s\", this.getStatusIcon(), this.getDescription());","lastModifiedDate":"2023-08-30"},{"lineNumber":31,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":32,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":24,"-":8}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"public class Todo extends Task {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"-"},"content":" private static String SYMBOL \u003d \"T\";","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":" public Todo (String description) {","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":" super(description);","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"-"},"content":" @Override","lastModifiedDate":"2023-08-30"},{"lineNumber":9,"author":{"gitId":"-"},"content":" public String getDataString() {","lastModifiedDate":"2023-08-30"},{"lineNumber":10,"author":{"gitId":"-"},"content":" return String.join(\" | \", Todo.SYMBOL, super.isDone ? \"1\" : \"0\", super.getDescription());","lastModifiedDate":"2023-08-30"},{"lineNumber":11,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":12,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"-"},"content":" return String.format(\"[%s]%s\", Todo.SYMBOL, super.toString());","lastModifiedDate":"2023-08-30"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":10,"-":7}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":"todo","lastModifiedDate":"2023-08-24"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":"todo Todo","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"deadline","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":"deadline Deadline without due date","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":"deadline Deadline with random argument specified /random argument","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":"deadline Deadline with due date /by due date","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":"event","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":"event Event without start and end date","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":"event Event with only start date /from start date","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":"event Event with only end date /to end date","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":"event Event with random argument specified /random argument","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":"mark 1","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":"mark 3","lastModifiedDate":"2023-08-24"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":"mark one","lastModifiedDate":"2023-08-24"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":18,"author":{"gitId":"ElginTZM"},"content":"unmark 1","lastModifiedDate":"2023-08-24"},{"lineNumber":19,"author":{"gitId":"ElginTZM"},"content":"unmark one","lastModifiedDate":"2023-08-24"},{"lineNumber":20,"author":{"gitId":"ElginTZM"},"content":"unmark 3","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":22,"author":{"gitId":"ElginTZM"},"content":"delete 1","lastModifiedDate":"2023-08-24"},{"lineNumber":23,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":24,"author":{"gitId":"ElginTZM"},"content":"delete one","lastModifiedDate":"2023-08-24"},{"lineNumber":25,"author":{"gitId":"ElginTZM"},"content":"delete 3","lastModifiedDate":"2023-08-24"},{"lineNumber":26,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":27,"author":{"gitId":"ElginTZM"},"content":"delete -100","lastModifiedDate":"2023-08-24"},{"lineNumber":28,"author":{"gitId":"ElginTZM"},"content":"mark -100","lastModifiedDate":"2023-08-24"},{"lineNumber":29,"author":{"gitId":"ElginTZM"},"content":"unmark -100","lastModifiedDate":"2023-08-24"},{"lineNumber":30,"author":{"gitId":"ElginTZM"},"content":"bye","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":30}}] +[{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"public class Deadline extends Task {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":" private static String SYMBOL \u003d \"D\";","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" protected String dueDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":" public Deadline(String description, String dueDatetime) {","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":" super(description);","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":" this.dueDatetime \u003d dueDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-30"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":" public String getDataString() {","lastModifiedDate":"2023-08-30"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":" return String.join(\" | \", Deadline.SYMBOL, super.isDone ? \"1\" : \"0\", super.getDescription(), this.dueDatetime);","lastModifiedDate":"2023-08-30"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":" return String.format(\"[%s]%s (by: %s)\", Deadline.SYMBOL, super.toString(), this.dueDatetime);","lastModifiedDate":"2023-08-30"},{"lineNumber":18,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":19,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":19}},{"path":"src/main/java/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"import java.io.BufferedReader;","lastModifiedDate":"2023-08-30"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":"import java.io.BufferedWriter;","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":"import java.nio.file.Files;","lastModifiedDate":"2023-08-30"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"import java.nio.file.Path;","lastModifiedDate":"2023-08-30"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":"import java.util.ArrayList;","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":"import java.util.List;","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":"import java.util.Optional;","lastModifiedDate":"2023-08-30"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":"import java.util.Scanner;","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"-"},"content":"public class Duke {","lastModifiedDate":"2019-07-29"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":" private static String LINE_SEPARATOR \u003d \" ----------------------------------------------------------------------\";","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":" private static ArrayList\u003cTask\u003e tasks \u003d new ArrayList\u003cTask\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":" private static Boolean programRunning \u003d true;","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":" private enum TaskType {","lastModifiedDate":"2023-08-30"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":" TODO, DEADLINE, EVENT","lastModifiedDate":"2023-08-30"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":18,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":19,"author":{"gitId":"ElginTZM"},"content":" private static \u003cT\u003e void respond(T message) {","lastModifiedDate":"2023-08-24"},{"lineNumber":20,"author":{"gitId":"ElginTZM"},"content":" System.out.println(LINE_SEPARATOR);","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"ElginTZM"},"content":" System.out.println(String.format(\" %s\", message.toString()));","lastModifiedDate":"2023-08-24"},{"lineNumber":22,"author":{"gitId":"ElginTZM"},"content":" System.out.println(LINE_SEPARATOR);","lastModifiedDate":"2023-08-24"},{"lineNumber":23,"author":{"gitId":"ElginTZM"},"content":" System.out.print(\"\u003e\u003e\u003e \");","lastModifiedDate":"2023-08-24"},{"lineNumber":24,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":25,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":26,"author":{"gitId":"ElginTZM"},"content":" private static \u003cT\u003e void respond(List\u003cT\u003e messages) {","lastModifiedDate":"2023-08-24"},{"lineNumber":27,"author":{"gitId":"ElginTZM"},"content":" System.out.println(LINE_SEPARATOR);","lastModifiedDate":"2023-08-24"},{"lineNumber":28,"author":{"gitId":"ElginTZM"},"content":" for (T message: messages) {","lastModifiedDate":"2023-08-24"},{"lineNumber":29,"author":{"gitId":"ElginTZM"},"content":" System.out.println(String.format(\" %s\", message.toString()));","lastModifiedDate":"2023-08-24"},{"lineNumber":30,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":31,"author":{"gitId":"ElginTZM"},"content":" System.out.println(LINE_SEPARATOR);","lastModifiedDate":"2023-08-24"},{"lineNumber":32,"author":{"gitId":"ElginTZM"},"content":" System.out.print(\"\u003e\u003e\u003e \");","lastModifiedDate":"2023-08-24"},{"lineNumber":33,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":34,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-24"},{"lineNumber":35,"author":{"gitId":"ElginTZM"},"content":" private static void greet() {","lastModifiedDate":"2023-08-24"},{"lineNumber":36,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":37,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"Hello! I\u0027m A-CAT (Automated Chatbot Assistant for Tasks)\");","lastModifiedDate":"2023-08-24"},{"lineNumber":38,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"What do you want to do today?\");","lastModifiedDate":"2023-08-24"},{"lineNumber":39,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-24"},{"lineNumber":40,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":41,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":42,"author":{"gitId":"ElginTZM"},"content":" private static void exit() {","lastModifiedDate":"2023-08-24"},{"lineNumber":43,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(\"Bye. Hope to see you again soon!\");","lastModifiedDate":"2023-08-24"},{"lineNumber":44,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":45,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":46,"author":{"gitId":"ElginTZM"},"content":" private static void listTasks(ArrayList\u003cTask\u003e tasks) throws DukeException{","lastModifiedDate":"2023-08-24"},{"lineNumber":47,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e output \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":48,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":49,"author":{"gitId":"ElginTZM"},"content":" for (int i \u003d 0; i \u003c tasks.size(); i++) {","lastModifiedDate":"2023-08-24"},{"lineNumber":50,"author":{"gitId":"ElginTZM"},"content":" String taskOutput \u003d String.format(\"%d. %s\", i + 1, tasks.get(i));","lastModifiedDate":"2023-08-24"},{"lineNumber":51,"author":{"gitId":"ElginTZM"},"content":" output.add(taskOutput);","lastModifiedDate":"2023-08-24"},{"lineNumber":52,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":53,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":54,"author":{"gitId":"ElginTZM"},"content":" if (output.size() \u003d\u003d 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":55,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(\"There are no tasks in your list.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":56,"author":{"gitId":"ElginTZM"},"content":" return;","lastModifiedDate":"2023-08-24"},{"lineNumber":57,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":58,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":59,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(output);","lastModifiedDate":"2023-08-24"},{"lineNumber":60,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":61,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":62,"author":{"gitId":"ElginTZM"},"content":" private static void markTaskAsDone(String args) throws DukeException {","lastModifiedDate":"2023-08-24"},{"lineNumber":63,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":64,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"There are no tasks added. Please add a task first.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":65,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":66,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":67,"author":{"gitId":"ElginTZM"},"content":" String taskIndexString \u003d args.split(\" \")[0];","lastModifiedDate":"2023-08-24"},{"lineNumber":68,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":69,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-24"},{"lineNumber":70,"author":{"gitId":"ElginTZM"},"content":" int taskIndex \u003d Integer.parseInt(taskIndexString) - 1;","lastModifiedDate":"2023-08-24"},{"lineNumber":71,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003c 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":72,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Task number cannot be negative.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":73,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":74,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":75,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":76,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003e\u003d tasks.size()) {","lastModifiedDate":"2023-08-24"},{"lineNumber":77,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 1) {","lastModifiedDate":"2023-08-24"},{"lineNumber":78,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":79,"author":{"gitId":"ElginTZM"},"content":" + \"Use \\\"mark 1\\\" to mark the first task as done.\", taskIndex + 1));","lastModifiedDate":"2023-08-24"},{"lineNumber":80,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":81,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":82,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist. Use a number between 1 and %d.\",","lastModifiedDate":"2023-08-24"},{"lineNumber":83,"author":{"gitId":"ElginTZM"},"content":" taskIndex + 1,","lastModifiedDate":"2023-08-24"},{"lineNumber":84,"author":{"gitId":"ElginTZM"},"content":" tasks.size()));","lastModifiedDate":"2023-08-24"},{"lineNumber":85,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":86,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":87,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":88,"author":{"gitId":"ElginTZM"},"content":" Task targetTask \u003d tasks.get(taskIndex);","lastModifiedDate":"2023-08-24"},{"lineNumber":89,"author":{"gitId":"ElginTZM"},"content":" targetTask.markAsDone();","lastModifiedDate":"2023-08-24"},{"lineNumber":90,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":91,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":92,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"Nice! I\u0027ve marked this task as done:\");","lastModifiedDate":"2023-08-24"},{"lineNumber":93,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\" %s\",targetTask.toString()));","lastModifiedDate":"2023-08-24"},{"lineNumber":94,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":95,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-24"},{"lineNumber":96,"author":{"gitId":"ElginTZM"},"content":" Duke.storeTasks();","lastModifiedDate":"2023-08-30"},{"lineNumber":97,"author":{"gitId":"ElginTZM"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2023-08-24"},{"lineNumber":98,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task number provided \\\"%s\\\" is not a number.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":99,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\", taskIndexString));","lastModifiedDate":"2023-08-24"},{"lineNumber":100,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":101,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":102,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":103,"author":{"gitId":"ElginTZM"},"content":" private static void markTaskAsUndone(String args) throws DukeException{","lastModifiedDate":"2023-08-24"},{"lineNumber":104,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":105,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"There are no tasks added. Please add a task first.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":106,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":107,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":108,"author":{"gitId":"ElginTZM"},"content":" String taskIndexString \u003d args.split(\" \")[0];","lastModifiedDate":"2023-08-24"},{"lineNumber":109,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":110,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-24"},{"lineNumber":111,"author":{"gitId":"ElginTZM"},"content":" int taskIndex \u003d Integer.parseInt(taskIndexString) - 1;","lastModifiedDate":"2023-08-24"},{"lineNumber":112,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003c 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":113,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Task number cannot be negative.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":114,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":115,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":116,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":117,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003e\u003d tasks.size()) {","lastModifiedDate":"2023-08-24"},{"lineNumber":118,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 1) {","lastModifiedDate":"2023-08-24"},{"lineNumber":119,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":120,"author":{"gitId":"ElginTZM"},"content":" + \"Use \\\"unmark 1\\\" to mark the first task as not done.\", taskIndex + 1));","lastModifiedDate":"2023-08-24"},{"lineNumber":121,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":122,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":123,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist. Use a number between 1 and %d.\",","lastModifiedDate":"2023-08-24"},{"lineNumber":124,"author":{"gitId":"ElginTZM"},"content":" taskIndex + 1,","lastModifiedDate":"2023-08-24"},{"lineNumber":125,"author":{"gitId":"ElginTZM"},"content":" tasks.size()));","lastModifiedDate":"2023-08-24"},{"lineNumber":126,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":127,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":128,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":129,"author":{"gitId":"ElginTZM"},"content":" Task targetTask \u003d tasks.get(taskIndex);","lastModifiedDate":"2023-08-24"},{"lineNumber":130,"author":{"gitId":"ElginTZM"},"content":" targetTask.markAsUndone();","lastModifiedDate":"2023-08-29"},{"lineNumber":131,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":132,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":133,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"OK, I\u0027ve marked this task as not done yet:\");","lastModifiedDate":"2023-08-24"},{"lineNumber":134,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\" %s\",targetTask.toString()));","lastModifiedDate":"2023-08-24"},{"lineNumber":135,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":136,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-24"},{"lineNumber":137,"author":{"gitId":"ElginTZM"},"content":" Duke.storeTasks();","lastModifiedDate":"2023-08-30"},{"lineNumber":138,"author":{"gitId":"ElginTZM"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2023-08-24"},{"lineNumber":139,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task number provided \\\"%s\\\" is not a number.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":140,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\", taskIndexString));","lastModifiedDate":"2023-08-24"},{"lineNumber":141,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":142,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":143,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":144,"author":{"gitId":"ElginTZM"},"content":" private static void deleteTask(String args) throws DukeException{","lastModifiedDate":"2023-08-24"},{"lineNumber":145,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":146,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"There are no tasks added. Please add a task first.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":147,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":148,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":149,"author":{"gitId":"ElginTZM"},"content":" String taskIndexString \u003d args.split(\" \")[0];","lastModifiedDate":"2023-08-24"},{"lineNumber":150,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":151,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-24"},{"lineNumber":152,"author":{"gitId":"ElginTZM"},"content":" int taskIndex \u003d Integer.parseInt(taskIndexString) - 1;","lastModifiedDate":"2023-08-24"},{"lineNumber":153,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003c 0) {","lastModifiedDate":"2023-08-24"},{"lineNumber":154,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Task number cannot be negative.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":155,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":156,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":157,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":158,"author":{"gitId":"ElginTZM"},"content":" if (taskIndex \u003e\u003d tasks.size()) {","lastModifiedDate":"2023-08-24"},{"lineNumber":159,"author":{"gitId":"ElginTZM"},"content":" if (tasks.size() \u003d\u003d 1) {","lastModifiedDate":"2023-08-24"},{"lineNumber":160,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":161,"author":{"gitId":"ElginTZM"},"content":" + \"Use \\\"delete 1\\\" to delete the first task.\", taskIndex + 1));","lastModifiedDate":"2023-08-24"},{"lineNumber":162,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":163,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":164,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task %d does not exist. Use a number between 1 and %d.\",","lastModifiedDate":"2023-08-24"},{"lineNumber":165,"author":{"gitId":"ElginTZM"},"content":" taskIndex + 1,","lastModifiedDate":"2023-08-24"},{"lineNumber":166,"author":{"gitId":"ElginTZM"},"content":" tasks.size()));","lastModifiedDate":"2023-08-24"},{"lineNumber":167,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":168,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":169,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":170,"author":{"gitId":"ElginTZM"},"content":" String targetTaskInfo \u003d tasks.get(taskIndex).toString();","lastModifiedDate":"2023-08-24"},{"lineNumber":171,"author":{"gitId":"ElginTZM"},"content":" tasks.remove(taskIndex);","lastModifiedDate":"2023-08-24"},{"lineNumber":172,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":173,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-24"},{"lineNumber":174,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"Noted. I\u0027ve removed this task:\");","lastModifiedDate":"2023-08-24"},{"lineNumber":175,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\" %s\", targetTaskInfo));","lastModifiedDate":"2023-08-24"},{"lineNumber":176,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\"Now you have %d tasks in the list.\", tasks.size()));","lastModifiedDate":"2023-08-24"},{"lineNumber":177,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":178,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-24"},{"lineNumber":179,"author":{"gitId":"ElginTZM"},"content":" Duke.storeTasks();","lastModifiedDate":"2023-08-30"},{"lineNumber":180,"author":{"gitId":"ElginTZM"},"content":" } catch (NumberFormatException e) {","lastModifiedDate":"2023-08-24"},{"lineNumber":181,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Task number provided \\\"%s\\\" is not a number.\\n \"","lastModifiedDate":"2023-08-24"},{"lineNumber":182,"author":{"gitId":"ElginTZM"},"content":" + \"Please retry with a valid task number.\", taskIndexString));","lastModifiedDate":"2023-08-24"},{"lineNumber":183,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":184,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":185,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":186,"author":{"gitId":"ElginTZM"},"content":" private static void addTask(TaskType taskType, String args) {","lastModifiedDate":"2023-08-30"},{"lineNumber":187,"author":{"gitId":"ElginTZM"},"content":" Duke.addTask(taskType, args, false, false);","lastModifiedDate":"2023-08-30"},{"lineNumber":188,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":189,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":190,"author":{"gitId":"ElginTZM"},"content":" private static void addTask(TaskType taskType, String args, boolean completed) {","lastModifiedDate":"2023-08-30"},{"lineNumber":191,"author":{"gitId":"ElginTZM"},"content":" Duke.addTask(taskType, args, completed, false);","lastModifiedDate":"2023-08-30"},{"lineNumber":192,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":193,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":194,"author":{"gitId":"ElginTZM"},"content":" private static void addTask(TaskType taskType, String args, boolean completed, boolean silent) {","lastModifiedDate":"2023-08-30"},{"lineNumber":195,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":196,"author":{"gitId":"ElginTZM"},"content":" Optional\u003cTask\u003e taskToAdd \u003d Optional.empty();","lastModifiedDate":"2023-08-30"},{"lineNumber":197,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":198,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":199,"author":{"gitId":"ElginTZM"},"content":" switch (taskType) {","lastModifiedDate":"2023-08-30"},{"lineNumber":200,"author":{"gitId":"ElginTZM"},"content":" case TODO:","lastModifiedDate":"2023-08-30"},{"lineNumber":201,"author":{"gitId":"ElginTZM"},"content":" if (args.trim().equals(\"\")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":202,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No description specified. Please specify a description.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":203,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":204,"author":{"gitId":"ElginTZM"},"content":" taskToAdd \u003d Optional.of(new Todo(args));","lastModifiedDate":"2023-08-30"},{"lineNumber":205,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":206,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":207,"author":{"gitId":"ElginTZM"},"content":" case DEADLINE:","lastModifiedDate":"2023-08-30"},{"lineNumber":208,"author":{"gitId":"ElginTZM"},"content":" String[] deadlineArguments \u003d args.split(\"/\");","lastModifiedDate":"2023-08-30"},{"lineNumber":209,"author":{"gitId":"ElginTZM"},"content":" String deadlineDescription \u003d deadlineArguments[0].trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":210,"author":{"gitId":"ElginTZM"},"content":" String dueDateTime \u003d null;","lastModifiedDate":"2023-08-24"},{"lineNumber":211,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":212,"author":{"gitId":"ElginTZM"},"content":" for (int i \u003d 1; i \u003c deadlineArguments.length; i++) {","lastModifiedDate":"2023-08-30"},{"lineNumber":213,"author":{"gitId":"ElginTZM"},"content":" if (deadlineArguments[i].startsWith(\"by \")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":214,"author":{"gitId":"ElginTZM"},"content":" dueDateTime \u003d deadlineArguments[i].substring(3).trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":215,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":216,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":217,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":218,"author":{"gitId":"ElginTZM"},"content":" if (deadlineDescription.equals(\"\")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":219,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No description specified. Please specify a description.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":220,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":221,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":222,"author":{"gitId":"ElginTZM"},"content":" if (dueDateTime \u003d\u003d null || dueDateTime.equals(\"\")) {","lastModifiedDate":"2023-08-24"},{"lineNumber":223,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No due date/time specified. Please specify a due date/time\");","lastModifiedDate":"2023-08-24"},{"lineNumber":224,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":225,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":226,"author":{"gitId":"ElginTZM"},"content":" taskToAdd \u003d Optional.of(new Deadline(deadlineDescription, dueDateTime));","lastModifiedDate":"2023-08-30"},{"lineNumber":227,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":228,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":229,"author":{"gitId":"ElginTZM"},"content":" case EVENT:","lastModifiedDate":"2023-08-30"},{"lineNumber":230,"author":{"gitId":"ElginTZM"},"content":" String[] eventArguments \u003d args.split(\"/\");","lastModifiedDate":"2023-08-30"},{"lineNumber":231,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":232,"author":{"gitId":"ElginTZM"},"content":" String eventDescription \u003d eventArguments[0].trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":233,"author":{"gitId":"ElginTZM"},"content":" String startDatetime \u003d null;","lastModifiedDate":"2023-08-24"},{"lineNumber":234,"author":{"gitId":"ElginTZM"},"content":" String endDatetime \u003d null;","lastModifiedDate":"2023-08-24"},{"lineNumber":235,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-24"},{"lineNumber":236,"author":{"gitId":"ElginTZM"},"content":" for (int i \u003d 1; i \u003c eventArguments.length; i++) {","lastModifiedDate":"2023-08-30"},{"lineNumber":237,"author":{"gitId":"ElginTZM"},"content":" if (eventArguments[i].startsWith(\"from \")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":238,"author":{"gitId":"ElginTZM"},"content":" startDatetime \u003d eventArguments[i].substring(5).trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":239,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":240,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":241,"author":{"gitId":"ElginTZM"},"content":" if (eventArguments[i].startsWith(\"to \")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":242,"author":{"gitId":"ElginTZM"},"content":" endDatetime \u003d eventArguments[i].substring(3).trim();","lastModifiedDate":"2023-08-30"},{"lineNumber":243,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":244,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":245,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":246,"author":{"gitId":"ElginTZM"},"content":" if (eventDescription.equals(\"\")) {","lastModifiedDate":"2023-08-30"},{"lineNumber":247,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No description specified. Please specify a description.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":248,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":249,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-24"},{"lineNumber":250,"author":{"gitId":"ElginTZM"},"content":" if (startDatetime \u003d\u003d null || startDatetime.equals(\"\")) {","lastModifiedDate":"2023-08-24"},{"lineNumber":251,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No start date/time specified. Please specify a start date/time.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":252,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":253,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":254,"author":{"gitId":"ElginTZM"},"content":" if (endDatetime \u003d\u003d null|| endDatetime.equals(\"\")) {","lastModifiedDate":"2023-08-24"},{"lineNumber":255,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"No end date/time specified. Please specify an end date/time.\");","lastModifiedDate":"2023-08-24"},{"lineNumber":256,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":257,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":258,"author":{"gitId":"ElginTZM"},"content":" taskToAdd \u003d Optional.of(new Event(eventDescription, startDatetime, endDatetime));","lastModifiedDate":"2023-08-30"},{"lineNumber":259,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":260,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":261,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":262,"author":{"gitId":"ElginTZM"},"content":" taskToAdd.ifPresent(","lastModifiedDate":"2023-08-30"},{"lineNumber":263,"author":{"gitId":"ElginTZM"},"content":" task -\u003e {","lastModifiedDate":"2023-08-30"},{"lineNumber":264,"author":{"gitId":"ElginTZM"},"content":" tasks.add(task);","lastModifiedDate":"2023-08-30"},{"lineNumber":265,"author":{"gitId":"ElginTZM"},"content":" if (!silent) {","lastModifiedDate":"2023-08-30"},{"lineNumber":266,"author":{"gitId":"ElginTZM"},"content":" ArrayList\u003cString\u003e messages \u003d new ArrayList\u003cString\u003e();","lastModifiedDate":"2023-08-30"},{"lineNumber":267,"author":{"gitId":"ElginTZM"},"content":" messages.add(\"Got it. I\u0027ve added this task:\");","lastModifiedDate":"2023-08-30"},{"lineNumber":268,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\" %s\", task.toString()));","lastModifiedDate":"2023-08-30"},{"lineNumber":269,"author":{"gitId":"ElginTZM"},"content":" messages.add(String.format(\"Now you have %d tasks in the list.\", tasks.size()));","lastModifiedDate":"2023-08-30"},{"lineNumber":270,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(messages);","lastModifiedDate":"2023-08-30"},{"lineNumber":271,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":272,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":273,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":274,"author":{"gitId":"ElginTZM"},"content":" Duke.storeTasks();","lastModifiedDate":"2023-08-30"},{"lineNumber":275,"author":{"gitId":"ElginTZM"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":276,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(e);","lastModifiedDate":"2023-08-30"},{"lineNumber":277,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":278,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":279,"author":{"gitId":"ElginTZM"},"content":" );","lastModifiedDate":"2023-08-30"},{"lineNumber":280,"author":{"gitId":"ElginTZM"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":281,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(e);","lastModifiedDate":"2023-08-30"},{"lineNumber":282,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":283,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":284,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":285,"author":{"gitId":"ElginTZM"},"content":" private static void loadTasks() throws DukeException{","lastModifiedDate":"2023-08-28"},{"lineNumber":286,"author":{"gitId":"ElginTZM"},"content":" Path taskFilePath \u003d Path.of(\"./data/duke.txt\");","lastModifiedDate":"2023-08-30"},{"lineNumber":287,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":288,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-28"},{"lineNumber":289,"author":{"gitId":"ElginTZM"},"content":" if (!Files.exists(taskFilePath)) {","lastModifiedDate":"2023-08-30"},{"lineNumber":290,"author":{"gitId":"ElginTZM"},"content":" Files.createDirectories(taskFilePath.getParent());","lastModifiedDate":"2023-08-30"},{"lineNumber":291,"author":{"gitId":"ElginTZM"},"content":" Files.createFile(taskFilePath);","lastModifiedDate":"2023-08-30"},{"lineNumber":292,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":293,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":294,"author":{"gitId":"ElginTZM"},"content":" BufferedReader reader \u003d Files.newBufferedReader(taskFilePath);","lastModifiedDate":"2023-08-30"},{"lineNumber":295,"author":{"gitId":"ElginTZM"},"content":" reader.lines().forEach(line -\u003e {","lastModifiedDate":"2023-08-30"},{"lineNumber":296,"author":{"gitId":"ElginTZM"},"content":" String[] taskData \u003d line.split(\" \\\\| \");","lastModifiedDate":"2023-08-30"},{"lineNumber":297,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-30"},{"lineNumber":298,"author":{"gitId":"ElginTZM"},"content":" // Handles case where empty line is read","lastModifiedDate":"2023-08-30"},{"lineNumber":299,"author":{"gitId":"ElginTZM"},"content":" if (taskData.length \u003d\u003d 0) {","lastModifiedDate":"2023-08-30"},{"lineNumber":300,"author":{"gitId":"ElginTZM"},"content":" return;","lastModifiedDate":"2023-08-30"},{"lineNumber":301,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":302,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":303,"author":{"gitId":"ElginTZM"},"content":" switch (taskData[0]) {","lastModifiedDate":"2023-08-30"},{"lineNumber":304,"author":{"gitId":"ElginTZM"},"content":" case \"T\":","lastModifiedDate":"2023-08-30"},{"lineNumber":305,"author":{"gitId":"ElginTZM"},"content":" // Ensures there is completion status and description","lastModifiedDate":"2023-08-30"},{"lineNumber":306,"author":{"gitId":"ElginTZM"},"content":" if (taskData.length \u003c 3) {","lastModifiedDate":"2023-08-30"},{"lineNumber":307,"author":{"gitId":"ElginTZM"},"content":" return;","lastModifiedDate":"2023-08-30"},{"lineNumber":308,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":309,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":310,"author":{"gitId":"ElginTZM"},"content":" boolean todoCompletion \u003d taskData[1].equals(\"1\");","lastModifiedDate":"2023-08-30"},{"lineNumber":311,"author":{"gitId":"ElginTZM"},"content":" String todoDescription \u003d taskData[2];","lastModifiedDate":"2023-08-30"},{"lineNumber":312,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":313,"author":{"gitId":"ElginTZM"},"content":" Duke.addTask(TaskType.TODO, todoDescription, todoCompletion, true);","lastModifiedDate":"2023-08-30"},{"lineNumber":314,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":315,"author":{"gitId":"ElginTZM"},"content":" case \"D\":","lastModifiedDate":"2023-08-30"},{"lineNumber":316,"author":{"gitId":"ElginTZM"},"content":" // Ensure there is completion status, description and deadline","lastModifiedDate":"2023-08-30"},{"lineNumber":317,"author":{"gitId":"ElginTZM"},"content":" if (taskData.length \u003c 4) {","lastModifiedDate":"2023-08-30"},{"lineNumber":318,"author":{"gitId":"ElginTZM"},"content":" return;","lastModifiedDate":"2023-08-30"},{"lineNumber":319,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":320,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":321,"author":{"gitId":"ElginTZM"},"content":" boolean deadlineCompletion \u003d taskData[1].equals(\"1\");","lastModifiedDate":"2023-08-30"},{"lineNumber":322,"author":{"gitId":"ElginTZM"},"content":" String deadlineDescription \u003d taskData[2];","lastModifiedDate":"2023-08-30"},{"lineNumber":323,"author":{"gitId":"ElginTZM"},"content":" String deadlineDueDate \u003d taskData[3];","lastModifiedDate":"2023-08-30"},{"lineNumber":324,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":325,"author":{"gitId":"ElginTZM"},"content":" Duke.addTask(TaskType.DEADLINE,","lastModifiedDate":"2023-08-30"},{"lineNumber":326,"author":{"gitId":"ElginTZM"},"content":" String.format(\"%s /by %s\", deadlineDescription, deadlineDueDate),","lastModifiedDate":"2023-08-30"},{"lineNumber":327,"author":{"gitId":"ElginTZM"},"content":" deadlineCompletion,","lastModifiedDate":"2023-08-30"},{"lineNumber":328,"author":{"gitId":"ElginTZM"},"content":" true);","lastModifiedDate":"2023-08-30"},{"lineNumber":329,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":330,"author":{"gitId":"ElginTZM"},"content":" case \"E\":","lastModifiedDate":"2023-08-30"},{"lineNumber":331,"author":{"gitId":"ElginTZM"},"content":" // Ensure there is completion status, description, start and end date","lastModifiedDate":"2023-08-30"},{"lineNumber":332,"author":{"gitId":"ElginTZM"},"content":" if (taskData.length \u003c 5) {","lastModifiedDate":"2023-08-30"},{"lineNumber":333,"author":{"gitId":"ElginTZM"},"content":" return;","lastModifiedDate":"2023-08-30"},{"lineNumber":334,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":335,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":336,"author":{"gitId":"ElginTZM"},"content":" boolean eventCompletion \u003d taskData[1].equals(\"1\");","lastModifiedDate":"2023-08-30"},{"lineNumber":337,"author":{"gitId":"ElginTZM"},"content":" String eventDescription \u003d taskData[2];","lastModifiedDate":"2023-08-30"},{"lineNumber":338,"author":{"gitId":"ElginTZM"},"content":" String eventStartDate \u003d taskData[3];","lastModifiedDate":"2023-08-30"},{"lineNumber":339,"author":{"gitId":"ElginTZM"},"content":" String eventEndDate \u003d taskData[4];","lastModifiedDate":"2023-08-30"},{"lineNumber":340,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":341,"author":{"gitId":"ElginTZM"},"content":" Duke.addTask(TaskType.EVENT,","lastModifiedDate":"2023-08-30"},{"lineNumber":342,"author":{"gitId":"ElginTZM"},"content":" String.format(\"%s /from %s /to %s\", eventDescription, eventStartDate, eventEndDate),","lastModifiedDate":"2023-08-30"},{"lineNumber":343,"author":{"gitId":"ElginTZM"},"content":" eventCompletion,","lastModifiedDate":"2023-08-30"},{"lineNumber":344,"author":{"gitId":"ElginTZM"},"content":" true);","lastModifiedDate":"2023-08-30"},{"lineNumber":345,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-30"},{"lineNumber":346,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":347,"author":{"gitId":"ElginTZM"},"content":" });","lastModifiedDate":"2023-08-30"},{"lineNumber":348,"author":{"gitId":"ElginTZM"},"content":" } catch (Exception e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":349,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Unable to load previously saved tasks.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":350,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":351,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":352,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":353,"author":{"gitId":"ElginTZM"},"content":" private static void storeTasks() throws DukeException{","lastModifiedDate":"2023-08-30"},{"lineNumber":354,"author":{"gitId":"ElginTZM"},"content":" Path taskFilePath \u003d Path.of(\"./data/duke.txt\");","lastModifiedDate":"2023-08-30"},{"lineNumber":355,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-30"},{"lineNumber":356,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":357,"author":{"gitId":"ElginTZM"},"content":" Files.deleteIfExists(taskFilePath);","lastModifiedDate":"2023-08-30"},{"lineNumber":358,"author":{"gitId":"ElginTZM"},"content":" } catch (Exception e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":359,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Unable to save task data.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":360,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":361,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":362,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":363,"author":{"gitId":"ElginTZM"},"content":" BufferedWriter writer \u003d Files.newBufferedWriter(taskFilePath);","lastModifiedDate":"2023-08-30"},{"lineNumber":364,"author":{"gitId":"ElginTZM"},"content":" for (Task task: tasks) {","lastModifiedDate":"2023-08-30"},{"lineNumber":365,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":366,"author":{"gitId":"ElginTZM"},"content":" writer.write(task.getDataString());","lastModifiedDate":"2023-08-30"},{"lineNumber":367,"author":{"gitId":"ElginTZM"},"content":" writer.newLine();","lastModifiedDate":"2023-08-30"},{"lineNumber":368,"author":{"gitId":"ElginTZM"},"content":" } catch (Exception e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":369,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Unable to write task data.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":370,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":371,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-28"},{"lineNumber":372,"author":{"gitId":"ElginTZM"},"content":" writer.close();","lastModifiedDate":"2023-08-30"},{"lineNumber":373,"author":{"gitId":"ElginTZM"},"content":" } catch (Exception e) {","lastModifiedDate":"2023-08-28"},{"lineNumber":374,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(\"Unable to open file.\");","lastModifiedDate":"2023-08-30"},{"lineNumber":375,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-28"},{"lineNumber":376,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-28"},{"lineNumber":377,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-28"},{"lineNumber":378,"author":{"gitId":"-"},"content":" public static void main(String[] args) {","lastModifiedDate":"2019-07-29"},{"lineNumber":379,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-28"},{"lineNumber":380,"author":{"gitId":"ElginTZM"},"content":" Duke.loadTasks();","lastModifiedDate":"2023-08-28"},{"lineNumber":381,"author":{"gitId":"ElginTZM"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-28"},{"lineNumber":382,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(e);","lastModifiedDate":"2023-08-28"},{"lineNumber":383,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-28"},{"lineNumber":384,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-28"},{"lineNumber":385,"author":{"gitId":"ElginTZM"},"content":" Duke.greet();","lastModifiedDate":"2023-08-24"},{"lineNumber":386,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":387,"author":{"gitId":"ElginTZM"},"content":" Scanner scanner \u003d new Scanner(System.in);","lastModifiedDate":"2023-08-24"},{"lineNumber":388,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":389,"author":{"gitId":"ElginTZM"},"content":" while (programRunning) {","lastModifiedDate":"2023-08-24"},{"lineNumber":390,"author":{"gitId":"ElginTZM"},"content":" String input \u003d scanner.nextLine();","lastModifiedDate":"2023-08-24"},{"lineNumber":391,"author":{"gitId":"ElginTZM"},"content":" System.out.println();","lastModifiedDate":"2023-08-24"},{"lineNumber":392,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":393,"author":{"gitId":"ElginTZM"},"content":" if (input.trim().equals(\"\")) {","lastModifiedDate":"2023-08-24"},{"lineNumber":394,"author":{"gitId":"ElginTZM"},"content":" continue;","lastModifiedDate":"2023-08-24"},{"lineNumber":395,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":396,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":397,"author":{"gitId":"ElginTZM"},"content":" String[] splitInput \u003d input.split(\" \", 2);","lastModifiedDate":"2023-08-24"},{"lineNumber":398,"author":{"gitId":"ElginTZM"},"content":" String command \u003d splitInput[0];","lastModifiedDate":"2023-08-24"},{"lineNumber":399,"author":{"gitId":"ElginTZM"},"content":" String arguments \u003d splitInput.length \u003e 1 ? splitInput[1] : \"\";","lastModifiedDate":"2023-08-24"},{"lineNumber":400,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":401,"author":{"gitId":"ElginTZM"},"content":" try {","lastModifiedDate":"2023-08-24"},{"lineNumber":402,"author":{"gitId":"ElginTZM"},"content":" switch(command) {","lastModifiedDate":"2023-08-24"},{"lineNumber":403,"author":{"gitId":"ElginTZM"},"content":" case \"bye\":","lastModifiedDate":"2023-08-24"},{"lineNumber":404,"author":{"gitId":"ElginTZM"},"content":" programRunning \u003d false;","lastModifiedDate":"2023-08-24"},{"lineNumber":405,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":406,"author":{"gitId":"ElginTZM"},"content":" case \"list\":","lastModifiedDate":"2023-08-24"},{"lineNumber":407,"author":{"gitId":"ElginTZM"},"content":" Duke.listTasks(tasks);","lastModifiedDate":"2023-08-24"},{"lineNumber":408,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":409,"author":{"gitId":"ElginTZM"},"content":" case \"mark\":","lastModifiedDate":"2023-08-24"},{"lineNumber":410,"author":{"gitId":"ElginTZM"},"content":" Duke.markTaskAsDone(arguments);","lastModifiedDate":"2023-08-24"},{"lineNumber":411,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":412,"author":{"gitId":"ElginTZM"},"content":" case \"unmark\":","lastModifiedDate":"2023-08-24"},{"lineNumber":413,"author":{"gitId":"ElginTZM"},"content":" Duke.markTaskAsUndone(arguments);","lastModifiedDate":"2023-08-24"},{"lineNumber":414,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":415,"author":{"gitId":"ElginTZM"},"content":" case \"todo\":","lastModifiedDate":"2023-08-24"},{"lineNumber":416,"author":{"gitId":"ElginTZM"},"content":" Duke.addTask(TaskType.TODO, arguments);","lastModifiedDate":"2023-08-30"},{"lineNumber":417,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":418,"author":{"gitId":"ElginTZM"},"content":" case \"deadline\":","lastModifiedDate":"2023-08-24"},{"lineNumber":419,"author":{"gitId":"ElginTZM"},"content":" Duke.addTask(TaskType.DEADLINE, arguments);","lastModifiedDate":"2023-08-30"},{"lineNumber":420,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":421,"author":{"gitId":"ElginTZM"},"content":" case \"event\":","lastModifiedDate":"2023-08-24"},{"lineNumber":422,"author":{"gitId":"ElginTZM"},"content":" Duke.addTask(TaskType.EVENT, arguments);","lastModifiedDate":"2023-08-30"},{"lineNumber":423,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":424,"author":{"gitId":"ElginTZM"},"content":" case \"delete\": ","lastModifiedDate":"2023-08-24"},{"lineNumber":425,"author":{"gitId":"ElginTZM"},"content":" Duke.deleteTask(arguments);","lastModifiedDate":"2023-08-24"},{"lineNumber":426,"author":{"gitId":"ElginTZM"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":427,"author":{"gitId":"ElginTZM"},"content":" default:","lastModifiedDate":"2023-08-24"},{"lineNumber":428,"author":{"gitId":"ElginTZM"},"content":" throw new DukeException(String.format(\"Command \\\"%s\\\" does not exist!\"","lastModifiedDate":"2023-08-24"},{"lineNumber":429,"author":{"gitId":"ElginTZM"},"content":" + \"Please type another command.\", command));","lastModifiedDate":"2023-08-24"},{"lineNumber":430,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":431,"author":{"gitId":"ElginTZM"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-24"},{"lineNumber":432,"author":{"gitId":"ElginTZM"},"content":" Duke.respond(e);","lastModifiedDate":"2023-08-24"},{"lineNumber":433,"author":{"gitId":"ElginTZM"},"content":" continue;","lastModifiedDate":"2023-08-24"},{"lineNumber":434,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":435,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":436,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":437,"author":{"gitId":"ElginTZM"},"content":" scanner.close();","lastModifiedDate":"2023-08-24"},{"lineNumber":438,"author":{"gitId":"ElginTZM"},"content":" Duke.exit();","lastModifiedDate":"2023-08-24"},{"lineNumber":439,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2019-07-29"},{"lineNumber":440,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2019-07-29"}],"authorContributionMap":{"ElginTZM":436,"-":4}},{"path":"src/main/java/DukeException.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"public class DukeException extends Exception {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":" private static final String ANSI_RED \u003d \"\\u001B[31m\";","lastModifiedDate":"2023-08-24"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" private static final String ANSI_RESET \u003d \"\\u001B[0m\";","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":" public DukeException(String message) {","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":" super(message);","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":" return String.format(\"%sError: %s%s\", ANSI_RED, super.getMessage(), ANSI_RESET);","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":13}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"public class Event extends Task {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":" private static String SYMBOL \u003d \"E\";","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" protected String startDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":" protected String endDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":" public Event(String description, String startDatetime, String endDatetime) {","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":" super(description);","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":" this.startDatetime \u003d startDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":" this.endDatetime \u003d endDatetime;","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-30"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":" public String getDataString() {","lastModifiedDate":"2023-08-30"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":" return String.join(\" | \", Event.SYMBOL, super.isDone ? \"1\" : \"0\", super.getDescription(), this.startDatetime, this.endDatetime);","lastModifiedDate":"2023-08-30"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":18,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":19,"author":{"gitId":"ElginTZM"},"content":" return String.format(\"[%s]%s (from: %s to: %s)\", Event.SYMBOL, super.toString(), this.startDatetime, this.endDatetime);","lastModifiedDate":"2023-08-30"},{"lineNumber":20,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":21}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"abstract class Task {","lastModifiedDate":"2023-08-30"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":" protected String description;","lastModifiedDate":"2023-08-24"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" protected boolean isDone;","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":" abstract public String getDataString();","lastModifiedDate":"2023-08-30"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":" public Task(String description) {","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":" this.description \u003d description;","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":" protected String getStatusIcon() {","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":" return (isDone ? \"X\" : \" \");","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":" protected String getDescription() {","lastModifiedDate":"2023-08-30"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":" return this.description;","lastModifiedDate":"2023-08-30"},{"lineNumber":18,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":19,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":20,"author":{"gitId":"ElginTZM"},"content":" public void markAsDone() {","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"ElginTZM"},"content":" this.isDone \u003d true;","lastModifiedDate":"2023-08-24"},{"lineNumber":22,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":23,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":24,"author":{"gitId":"ElginTZM"},"content":" public void markAsUndone() {","lastModifiedDate":"2023-08-24"},{"lineNumber":25,"author":{"gitId":"ElginTZM"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-24"},{"lineNumber":26,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":27,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":28,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":29,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":30,"author":{"gitId":"ElginTZM"},"content":" return String.format(\"[%s] %s\", this.getStatusIcon(), this.getDescription());","lastModifiedDate":"2023-08-30"},{"lineNumber":31,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":32,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":32}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"public class Todo extends Task {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":" private static String SYMBOL \u003d \"T\";","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":" ","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":" public Todo (String description) {","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":" super(description);","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-30"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":" public String getDataString() {","lastModifiedDate":"2023-08-30"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":" return String.join(\" | \", Todo.SYMBOL, super.isDone ? \"1\" : \"0\", super.getDescription());","lastModifiedDate":"2023-08-30"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":" return String.format(\"[%s]%s\", Todo.SYMBOL, super.toString());","lastModifiedDate":"2023-08-30"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":17}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"ElginTZM"},"content":"todo","lastModifiedDate":"2023-08-24"},{"lineNumber":3,"author":{"gitId":"ElginTZM"},"content":"todo Todo","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"ElginTZM"},"content":"deadline","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"ElginTZM"},"content":"deadline Deadline without due date","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"ElginTZM"},"content":"deadline Deadline with random argument specified /random argument","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"ElginTZM"},"content":"deadline Deadline with due date /by due date","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"ElginTZM"},"content":"event","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"ElginTZM"},"content":"event Event without start and end date","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"ElginTZM"},"content":"event Event with only start date /from start date","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"ElginTZM"},"content":"event Event with only end date /to end date","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"ElginTZM"},"content":"event Event with random argument specified /random argument","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"ElginTZM"},"content":"mark 1","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"ElginTZM"},"content":"mark 3","lastModifiedDate":"2023-08-24"},{"lineNumber":16,"author":{"gitId":"ElginTZM"},"content":"mark one","lastModifiedDate":"2023-08-24"},{"lineNumber":17,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":18,"author":{"gitId":"ElginTZM"},"content":"unmark 1","lastModifiedDate":"2023-08-24"},{"lineNumber":19,"author":{"gitId":"ElginTZM"},"content":"unmark one","lastModifiedDate":"2023-08-24"},{"lineNumber":20,"author":{"gitId":"ElginTZM"},"content":"unmark 3","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":22,"author":{"gitId":"ElginTZM"},"content":"delete 1","lastModifiedDate":"2023-08-24"},{"lineNumber":23,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":24,"author":{"gitId":"ElginTZM"},"content":"delete one","lastModifiedDate":"2023-08-24"},{"lineNumber":25,"author":{"gitId":"ElginTZM"},"content":"delete 3","lastModifiedDate":"2023-08-24"},{"lineNumber":26,"author":{"gitId":"ElginTZM"},"content":"list","lastModifiedDate":"2023-08-24"},{"lineNumber":27,"author":{"gitId":"ElginTZM"},"content":"delete -100","lastModifiedDate":"2023-08-24"},{"lineNumber":28,"author":{"gitId":"ElginTZM"},"content":"mark -100","lastModifiedDate":"2023-08-24"},{"lineNumber":29,"author":{"gitId":"ElginTZM"},"content":"unmark -100","lastModifiedDate":"2023-08-24"},{"lineNumber":30,"author":{"gitId":"ElginTZM"},"content":"bye","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"ElginTZM":30}}] diff --git a/ElginTZM_ip_master/commits.json b/ElginTZM_ip_master/commits.json index ec44ecc2..8ea54304 100644 --- a/ElginTZM_ip_master/commits.json +++ b/ElginTZM_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"ElginTZM":[{"date":"2023-08-24","commitResults":[{"hash":"43564f11710b9c3069bc4111f44df22e35d02292","isMergeCommit":false,"messageTitle":"Update chatbot name, greeting and exit message","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":6}}},{"hash":"d3810d2c4749022ecf9616405fad01c60c5fa846","isMergeCommit":false,"messageTitle":"Add echo functionality to chatbot","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":48,"deletions":6}}},{"hash":"faea68724eef056597af089c967eafc6a0298535","isMergeCommit":false,"messageTitle":"Add adding and listing task functionality","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":15,"deletions":2}}},{"hash":"3f00c47c34a1a98b14387c0e8604a718cd1f538d","isMergeCommit":false,"messageTitle":"Change String array to ArrayList\u003cString\u003e","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":13}}},{"hash":"416f1cd2049cdc03b94531759c9d9166e7d26ef3","isMergeCommit":false,"messageTitle":"Make respond functions generic","messageBody":"Respond function now takes in generic List\u003cT\u003e instead of List\u003cString\u003e and T instead of String.\n","fileTypesAndContributionMap":{"java":{"insertions":5,"deletions":5}}},{"hash":"2c22c8d56032ed27c311abc300bcc5a782faf0d3","isMergeCommit":false,"messageTitle":"Add Task class","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":26,"deletions":0}}},{"hash":"69cf7800d04bf2e2da34095fc5455846b8e0666f","isMergeCommit":false,"messageTitle":"Use Task class instead of storing as String","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":5,"deletions":5}}},{"hash":"830fe4025b5f02e6f04a76dd52ed0a0bcc90770d","isMergeCommit":false,"messageTitle":"Add mark and unmark command to chatbot","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":54,"deletions":7}}},{"hash":"5da7aa159f1c3a5b13c437ed1ac91f53c3d9487c","isMergeCommit":false,"messageTitle":"Task class: make getStatusIcon protected","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":1}}},{"hash":"9d7e84a43978de00b88314b8d978e74e6e5c6e8a","isMergeCommit":false,"messageTitle":"Add Task subclasses - Deadline, Todo, Event","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":39,"deletions":0}}},{"hash":"92e1ebbd3ce5aa3014d29e5f42e721b12577fafb","isMergeCommit":false,"messageTitle":"Add todo, deadline and event command to chatbot","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":88,"deletions":2}}},{"hash":"9f5a3945a8019bc949a37a169e559ba8255d2304","isMergeCommit":false,"messageTitle":"Fix bug allowing empty description for Todo","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":0}}},{"hash":"f97d8db204ce55d81a241fa8ba9cbf83b61aa6c5","isMergeCommit":false,"messageTitle":"Update EXPECTED.TXT and input.txt","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":23,"deletions":0}}},{"hash":"23a32a85ef790cbafdef050cbe40e4532bb0e51c","isMergeCommit":false,"messageTitle":"Add DukeException class","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":0}}},{"hash":"83875f702120b697e3da8aeafc73b4135f3db6a2","isMergeCommit":false,"messageTitle":"Update chatbot response style","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":4,"deletions":3}}},{"hash":"33533910ebbf6f990231b60580038c23e7b5551f","isMergeCommit":false,"messageTitle":"Add exception handling for invalid inputs","messageBody":"","tags":["Level-5"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":114,"deletions":60}}},{"hash":"e93b0a4fed97f39d91dce828351df39a213d2223","isMergeCommit":false,"messageTitle":"Add delete command to chatbot","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"txt":{"insertions":6,"deletions":2},"java":{"insertions":44,"deletions":0}}}]},{"date":"2023-08-28","commitResults":[{"hash":"db91c9e2e525a118500bbe71299b12766c38eb8a","isMergeCommit":false,"messageTitle":"Add loading of task file on initial start","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":26,"deletions":0}}}]}]},"authorFileTypeContributionMap":{"ElginTZM":{"java":349,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":30}},"authorContributionVariance":{"ElginTZM":32483.156},"authorDisplayNameMap":{"ElginTZM":"CS2103T-T09-4 ELGI..MING"}} +{"authorDailyContributionsMap":{"ElginTZM":[{"date":"2023-08-24","commitResults":[{"hash":"43564f11710b9c3069bc4111f44df22e35d02292","isMergeCommit":false,"messageTitle":"Update chatbot name, greeting and exit message","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":6}}},{"hash":"d3810d2c4749022ecf9616405fad01c60c5fa846","isMergeCommit":false,"messageTitle":"Add echo functionality to chatbot","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":48,"deletions":6}}},{"hash":"faea68724eef056597af089c967eafc6a0298535","isMergeCommit":false,"messageTitle":"Add adding and listing task functionality","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":15,"deletions":2}}},{"hash":"3f00c47c34a1a98b14387c0e8604a718cd1f538d","isMergeCommit":false,"messageTitle":"Change String array to ArrayList\u003cString\u003e","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":17,"deletions":13}}},{"hash":"416f1cd2049cdc03b94531759c9d9166e7d26ef3","isMergeCommit":false,"messageTitle":"Make respond functions generic","messageBody":"Respond function now takes in generic List\u003cT\u003e instead of List\u003cString\u003e and T instead of String.\n","fileTypesAndContributionMap":{"java":{"insertions":5,"deletions":5}}},{"hash":"2c22c8d56032ed27c311abc300bcc5a782faf0d3","isMergeCommit":false,"messageTitle":"Add Task class","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":26,"deletions":0}}},{"hash":"69cf7800d04bf2e2da34095fc5455846b8e0666f","isMergeCommit":false,"messageTitle":"Use Task class instead of storing as String","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":5,"deletions":5}}},{"hash":"830fe4025b5f02e6f04a76dd52ed0a0bcc90770d","isMergeCommit":false,"messageTitle":"Add mark and unmark command to chatbot","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":54,"deletions":7}}},{"hash":"5da7aa159f1c3a5b13c437ed1ac91f53c3d9487c","isMergeCommit":false,"messageTitle":"Task class: make getStatusIcon protected","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":1}}},{"hash":"9d7e84a43978de00b88314b8d978e74e6e5c6e8a","isMergeCommit":false,"messageTitle":"Add Task subclasses - Deadline, Todo, Event","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":39,"deletions":0}}},{"hash":"92e1ebbd3ce5aa3014d29e5f42e721b12577fafb","isMergeCommit":false,"messageTitle":"Add todo, deadline and event command to chatbot","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":88,"deletions":2}}},{"hash":"9f5a3945a8019bc949a37a169e559ba8255d2304","isMergeCommit":false,"messageTitle":"Fix bug allowing empty description for Todo","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":6,"deletions":0}}},{"hash":"f97d8db204ce55d81a241fa8ba9cbf83b61aa6c5","isMergeCommit":false,"messageTitle":"Update EXPECTED.TXT and input.txt","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":23,"deletions":0}}},{"hash":"23a32a85ef790cbafdef050cbe40e4532bb0e51c","isMergeCommit":false,"messageTitle":"Add DukeException class","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":0}}},{"hash":"83875f702120b697e3da8aeafc73b4135f3db6a2","isMergeCommit":false,"messageTitle":"Update chatbot response style","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":4,"deletions":3}}},{"hash":"33533910ebbf6f990231b60580038c23e7b5551f","isMergeCommit":false,"messageTitle":"Add exception handling for invalid inputs","messageBody":"","tags":["Level-5"],"fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":114,"deletions":60}}},{"hash":"e93b0a4fed97f39d91dce828351df39a213d2223","isMergeCommit":false,"messageTitle":"Add delete command to chatbot","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"txt":{"insertions":6,"deletions":2},"java":{"insertions":44,"deletions":0}}}]},{"date":"2023-08-28","commitResults":[{"hash":"db91c9e2e525a118500bbe71299b12766c38eb8a","isMergeCommit":false,"messageTitle":"Add loading of task file on initial start","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":26,"deletions":0}}}]},{"date":"2023-08-29","commitResults":[{"hash":"08f8ae079496948186e5723911f4564ad276be36","isMergeCommit":false,"messageTitle":"Fix task not being able to be marked undone","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":1,"deletions":1}}}]},{"date":"2023-08-30","commitResults":[{"hash":"9e0fc965d80364a6bc48b971dbaede702d42944f","isMergeCommit":false,"messageTitle":"Task Class: Add getDataString method","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":30,"deletions":6}}},{"hash":"e6d80aebb2ab8bd6684456651a2d8c6ca5c1510d","isMergeCommit":false,"messageTitle":"Add addTask method","messageBody":"Remove addTodo, addDeadline, addEvent and respondWithAddedTask.\nAdd TaskType enum.\n","tags":["A-Enums"],"fileTypesAndContributionMap":{"java":{"insertions":84,"deletions":63}}},{"hash":"eebb16ec7b43ed9ee7817cfdc82a5b37b76f5692","isMergeCommit":false,"messageTitle":"Update loadTasks and add storeTasks method","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":99,"deletions":13}}},{"hash":"e7a3060355c131549b89f80c3b512bd253cb9dcd","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["Level-7"],"fileTypesAndContributionMap":{}}]}]},"authorFileTypeContributionMap":{"ElginTZM":{"java":538,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":30}},"authorContributionVariance":{"ElginTZM":31817.717},"authorDisplayNameMap":{"ElginTZM":"CS2103T-T09-4 ELGI..MING"}} diff --git a/LINCHENYU2030S_ip_master/authorship.json b/LINCHENYU2030S_ip_master/authorship.json index fe51488c..01d93716 100644 --- a/LINCHENYU2030S_ip_master/authorship.json +++ b/LINCHENYU2030S_ip_master/authorship.json @@ -1 +1 @@ -[] +[{"path":"src/main/java/Alex.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LINCHENYU2030S"},"content":"import java.sql.SQLOutput;","lastModifiedDate":"2023-08-25"},{"lineNumber":2,"author":{"gitId":"LINCHENYU2030S"},"content":"import java.util.Scanner;","lastModifiedDate":"2023-08-24"},{"lineNumber":3,"author":{"gitId":"LINCHENYU2030S"},"content":"import java.util.regex.Matcher;","lastModifiedDate":"2023-08-25"},{"lineNumber":4,"author":{"gitId":"LINCHENYU2030S"},"content":"import java.util.regex.Pattern;","lastModifiedDate":"2023-08-25"},{"lineNumber":5,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":6,"author":{"gitId":"LINCHENYU2030S"},"content":"public class Alex {","lastModifiedDate":"2023-08-24"},{"lineNumber":7,"author":{"gitId":"LINCHENYU2030S"},"content":" public static void main(String[] args) {","lastModifiedDate":"2023-08-24"},{"lineNumber":8,"author":{"gitId":"LINCHENYU2030S"},"content":" String horizontalLine \u003d \"_____________________________________________________________\\n\";","lastModifiedDate":"2023-08-25"},{"lineNumber":9,"author":{"gitId":"LINCHENYU2030S"},"content":" String greeting \u003d horizontalLine","lastModifiedDate":"2023-08-25"},{"lineNumber":10,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"Hello! I\u0027m your personal task assistant, Alex\\n\"","lastModifiedDate":"2023-08-24"},{"lineNumber":11,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"What can I do for you today?\\n\\n\"","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine;","lastModifiedDate":"2023-08-25"},{"lineNumber":13,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(greeting);","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":16,"author":{"gitId":"LINCHENYU2030S"},"content":" Scanner scanner \u003d new Scanner(System.in);","lastModifiedDate":"2023-08-25"},{"lineNumber":17,"author":{"gitId":"LINCHENYU2030S"},"content":" while (true) {","lastModifiedDate":"2023-08-24"},{"lineNumber":18,"author":{"gitId":"LINCHENYU2030S"},"content":" String userInput \u003d scanner.nextLine();","lastModifiedDate":"2023-08-24"},{"lineNumber":19,"author":{"gitId":"LINCHENYU2030S"},"content":" String userInputStripped \u003d userInput.stripTrailing();","lastModifiedDate":"2023-08-26"},{"lineNumber":20,"author":{"gitId":"LINCHENYU2030S"},"content":" int inputLength \u003d userInput.length();","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"LINCHENYU2030S"},"content":" if (userInput.equals(\"bye\") || userInputStripped.equals(\"bye\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":22,"author":{"gitId":"LINCHENYU2030S"},"content":" String bye \u003d horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":23,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"Bye. Hope to see you again soon!\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":24,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine;","lastModifiedDate":"2023-08-26"},{"lineNumber":25,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(bye);","lastModifiedDate":"2023-08-24"},{"lineNumber":26,"author":{"gitId":"LINCHENYU2030S"},"content":" break;","lastModifiedDate":"2023-08-24"},{"lineNumber":27,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if(userInput.equals(\"list\") || userInputStripped.equals(\"list\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":28,"author":{"gitId":"LINCHENYU2030S"},"content":" UserInputStorage.printAllContent();","lastModifiedDate":"2023-08-25"},{"lineNumber":29,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if (inputLength \u003e\u003d 4 \u0026\u0026 userInput.substring(0, 4).equals(\"mark\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":30,"author":{"gitId":"LINCHENYU2030S"},"content":" try {","lastModifiedDate":"2023-08-26"},{"lineNumber":31,"author":{"gitId":"LINCHENYU2030S"},"content":" int index \u003d Integer.parseInt(userInput.substring(5));","lastModifiedDate":"2023-08-26"},{"lineNumber":32,"author":{"gitId":"LINCHENYU2030S"},"content":" Task targetedTask \u003d UserInputStorage.getTaskByIndex(index);","lastModifiedDate":"2023-08-24"},{"lineNumber":33,"author":{"gitId":"LINCHENYU2030S"},"content":" targetedTask.mark();","lastModifiedDate":"2023-08-24"},{"lineNumber":34,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (IndexOutOfBoundsException | NumberFormatException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":35,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"To mark certain task to be done, please use the following format:\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":36,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \" + \"mark (task number in non-negative integer)\\n\";","lastModifiedDate":"2023-08-26"},{"lineNumber":37,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":38,"author":{"gitId":"LINCHENYU2030S"},"content":" + message","lastModifiedDate":"2023-08-26"},{"lineNumber":39,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":40,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":41,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (AlexException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":42,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":43,"author":{"gitId":"LINCHENYU2030S"},"content":" + e.getMessage() + \"\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":44,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":45,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":46,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":47,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if (inputLength \u003e\u003d 6 \u0026\u0026 userInput.substring(0, 6).equals(\"unmark\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":48,"author":{"gitId":"LINCHENYU2030S"},"content":" try {","lastModifiedDate":"2023-08-26"},{"lineNumber":49,"author":{"gitId":"LINCHENYU2030S"},"content":" int index \u003d Integer.parseInt(userInput.substring(7));","lastModifiedDate":"2023-08-26"},{"lineNumber":50,"author":{"gitId":"LINCHENYU2030S"},"content":" Task targetedTask \u003d UserInputStorage.getTaskByIndex(index);","lastModifiedDate":"2023-08-24"},{"lineNumber":51,"author":{"gitId":"LINCHENYU2030S"},"content":" targetedTask.unmark();","lastModifiedDate":"2023-08-24"},{"lineNumber":52,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (IndexOutOfBoundsException | NumberFormatException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":53,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"To unmark certain task to be undone, please use the following format:\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":54,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \" + \"unmark (task number in non-negative integer)\\n\";","lastModifiedDate":"2023-08-26"},{"lineNumber":55,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":56,"author":{"gitId":"LINCHENYU2030S"},"content":" + message","lastModifiedDate":"2023-08-26"},{"lineNumber":57,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":58,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":59,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (AlexException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":60,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":61,"author":{"gitId":"LINCHENYU2030S"},"content":" + e.getMessage() + \"\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":62,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":63,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":64,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":65,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if (inputLength \u003e\u003d 6 \u0026\u0026 userInput.substring(0, 6).equals(\"delete\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":66,"author":{"gitId":"LINCHENYU2030S"},"content":" try {","lastModifiedDate":"2023-08-26"},{"lineNumber":67,"author":{"gitId":"LINCHENYU2030S"},"content":" int toDeleteIndex \u003d Integer.parseInt(userInput.substring(7, 8));","lastModifiedDate":"2023-08-25"},{"lineNumber":68,"author":{"gitId":"LINCHENYU2030S"},"content":" UserInputStorage.delete(toDeleteIndex);","lastModifiedDate":"2023-08-25"},{"lineNumber":69,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (IndexOutOfBoundsException | NumberFormatException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":70,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"To delete a task, please use the following format:\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":71,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \" + \"delete (task number in non-negative integer)\\n\";","lastModifiedDate":"2023-08-26"},{"lineNumber":72,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":73,"author":{"gitId":"LINCHENYU2030S"},"content":" + message","lastModifiedDate":"2023-08-26"},{"lineNumber":74,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":75,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":76,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (AlexException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":77,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":78,"author":{"gitId":"LINCHENYU2030S"},"content":" + e.getMessage() + \"\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":79,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":80,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":81,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":82,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if (inputLength \u003e\u003d 4 \u0026\u0026 userInput.substring(0, 4).equals(\"todo\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":83,"author":{"gitId":"LINCHENYU2030S"},"content":" try {","lastModifiedDate":"2023-08-26"},{"lineNumber":84,"author":{"gitId":"LINCHENYU2030S"},"content":" if (!userInput.substring(4, 5).equals(\" \")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":85,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"OOPS!!! Please enter a todo task in the following format:\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":86,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \" + \"todo (description)\";","lastModifiedDate":"2023-08-26"},{"lineNumber":87,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":88,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":89,"author":{"gitId":"LINCHENYU2030S"},"content":" Task todo \u003d new ToDos(userInput.substring(5));","lastModifiedDate":"2023-08-25"},{"lineNumber":90,"author":{"gitId":"LINCHENYU2030S"},"content":" UserInputStorage.store(todo);","lastModifiedDate":"2023-08-25"},{"lineNumber":91,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (IndexOutOfBoundsException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":92,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"OOPS!!! Please enter a todo task in the following format:\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":93,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \" + \"todo (description)\";","lastModifiedDate":"2023-08-26"},{"lineNumber":94,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":95,"author":{"gitId":"LINCHENYU2030S"},"content":" + message + \"\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":96,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":97,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":98,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (AlexException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":99,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":100,"author":{"gitId":"LINCHENYU2030S"},"content":" + e.getMessage() + \"\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":101,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":102,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":103,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":104,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if (inputLength \u003e\u003d 8 \u0026\u0026 userInput.substring(0, 8).equals(\"deadline\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":105,"author":{"gitId":"LINCHENYU2030S"},"content":" try {","lastModifiedDate":"2023-08-26"},{"lineNumber":106,"author":{"gitId":"LINCHENYU2030S"},"content":" String regex \u003d \"\\\\b /by \\\\b\";","lastModifiedDate":"2023-08-25"},{"lineNumber":107,"author":{"gitId":"LINCHENYU2030S"},"content":" Pattern pattern \u003d Pattern.compile(regex);","lastModifiedDate":"2023-08-25"},{"lineNumber":108,"author":{"gitId":"LINCHENYU2030S"},"content":" Matcher matcher \u003d pattern.matcher(userInput);","lastModifiedDate":"2023-08-25"},{"lineNumber":109,"author":{"gitId":"LINCHENYU2030S"},"content":" if (!matcher.find()) {","lastModifiedDate":"2023-08-26"},{"lineNumber":110,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"Please enter a deadline task in the format: deadline (description) /by (time)\";","lastModifiedDate":"2023-08-26"},{"lineNumber":111,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":112,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":113,"author":{"gitId":"LINCHENYU2030S"},"content":" int startIndex \u003d matcher.start();","lastModifiedDate":"2023-08-25"},{"lineNumber":114,"author":{"gitId":"LINCHENYU2030S"},"content":" int endIndex \u003d matcher.end();","lastModifiedDate":"2023-08-25"},{"lineNumber":115,"author":{"gitId":"LINCHENYU2030S"},"content":" String description \u003d startIndex \u003e 9 ? userInput.substring(9, startIndex) : \"\";","lastModifiedDate":"2023-08-26"},{"lineNumber":116,"author":{"gitId":"LINCHENYU2030S"},"content":" String by \u003d userInput.substring(endIndex);","lastModifiedDate":"2023-08-25"},{"lineNumber":117,"author":{"gitId":"LINCHENYU2030S"},"content":" Task deadline \u003d new Deadline(description, by);","lastModifiedDate":"2023-08-25"},{"lineNumber":118,"author":{"gitId":"LINCHENYU2030S"},"content":" UserInputStorage.store(deadline);","lastModifiedDate":"2023-08-25"},{"lineNumber":119,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (AlexException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":120,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":121,"author":{"gitId":"LINCHENYU2030S"},"content":" + e.getMessage() + \"\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":122,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":123,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":124,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":125,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if (inputLength \u003e\u003d 5 \u0026\u0026 userInput.substring(0, 5).equals(\"event\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":126,"author":{"gitId":"LINCHENYU2030S"},"content":" try {","lastModifiedDate":"2023-08-26"},{"lineNumber":127,"author":{"gitId":"LINCHENYU2030S"},"content":" String regex \u003d \"\\\\b /from \\\\b\";","lastModifiedDate":"2023-08-25"},{"lineNumber":128,"author":{"gitId":"LINCHENYU2030S"},"content":" Pattern pattern1 \u003d Pattern.compile(regex);","lastModifiedDate":"2023-08-25"},{"lineNumber":129,"author":{"gitId":"LINCHENYU2030S"},"content":" Matcher matcher1 \u003d pattern1.matcher(userInput);","lastModifiedDate":"2023-08-25"},{"lineNumber":130,"author":{"gitId":"LINCHENYU2030S"},"content":" if (!matcher1.find()) {","lastModifiedDate":"2023-08-26"},{"lineNumber":131,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"Please enter an event task in the format: \"","lastModifiedDate":"2023-08-26"},{"lineNumber":132,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"event (description) /from (from_time) /to (to_time)\";","lastModifiedDate":"2023-08-26"},{"lineNumber":133,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":134,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":135,"author":{"gitId":"LINCHENYU2030S"},"content":" int firstStart \u003d matcher1.start();","lastModifiedDate":"2023-08-25"},{"lineNumber":136,"author":{"gitId":"LINCHENYU2030S"},"content":" int firstEnd \u003d matcher1.end();","lastModifiedDate":"2023-08-25"},{"lineNumber":137,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":138,"author":{"gitId":"LINCHENYU2030S"},"content":" String regex2 \u003d \"\\\\b /to \\\\b\";","lastModifiedDate":"2023-08-25"},{"lineNumber":139,"author":{"gitId":"LINCHENYU2030S"},"content":" Pattern pattern2 \u003d Pattern.compile(regex2);","lastModifiedDate":"2023-08-25"},{"lineNumber":140,"author":{"gitId":"LINCHENYU2030S"},"content":" Matcher matcher2 \u003d pattern2.matcher(userInput);","lastModifiedDate":"2023-08-25"},{"lineNumber":141,"author":{"gitId":"LINCHENYU2030S"},"content":" if (!matcher2.find()) {","lastModifiedDate":"2023-08-26"},{"lineNumber":142,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"Please enter an event task in the format: \"","lastModifiedDate":"2023-08-26"},{"lineNumber":143,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"event (description) /from (from_time) /to (to_time)\";","lastModifiedDate":"2023-08-26"},{"lineNumber":144,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":145,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":146,"author":{"gitId":"LINCHENYU2030S"},"content":" int secondStart \u003d matcher2.start();","lastModifiedDate":"2023-08-25"},{"lineNumber":147,"author":{"gitId":"LINCHENYU2030S"},"content":" int secondEnd \u003d matcher2.end();","lastModifiedDate":"2023-08-25"},{"lineNumber":148,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":149,"author":{"gitId":"LINCHENYU2030S"},"content":" String description \u003d firstStart \u003e 6 ? userInput.substring(6, firstStart) : \"\";","lastModifiedDate":"2023-08-26"},{"lineNumber":150,"author":{"gitId":"LINCHENYU2030S"},"content":" String fromTime \u003d userInput.substring(firstEnd, secondStart);","lastModifiedDate":"2023-08-25"},{"lineNumber":151,"author":{"gitId":"LINCHENYU2030S"},"content":" String toTime \u003d userInput.substring(secondEnd);","lastModifiedDate":"2023-08-25"},{"lineNumber":152,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":153,"author":{"gitId":"LINCHENYU2030S"},"content":" Task event \u003d new Event(description, fromTime, toTime);","lastModifiedDate":"2023-08-25"},{"lineNumber":154,"author":{"gitId":"LINCHENYU2030S"},"content":" UserInputStorage.store(event);","lastModifiedDate":"2023-08-25"},{"lineNumber":155,"author":{"gitId":"LINCHENYU2030S"},"content":" } catch (AlexException e) {","lastModifiedDate":"2023-08-26"},{"lineNumber":156,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":157,"author":{"gitId":"LINCHENYU2030S"},"content":" + e.getMessage() + \"\\n\"","lastModifiedDate":"2023-08-26"},{"lineNumber":158,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":159,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":160,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":161,"author":{"gitId":"LINCHENYU2030S"},"content":" } else {","lastModifiedDate":"2023-08-26"},{"lineNumber":162,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"OOPS!!! I\u0027m sorry, but I don\u0027t know what that means :-(\\n\";","lastModifiedDate":"2023-08-26"},{"lineNumber":163,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":164,"author":{"gitId":"LINCHENYU2030S"},"content":" + message","lastModifiedDate":"2023-08-26"},{"lineNumber":165,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-26"},{"lineNumber":166,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-26"},{"lineNumber":167,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":168,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":169,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":170,"author":{"gitId":"LINCHENYU2030S"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"LINCHENYU2030S":170}},{"path":"src/main/java/AlexException.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LINCHENYU2030S"},"content":"public class AlexException extends Exception{","lastModifiedDate":"2023-08-26"},{"lineNumber":2,"author":{"gitId":"LINCHENYU2030S"},"content":" public AlexException(String message) {","lastModifiedDate":"2023-08-26"},{"lineNumber":3,"author":{"gitId":"LINCHENYU2030S"},"content":" super(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":4,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":5,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-26"},{"lineNumber":6,"author":{"gitId":"LINCHENYU2030S"},"content":"}","lastModifiedDate":"2023-08-26"}],"authorContributionMap":{"LINCHENYU2030S":6}},{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LINCHENYU2030S"},"content":"public class Deadline extends Task{","lastModifiedDate":"2023-08-25"},{"lineNumber":2,"author":{"gitId":"LINCHENYU2030S"},"content":" protected String by;","lastModifiedDate":"2023-08-25"},{"lineNumber":3,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":4,"author":{"gitId":"LINCHENYU2030S"},"content":" public Deadline(String description, String by) throws AlexException {","lastModifiedDate":"2023-08-26"},{"lineNumber":5,"author":{"gitId":"LINCHENYU2030S"},"content":" super(description);","lastModifiedDate":"2023-08-25"},{"lineNumber":6,"author":{"gitId":"LINCHENYU2030S"},"content":" this.by \u003d by;","lastModifiedDate":"2023-08-25"},{"lineNumber":7,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-25"},{"lineNumber":8,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":9,"author":{"gitId":"LINCHENYU2030S"},"content":" @Override","lastModifiedDate":"2023-08-25"},{"lineNumber":10,"author":{"gitId":"LINCHENYU2030S"},"content":" public String toString() {","lastModifiedDate":"2023-08-25"},{"lineNumber":11,"author":{"gitId":"LINCHENYU2030S"},"content":" return \"[D]\" + super.toString() + \" (by: \" + by + \")\";","lastModifiedDate":"2023-08-25"},{"lineNumber":12,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-25"},{"lineNumber":13,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":14,"author":{"gitId":"LINCHENYU2030S"},"content":"}","lastModifiedDate":"2023-08-25"}],"authorContributionMap":{"LINCHENYU2030S":14}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LINCHENYU2030S"},"content":"public class Event extends Task{","lastModifiedDate":"2023-08-25"},{"lineNumber":2,"author":{"gitId":"LINCHENYU2030S"},"content":" protected String fromTime;","lastModifiedDate":"2023-08-25"},{"lineNumber":3,"author":{"gitId":"LINCHENYU2030S"},"content":" protected String toTime;","lastModifiedDate":"2023-08-25"},{"lineNumber":4,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":5,"author":{"gitId":"LINCHENYU2030S"},"content":" public Event(String description, String fromTime, String toTime) throws AlexException {","lastModifiedDate":"2023-08-26"},{"lineNumber":6,"author":{"gitId":"LINCHENYU2030S"},"content":" super(description);","lastModifiedDate":"2023-08-25"},{"lineNumber":7,"author":{"gitId":"LINCHENYU2030S"},"content":" this.fromTime \u003d fromTime;","lastModifiedDate":"2023-08-25"},{"lineNumber":8,"author":{"gitId":"LINCHENYU2030S"},"content":" this.toTime \u003d toTime;","lastModifiedDate":"2023-08-25"},{"lineNumber":9,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-25"},{"lineNumber":10,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":11,"author":{"gitId":"LINCHENYU2030S"},"content":" @Override","lastModifiedDate":"2023-08-25"},{"lineNumber":12,"author":{"gitId":"LINCHENYU2030S"},"content":" public String toString() {","lastModifiedDate":"2023-08-25"},{"lineNumber":13,"author":{"gitId":"LINCHENYU2030S"},"content":" return \"[E]\" + super.toString() + \" (from: \" + this.fromTime + \" to: \" + toTime + \")\";","lastModifiedDate":"2023-08-25"},{"lineNumber":14,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-25"},{"lineNumber":15,"author":{"gitId":"LINCHENYU2030S"},"content":"}","lastModifiedDate":"2023-08-25"}],"authorContributionMap":{"LINCHENYU2030S":15}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LINCHENYU2030S"},"content":"public class Task {","lastModifiedDate":"2023-08-24"},{"lineNumber":2,"author":{"gitId":"LINCHENYU2030S"},"content":" protected String description;","lastModifiedDate":"2023-08-24"},{"lineNumber":3,"author":{"gitId":"LINCHENYU2030S"},"content":" protected boolean isDone \u003d false;","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":5,"author":{"gitId":"LINCHENYU2030S"},"content":" public Task(String description) throws AlexException {","lastModifiedDate":"2023-08-26"},{"lineNumber":6,"author":{"gitId":"LINCHENYU2030S"},"content":" description \u003d description.stripTrailing();","lastModifiedDate":"2023-08-26"},{"lineNumber":7,"author":{"gitId":"LINCHENYU2030S"},"content":" if (description.equals(\"\")) {","lastModifiedDate":"2023-08-26"},{"lineNumber":8,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"OOPS!!! The description of a task cannot be empty\";","lastModifiedDate":"2023-08-26"},{"lineNumber":9,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":10,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":11,"author":{"gitId":"LINCHENYU2030S"},"content":" this.description \u003d description;","lastModifiedDate":"2023-08-24"},{"lineNumber":12,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":13,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":14,"author":{"gitId":"LINCHENYU2030S"},"content":" public String getStatusSymbol() {","lastModifiedDate":"2023-08-24"},{"lineNumber":15,"author":{"gitId":"LINCHENYU2030S"},"content":" if (isDone) {","lastModifiedDate":"2023-08-24"},{"lineNumber":16,"author":{"gitId":"LINCHENYU2030S"},"content":" return \"X\";","lastModifiedDate":"2023-08-24"},{"lineNumber":17,"author":{"gitId":"LINCHENYU2030S"},"content":" } else {","lastModifiedDate":"2023-08-24"},{"lineNumber":18,"author":{"gitId":"LINCHENYU2030S"},"content":" return \" \";","lastModifiedDate":"2023-08-24"},{"lineNumber":19,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":20,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":22,"author":{"gitId":"LINCHENYU2030S"},"content":" public void mark() {","lastModifiedDate":"2023-08-24"},{"lineNumber":23,"author":{"gitId":"LINCHENYU2030S"},"content":" String tobePrinted \u003d \"\";","lastModifiedDate":"2023-08-24"},{"lineNumber":24,"author":{"gitId":"LINCHENYU2030S"},"content":" this.isDone \u003d true;","lastModifiedDate":"2023-08-24"},{"lineNumber":25,"author":{"gitId":"LINCHENYU2030S"},"content":" tobePrinted \u003d \"_____________________________________________________________\\n\"","lastModifiedDate":"2023-08-24"},{"lineNumber":26,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"Nice! I\u0027ve marked this task as done:\\n\"","lastModifiedDate":"2023-08-24"},{"lineNumber":27,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \"","lastModifiedDate":"2023-08-24"},{"lineNumber":28,"author":{"gitId":"LINCHENYU2030S"},"content":" + this.toString()","lastModifiedDate":"2023-08-24"},{"lineNumber":29,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"\\n\"","lastModifiedDate":"2023-08-24"},{"lineNumber":30,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"_____________________________________________________________\\n\";","lastModifiedDate":"2023-08-24"},{"lineNumber":31,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(tobePrinted);","lastModifiedDate":"2023-08-24"},{"lineNumber":32,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":33,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":34,"author":{"gitId":"LINCHENYU2030S"},"content":" public void unmark() {","lastModifiedDate":"2023-08-24"},{"lineNumber":35,"author":{"gitId":"LINCHENYU2030S"},"content":" String tobePrinted \u003d \"\";","lastModifiedDate":"2023-08-24"},{"lineNumber":36,"author":{"gitId":"LINCHENYU2030S"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-24"},{"lineNumber":37,"author":{"gitId":"LINCHENYU2030S"},"content":" tobePrinted \u003d \"_____________________________________________________________\\n\"","lastModifiedDate":"2023-08-24"},{"lineNumber":38,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"OK, I\u0027ve marked this task as not done yet:\\n\"","lastModifiedDate":"2023-08-24"},{"lineNumber":39,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \"","lastModifiedDate":"2023-08-24"},{"lineNumber":40,"author":{"gitId":"LINCHENYU2030S"},"content":" + this.toString()","lastModifiedDate":"2023-08-24"},{"lineNumber":41,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"\\n\"","lastModifiedDate":"2023-08-24"},{"lineNumber":42,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"_____________________________________________________________\\n\";","lastModifiedDate":"2023-08-24"},{"lineNumber":43,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":44,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(tobePrinted);","lastModifiedDate":"2023-08-24"},{"lineNumber":45,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":46,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":47,"author":{"gitId":"LINCHENYU2030S"},"content":" @Override","lastModifiedDate":"2023-08-24"},{"lineNumber":48,"author":{"gitId":"LINCHENYU2030S"},"content":" public String toString() {","lastModifiedDate":"2023-08-24"},{"lineNumber":49,"author":{"gitId":"LINCHENYU2030S"},"content":" String str \u003d \"[\" + this.getStatusSymbol() + \"] \" + this.description;","lastModifiedDate":"2023-08-24"},{"lineNumber":50,"author":{"gitId":"LINCHENYU2030S"},"content":" return str;","lastModifiedDate":"2023-08-24"},{"lineNumber":51,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":52,"author":{"gitId":"LINCHENYU2030S"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"LINCHENYU2030S":52}},{"path":"src/main/java/ToDos.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LINCHENYU2030S"},"content":"public class ToDos extends Task{","lastModifiedDate":"2023-08-25"},{"lineNumber":2,"author":{"gitId":"LINCHENYU2030S"},"content":" public ToDos(String description) throws AlexException{","lastModifiedDate":"2023-08-26"},{"lineNumber":3,"author":{"gitId":"LINCHENYU2030S"},"content":" super(description);","lastModifiedDate":"2023-08-25"},{"lineNumber":4,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-25"},{"lineNumber":5,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":6,"author":{"gitId":"LINCHENYU2030S"},"content":" @Override","lastModifiedDate":"2023-08-25"},{"lineNumber":7,"author":{"gitId":"LINCHENYU2030S"},"content":" public String toString() {","lastModifiedDate":"2023-08-25"},{"lineNumber":8,"author":{"gitId":"LINCHENYU2030S"},"content":" String str \u003d \"[T]\" + super.toString();","lastModifiedDate":"2023-08-25"},{"lineNumber":9,"author":{"gitId":"LINCHENYU2030S"},"content":" return str;","lastModifiedDate":"2023-08-25"},{"lineNumber":10,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-25"},{"lineNumber":11,"author":{"gitId":"LINCHENYU2030S"},"content":"}","lastModifiedDate":"2023-08-25"}],"authorContributionMap":{"LINCHENYU2030S":11}},{"path":"src/main/java/UserInputStorage.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"LINCHENYU2030S"},"content":"import java.util.ArrayList;","lastModifiedDate":"2023-08-25"},{"lineNumber":2,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":3,"author":{"gitId":"LINCHENYU2030S"},"content":"public class UserInputStorage {","lastModifiedDate":"2023-08-24"},{"lineNumber":4,"author":{"gitId":"LINCHENYU2030S"},"content":" private static ArrayList\u003cTask\u003e userinputs \u003d new ArrayList\u003c\u003e(100);","lastModifiedDate":"2023-08-25"},{"lineNumber":5,"author":{"gitId":"LINCHENYU2030S"},"content":" private static int numberOfElements \u003d 0;","lastModifiedDate":"2023-08-25"},{"lineNumber":6,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":7,"author":{"gitId":"LINCHENYU2030S"},"content":" private static String horizontalLine \u003d \"_____________________________________________________________\\n\";","lastModifiedDate":"2023-08-25"},{"lineNumber":8,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":9,"author":{"gitId":"LINCHENYU2030S"},"content":" public static void store(Task task) {","lastModifiedDate":"2023-08-24"},{"lineNumber":10,"author":{"gitId":"LINCHENYU2030S"},"content":" userinputs.add(task);","lastModifiedDate":"2023-08-25"},{"lineNumber":11,"author":{"gitId":"LINCHENYU2030S"},"content":" numberOfElements++;","lastModifiedDate":"2023-08-25"},{"lineNumber":12,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-25"},{"lineNumber":13,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"Got it. I\u0027ve added this task:\\n\"","lastModifiedDate":"2023-08-25"},{"lineNumber":14,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \"","lastModifiedDate":"2023-08-25"},{"lineNumber":15,"author":{"gitId":"LINCHENYU2030S"},"content":" + task.toString() + \"\\n\"","lastModifiedDate":"2023-08-25"},{"lineNumber":16,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"Now you have \" + UserInputStorage.getNumOfElement() + \" tasks in the list.\\n\"","lastModifiedDate":"2023-08-25"},{"lineNumber":17,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-25"},{"lineNumber":18,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-25"},{"lineNumber":19,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":20,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":21,"author":{"gitId":"LINCHENYU2030S"},"content":" public static Task getTaskByIndex(int index) throws AlexException {","lastModifiedDate":"2023-08-26"},{"lineNumber":22,"author":{"gitId":"LINCHENYU2030S"},"content":" if (index \u003e numberOfElements) {","lastModifiedDate":"2023-08-26"},{"lineNumber":23,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"OOPS!!! There is/are only \" + numberOfElements + \" task(s) stored\";","lastModifiedDate":"2023-08-26"},{"lineNumber":24,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":25,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if (index \u003c 0) {","lastModifiedDate":"2023-08-26"},{"lineNumber":26,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"OOPS!!! Task number cannot be negative, task number starts from 0\";","lastModifiedDate":"2023-08-26"},{"lineNumber":27,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":28,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":29,"author":{"gitId":"LINCHENYU2030S"},"content":" return userinputs.get(index - 1);","lastModifiedDate":"2023-08-25"},{"lineNumber":30,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":31,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-24"},{"lineNumber":32,"author":{"gitId":"LINCHENYU2030S"},"content":" public static void printAllContent() {","lastModifiedDate":"2023-08-25"},{"lineNumber":33,"author":{"gitId":"LINCHENYU2030S"},"content":" String tobePrinted \u003d \"\";","lastModifiedDate":"2023-08-24"},{"lineNumber":34,"author":{"gitId":"LINCHENYU2030S"},"content":" for (int i \u003d 0; i \u003c numberOfElements; i++) {","lastModifiedDate":"2023-08-25"},{"lineNumber":35,"author":{"gitId":"LINCHENYU2030S"},"content":" tobePrinted \u003d tobePrinted + (i + 1) + \". \" + userinputs.get(i).toString() + \"\\n\";","lastModifiedDate":"2023-08-25"},{"lineNumber":36,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":37,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-25"},{"lineNumber":38,"author":{"gitId":"LINCHENYU2030S"},"content":" + tobePrinted","lastModifiedDate":"2023-08-25"},{"lineNumber":39,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-25"},{"lineNumber":40,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-25"},{"lineNumber":41,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-24"},{"lineNumber":42,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":43,"author":{"gitId":"LINCHENYU2030S"},"content":" public static int getNumOfElement() {","lastModifiedDate":"2023-08-25"},{"lineNumber":44,"author":{"gitId":"LINCHENYU2030S"},"content":" return numberOfElements;","lastModifiedDate":"2023-08-25"},{"lineNumber":45,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-25"},{"lineNumber":46,"author":{"gitId":"LINCHENYU2030S"},"content":"","lastModifiedDate":"2023-08-25"},{"lineNumber":47,"author":{"gitId":"LINCHENYU2030S"},"content":" public static void delete(int index) throws AlexException{","lastModifiedDate":"2023-08-26"},{"lineNumber":48,"author":{"gitId":"LINCHENYU2030S"},"content":" if (index \u003e numberOfElements) {","lastModifiedDate":"2023-08-26"},{"lineNumber":49,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"OOPS!!! There is/are only \" + numberOfElements + \" task(s) stored\";","lastModifiedDate":"2023-08-26"},{"lineNumber":50,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":51,"author":{"gitId":"LINCHENYU2030S"},"content":" } else if (index \u003c 0) {","lastModifiedDate":"2023-08-26"},{"lineNumber":52,"author":{"gitId":"LINCHENYU2030S"},"content":" String message \u003d \"OOPS!!! Task number cannot be negative, task number starts from 0\";","lastModifiedDate":"2023-08-26"},{"lineNumber":53,"author":{"gitId":"LINCHENYU2030S"},"content":" throw new AlexException(message);","lastModifiedDate":"2023-08-26"},{"lineNumber":54,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-26"},{"lineNumber":55,"author":{"gitId":"LINCHENYU2030S"},"content":" Task tobeRemoved \u003d userinputs.remove(index - 1);","lastModifiedDate":"2023-08-25"},{"lineNumber":56,"author":{"gitId":"LINCHENYU2030S"},"content":" numberOfElements--;","lastModifiedDate":"2023-08-25"},{"lineNumber":57,"author":{"gitId":"LINCHENYU2030S"},"content":" System.out.println(horizontalLine","lastModifiedDate":"2023-08-25"},{"lineNumber":58,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"Noted. I\u0027ve removed this task:\\n\"","lastModifiedDate":"2023-08-25"},{"lineNumber":59,"author":{"gitId":"LINCHENYU2030S"},"content":" + \" \" + tobeRemoved.toString() + \"\\n\"","lastModifiedDate":"2023-08-25"},{"lineNumber":60,"author":{"gitId":"LINCHENYU2030S"},"content":" + \"Now you have 4 tasks in the list.\\n\"","lastModifiedDate":"2023-08-25"},{"lineNumber":61,"author":{"gitId":"LINCHENYU2030S"},"content":" + horizontalLine","lastModifiedDate":"2023-08-25"},{"lineNumber":62,"author":{"gitId":"LINCHENYU2030S"},"content":" );","lastModifiedDate":"2023-08-25"},{"lineNumber":63,"author":{"gitId":"LINCHENYU2030S"},"content":" }","lastModifiedDate":"2023-08-25"},{"lineNumber":64,"author":{"gitId":"LINCHENYU2030S"},"content":"}","lastModifiedDate":"2023-08-24"}],"authorContributionMap":{"LINCHENYU2030S":64}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"LINCHENYU2030S"},"content":"list","lastModifiedDate":"2023-08-25"},{"lineNumber":2,"author":{"gitId":"LINCHENYU2030S"},"content":"todo read book","lastModifiedDate":"2023-08-25"},{"lineNumber":3,"author":{"gitId":"LINCHENYU2030S"},"content":"list","lastModifiedDate":"2023-08-25"},{"lineNumber":4,"author":{"gitId":"LINCHENYU2030S"},"content":"event meeting /from Mon 2pm /to 4pm","lastModifiedDate":"2023-08-25"},{"lineNumber":5,"author":{"gitId":"LINCHENYU2030S"},"content":"list","lastModifiedDate":"2023-08-25"},{"lineNumber":6,"author":{"gitId":"LINCHENYU2030S"},"content":"deadline return book /by Friday","lastModifiedDate":"2023-08-25"},{"lineNumber":7,"author":{"gitId":"LINCHENYU2030S"},"content":"list","lastModifiedDate":"2023-08-25"},{"lineNumber":8,"author":{"gitId":"LINCHENYU2030S"},"content":"mark 1","lastModifiedDate":"2023-08-25"},{"lineNumber":9,"author":{"gitId":"LINCHENYU2030S"},"content":"mark 2","lastModifiedDate":"2023-08-25"},{"lineNumber":10,"author":{"gitId":"LINCHENYU2030S"},"content":"mark 3","lastModifiedDate":"2023-08-25"},{"lineNumber":11,"author":{"gitId":"LINCHENYU2030S"},"content":"list","lastModifiedDate":"2023-08-25"}],"authorContributionMap":{"LINCHENYU2030S":11}},{"path":"text-ui-test/runtest.sh","fileType":"sh","lines":[{"lineNumber":1,"author":{"gitId":"-"},"content":"#!/usr/bin/env bash","lastModifiedDate":"2020-05-25"},{"lineNumber":2,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":3,"author":{"gitId":"-"},"content":"# create bin directory if it doesn\u0027t exist","lastModifiedDate":"2020-05-25"},{"lineNumber":4,"author":{"gitId":"-"},"content":"if [ ! -d \"../bin\" ]","lastModifiedDate":"2020-05-25"},{"lineNumber":5,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":6,"author":{"gitId":"-"},"content":" mkdir ../bin","lastModifiedDate":"2020-05-25"},{"lineNumber":7,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":8,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":9,"author":{"gitId":"-"},"content":"# delete output from previous run","lastModifiedDate":"2020-05-25"},{"lineNumber":10,"author":{"gitId":"-"},"content":"if [ -e \"./ACTUAL.TXT\" ]","lastModifiedDate":"2020-05-25"},{"lineNumber":11,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":12,"author":{"gitId":"-"},"content":" rm ACTUAL.TXT","lastModifiedDate":"2020-05-25"},{"lineNumber":13,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":14,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":15,"author":{"gitId":"-"},"content":"# compile the code into the bin folder, terminates if error occurred","lastModifiedDate":"2020-05-25"},{"lineNumber":16,"author":{"gitId":"-"},"content":"if ! javac -cp ../src/main/java -Xlint:none -d ../bin ../src/main/java/*.java","lastModifiedDate":"2020-08-25"},{"lineNumber":17,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":18,"author":{"gitId":"-"},"content":" echo \"********** BUILD FAILURE **********\"","lastModifiedDate":"2020-05-25"},{"lineNumber":19,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25"},{"lineNumber":20,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"},{"lineNumber":21,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":22,"author":{"gitId":"-"},"content":"# run the program, feed commands from input.txt file and redirect the output to the ACTUAL.TXT","lastModifiedDate":"2020-05-25"},{"lineNumber":23,"author":{"gitId":"LINCHENYU2030S"},"content":"java -classpath ../bin Alex \u003c input.txt \u003e ACTUAL.TXT","lastModifiedDate":"2023-08-25"},{"lineNumber":24,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":25,"author":{"gitId":"-"},"content":"# convert to UNIX format","lastModifiedDate":"2020-05-25"},{"lineNumber":26,"author":{"gitId":"LINCHENYU2030S"},"content":"# cp EXPECTED.TXT EXPECTED-UNIX.TXT","lastModifiedDate":"2023-08-25"},{"lineNumber":27,"author":{"gitId":"LINCHENYU2030S"},"content":"#dos2unix ACTUAL.TXT EXPECTED-UNIX.TXT","lastModifiedDate":"2023-08-25"},{"lineNumber":28,"author":{"gitId":"-"},"content":"","lastModifiedDate":"2020-05-25"},{"lineNumber":29,"author":{"gitId":"-"},"content":"# compare the output to the expected output","lastModifiedDate":"2020-05-25"},{"lineNumber":30,"author":{"gitId":"LINCHENYU2030S"},"content":"diff ACTUAL.TXT EXPECTED.TXT","lastModifiedDate":"2023-08-25"},{"lineNumber":31,"author":{"gitId":"-"},"content":"if [ $? -eq 0 ]","lastModifiedDate":"2020-05-25"},{"lineNumber":32,"author":{"gitId":"-"},"content":"then","lastModifiedDate":"2020-05-25"},{"lineNumber":33,"author":{"gitId":"-"},"content":" echo \"Test result: PASSED\"","lastModifiedDate":"2020-05-25"},{"lineNumber":34,"author":{"gitId":"-"},"content":" exit 0","lastModifiedDate":"2020-05-25"},{"lineNumber":35,"author":{"gitId":"-"},"content":"else","lastModifiedDate":"2020-05-25"},{"lineNumber":36,"author":{"gitId":"-"},"content":" echo \"Test result: FAILED\"","lastModifiedDate":"2020-05-25"},{"lineNumber":37,"author":{"gitId":"-"},"content":" exit 1","lastModifiedDate":"2020-05-25"},{"lineNumber":38,"author":{"gitId":"-"},"content":"fi","lastModifiedDate":"2020-05-25"}],"authorContributionMap":{"LINCHENYU2030S":4,"-":34}}] diff --git a/LINCHENYU2030S_ip_master/commits.json b/LINCHENYU2030S_ip_master/commits.json index 7e487537..c2649c7c 100644 --- a/LINCHENYU2030S_ip_master/commits.json +++ b/LINCHENYU2030S_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"LINCHENYU2030S":[]},"authorFileTypeContributionMap":{"LINCHENYU2030S":{"java":0,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":0}},"authorContributionVariance":{"LINCHENYU2030S":0.0},"authorDisplayNameMap":{"LINCHENYU2030S":"CS2103T-W13-2 LIN ..ENYU"}} +{"authorDailyContributionsMap":{"LINCHENYU2030S":[{"date":"2023-08-24","commitResults":[{"hash":"c712c9a79710aaac1957fb856f46ad1739878a45","isMergeCommit":false,"messageTitle":"Rename, Greet, Exit","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":11,"deletions":10}}},{"hash":"18a18476dd23377e5d0119ddc2bd188f589a1699","isMergeCommit":false,"messageTitle":"Echo","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":5}}},{"hash":"663930a914d4a11d2f443484d87f2be1c55349af","isMergeCommit":false,"messageTitle":"Add, List","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":0}}},{"hash":"51749a77340e54180472e98c99d10028fea3fab0","isMergeCommit":false,"messageTitle":"Mark, Unmark","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":68,"deletions":8}}}]},{"date":"2023-08-25","commitResults":[{"hash":"d49842e035f658fb273319b4b701420020cecd82","isMergeCommit":false,"messageTitle":"ToDos, Events, Deadlines","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"txt":{"insertions":1,"deletions":0},"java":{"insertions":112,"deletions":17}}},{"hash":"8b3e8bfc44faf0d8f5de8d639f39ef38bb2d4c98","isMergeCommit":false,"messageTitle":"Automated Text UI Testing","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":11,"deletions":1},"sh":{"insertions":4,"deletions":4}}},{"hash":"ec091af21f59f8a08425ab2dbac2ed9b03d58a6f","isMergeCommit":false,"messageTitle":"Delete","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"java":{"insertions":39,"deletions":35}}}]},{"date":"2023-08-26","commitResults":[{"hash":"a69f55563a99ed630afe3121a7809f3a9ff58be4","isMergeCommit":false,"messageTitle":"Handle Errors","messageBody":"","tags":["Level-5"],"fileTypesAndContributionMap":{"java":{"insertions":172,"deletions":55}}}]}]},"authorFileTypeContributionMap":{"LINCHENYU2030S":{"java":332,"md":0,"fxml":0,"sh":4,"bat":0,"gradle":0,"txt":11}},"authorContributionVariance":{"LINCHENYU2030S":9378.667},"authorDisplayNameMap":{"LINCHENYU2030S":"CS2103T-W13-2 LIN ..ENYU"}} diff --git a/archive.zip b/archive.zip index 593d1520..516a1b29 100644 Binary files a/archive.zip and b/archive.zip differ diff --git a/craigtonlian_ip_master/commits.json b/craigtonlian_ip_master/commits.json index ebc1b1d2..8ac25b06 100644 --- a/craigtonlian_ip_master/commits.json +++ b/craigtonlian_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"craigtonlian":[{"date":"2023-08-19","commitResults":[{"hash":"7b6f7149ae4dcf0ddb76aa8d9faff3f1617bf6ab","isMergeCommit":false,"messageTitle":"added Level-0: Rename, Greet, Exit","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":10,"deletions":10}}},{"hash":"bc992638464ec14f4f75535ecb7be851553a40f1","isMergeCommit":false,"messageTitle":"added Level-1: Echo","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":6}}},{"hash":"b051a53760626d11446f9c19155fcdb7bd410de8","isMergeCommit":false,"messageTitle":"added Level-2: Add, List","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":8}}},{"hash":"3e71c3289a36e834c2a1a9710df8fa799ea0f03f","isMergeCommit":false,"messageTitle":"added Level-3: Mark as Done","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":65,"deletions":20}}},{"hash":"041dfa2e9c40d56942105b05e2ffb774524346c3","isMergeCommit":false,"messageTitle":"added Level-4: ToDos, Events, Deadlines","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":89,"deletions":7}}},{"hash":"262a7fa314393aa0dde6034fa36c2ee45b066c63","isMergeCommit":false,"messageTitle":"added A-TextUiTesting: Automated Text UI Testing","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":9,"deletions":0},"bat":{"insertions":1,"deletions":1},"sh":{"insertions":1,"deletions":1}}},{"hash":"a2684ebd21c12f7b744431b2f95afda8f3a66741","isMergeCommit":false,"messageTitle":"added Level-5: Handle Errors","messageBody":"","tags":["Level-5"],"fileTypesAndContributionMap":{"java":{"insertions":221,"deletions":75}}},{"hash":"16be6e8b6608223331d6c412bb599da0de9098ab","isMergeCommit":false,"messageTitle":"added Level-6: Delete","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"java":{"insertions":31,"deletions":13}}},{"hash":"52e41560d58fe20f648c773adf4813f4d237d608","isMergeCommit":false,"messageTitle":"added A-Enums: Use Enums","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":38,"deletions":10}}},{"hash":"e4818c12a68d5acc9579c82508430dc4ca14da74","isMergeCommit":false,"messageTitle":"added A-Enums: Use Enums","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":37,"deletions":10}}},{"hash":"3bd536a8efe6a46147577d7f5a5769bf8c2855ef","isMergeCommit":true,"messageTitle":"Merge branch \u0027master\u0027 of https://github.com/craigtonlian/ip","messageBody":"# Conflicts:\n#\tsrc/main/java/Command.java\n","fileTypesAndContributionMap":{}}]},{"date":"2023-08-24","commitResults":[{"hash":"9f989df59be0e06d9c10c2f06c75e20f87e3270e","isMergeCommit":false,"messageTitle":"added: javadocs comments for classes","messageBody":"","tags":["A-Enums"],"fileTypesAndContributionMap":{"java":{"insertions":100,"deletions":0}}}]},{"date":"2023-08-29","commitResults":[{"hash":"4dc9580d6c66bcc64555dbccf90c4d11be4a6695","isMergeCommit":false,"messageTitle":"Add Level-7: Save","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":147,"deletions":40}}},{"hash":"5b342c1a2528edfdd44e609219877703339af65e","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["Level-7"],"fileTypesAndContributionMap":{}},{"hash":"c9a69ca3721ec4c7f0139d9b39dd0299e97c00cb","isMergeCommit":false,"messageTitle":"Add Level-8: Dates and Times","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":6,"deletions":5},"java":{"insertions":82,"deletions":26}}},{"hash":"b68fb86b1b6bef8e93f529b79dd3e6079e872101","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-8\u0027","messageBody":"","tags":["Level-8"],"fileTypesAndContributionMap":{}},{"hash":"6e9067908bbf3aec657a11654f8d57aaa2240837","isMergeCommit":false,"messageTitle":"Add A-MoreOOP: Use More OOP","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":1,"deletions":1},"java":{"insertions":484,"deletions":391}}},{"hash":"7e9900583aa2f49b7e1706dde0c9b7b92d722e1c","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-MoreOOP\u0027","messageBody":"","tags":["A-MoreOOP"],"fileTypesAndContributionMap":{}},{"hash":"fb34479e66f206462d5c45281cda6de57108f84c","isMergeCommit":false,"messageTitle":"Add A-Packages: Organize into Packages","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":149,"deletions":37},"sh":{"insertions":1,"deletions":1}}},{"hash":"eaf3c9c78e7d6c96d62885f1337fcf3fd10d0a2d","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-packages\u0027","messageBody":"","tags":["A-Packages"],"fileTypesAndContributionMap":{}}]}]},"authorFileTypeContributionMap":{"craigtonlian":{"java":826,"md":0,"fxml":0,"sh":2,"bat":1,"gradle":0,"txt":13}},"authorContributionVariance":{"craigtonlian":166777.36},"authorDisplayNameMap":{"craigtonlian":"CS2103T-W08-1 CRAI..JOHN"}} +{"authorDailyContributionsMap":{"craigtonlian":[{"date":"2023-08-19","commitResults":[{"hash":"7b6f7149ae4dcf0ddb76aa8d9faff3f1617bf6ab","isMergeCommit":false,"messageTitle":"added Level-0: Rename, Greet, Exit","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":10,"deletions":10}}},{"hash":"bc992638464ec14f4f75535ecb7be851553a40f1","isMergeCommit":false,"messageTitle":"added Level-1: Echo","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":19,"deletions":6}}},{"hash":"b051a53760626d11446f9c19155fcdb7bd410de8","isMergeCommit":false,"messageTitle":"added Level-2: Add, List","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":25,"deletions":8}}},{"hash":"3e71c3289a36e834c2a1a9710df8fa799ea0f03f","isMergeCommit":false,"messageTitle":"added Level-3: Mark as Done","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":65,"deletions":20}}},{"hash":"041dfa2e9c40d56942105b05e2ffb774524346c3","isMergeCommit":false,"messageTitle":"added Level-4: ToDos, Events, Deadlines","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":89,"deletions":7}}},{"hash":"262a7fa314393aa0dde6034fa36c2ee45b066c63","isMergeCommit":false,"messageTitle":"added A-TextUiTesting: Automated Text UI Testing","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":9,"deletions":0},"bat":{"insertions":1,"deletions":1},"sh":{"insertions":1,"deletions":1}}},{"hash":"a2684ebd21c12f7b744431b2f95afda8f3a66741","isMergeCommit":false,"messageTitle":"added Level-5: Handle Errors","messageBody":"","tags":["Level-5"],"fileTypesAndContributionMap":{"java":{"insertions":221,"deletions":75}}},{"hash":"16be6e8b6608223331d6c412bb599da0de9098ab","isMergeCommit":false,"messageTitle":"added Level-6: Delete","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"java":{"insertions":31,"deletions":13}}},{"hash":"52e41560d58fe20f648c773adf4813f4d237d608","isMergeCommit":false,"messageTitle":"added A-Enums: Use Enums","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":38,"deletions":10}}},{"hash":"e4818c12a68d5acc9579c82508430dc4ca14da74","isMergeCommit":false,"messageTitle":"added A-Enums: Use Enums","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":37,"deletions":10}}},{"hash":"3bd536a8efe6a46147577d7f5a5769bf8c2855ef","isMergeCommit":true,"messageTitle":"Merge branch \u0027master\u0027 of https://github.com/craigtonlian/ip","messageBody":"# Conflicts:\n#\tsrc/main/java/Command.java\n","fileTypesAndContributionMap":{}}]},{"date":"2023-08-24","commitResults":[{"hash":"9f989df59be0e06d9c10c2f06c75e20f87e3270e","isMergeCommit":false,"messageTitle":"added: javadocs comments for classes","messageBody":"","tags":["A-Enums"],"fileTypesAndContributionMap":{"java":{"insertions":100,"deletions":0}}}]},{"date":"2023-08-29","commitResults":[{"hash":"4dc9580d6c66bcc64555dbccf90c4d11be4a6695","isMergeCommit":false,"messageTitle":"Add Level-7: Save","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":3,"deletions":0},"java":{"insertions":147,"deletions":40}}},{"hash":"5b342c1a2528edfdd44e609219877703339af65e","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-7\u0027","messageBody":"","tags":["Level-7"],"fileTypesAndContributionMap":{}},{"hash":"c9a69ca3721ec4c7f0139d9b39dd0299e97c00cb","isMergeCommit":false,"messageTitle":"Add Level-8: Dates and Times","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":6,"deletions":5},"java":{"insertions":82,"deletions":26}}},{"hash":"b68fb86b1b6bef8e93f529b79dd3e6079e872101","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-8\u0027","messageBody":"","tags":["Level-8"],"fileTypesAndContributionMap":{}},{"hash":"6e9067908bbf3aec657a11654f8d57aaa2240837","isMergeCommit":false,"messageTitle":"Add A-MoreOOP: Use More OOP","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":1,"deletions":1},"java":{"insertions":484,"deletions":391}}},{"hash":"7e9900583aa2f49b7e1706dde0c9b7b92d722e1c","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-MoreOOP\u0027","messageBody":"","tags":["A-MoreOOP"],"fileTypesAndContributionMap":{}},{"hash":"fb34479e66f206462d5c45281cda6de57108f84c","isMergeCommit":false,"messageTitle":"Add A-Packages: Organize into Packages","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":149,"deletions":37},"sh":{"insertions":1,"deletions":1}}},{"hash":"eaf3c9c78e7d6c96d62885f1337fcf3fd10d0a2d","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-A-packages\u0027","messageBody":"","tags":["A-Packages"],"fileTypesAndContributionMap":{}}]},{"date":"2023-08-30","commitResults":[{"hash":"6d2c8b15d5fbd882d25000fb43a1e943984c38ac","isMergeCommit":true,"messageTitle":"Merge branch \u0027add-gradle-support\u0027","messageBody":"","tags":["A-Gradle"],"fileTypesAndContributionMap":{}}]}]},"authorFileTypeContributionMap":{"craigtonlian":{"java":826,"md":0,"fxml":0,"sh":2,"bat":1,"gradle":0,"txt":13}},"authorContributionVariance":{"craigtonlian":156293.84},"authorDisplayNameMap":{"craigtonlian":"CS2103T-W08-1 CRAI..JOHN"}} diff --git a/jinyuan0425_ip_master/authorship.json b/jinyuan0425_ip_master/authorship.json index 5d8a7baf..53561604 100644 --- a/jinyuan0425_ip_master/authorship.json +++ b/jinyuan0425_ip_master/authorship.json @@ -1 +1 @@ -[{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"public class Deadline extends Task {","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":" protected String by;","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":" public Deadline(String description, String by) {","lastModifiedDate":"2023-08-22"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":" super(description);","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" this.by \u003d by;","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-22"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" public String toString() {","lastModifiedDate":"2023-08-22"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":" return \"[D]\" + super.toString() + \" (by: \" + by + \")\";","lastModifiedDate":"2023-08-22"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-29"},{"lineNumber":16,"author":{"gitId":"jinyuan0425"},"content":" public String write() {","lastModifiedDate":"2023-08-29"},{"lineNumber":17,"author":{"gitId":"jinyuan0425"},"content":" return \"D | \" + super.write() + \" | \" + by;","lastModifiedDate":"2023-08-29"},{"lineNumber":18,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":19,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":19}},{"path":"src/main/java/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"import java.io.*;","lastModifiedDate":"2023-08-29"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":"import java.util.ArrayList;","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":"import java.util.Scanner; // Import the Scanner class","lastModifiedDate":"2023-08-21"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":5,"author":{"gitId":"-"},"content":"public class Duke {","lastModifiedDate":"2019-07-29"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":" static ArrayList\u003cTask\u003e list \u003d new ArrayList\u003cTask\u003e(); // List to be returned when input is \"list\"","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" static int counter \u003d 0; // Items in list","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" File saveFile \u003d new File(\"./data/duke.txt\"); // Loads the save file","lastModifiedDate":"2023-08-29"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":" public static enum Type {","lastModifiedDate":"2023-08-22"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" LIST,","lastModifiedDate":"2023-08-22"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":" MARK,","lastModifiedDate":"2023-08-22"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":" UNMARK,","lastModifiedDate":"2023-08-22"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" TODO,","lastModifiedDate":"2023-08-22"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":" DEADLINE,","lastModifiedDate":"2023-08-22"},{"lineNumber":16,"author":{"gitId":"jinyuan0425"},"content":" EVENT,","lastModifiedDate":"2023-08-22"},{"lineNumber":17,"author":{"gitId":"jinyuan0425"},"content":" DELETE,","lastModifiedDate":"2023-08-22"},{"lineNumber":18,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":19,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":20,"author":{"gitId":"jinyuan0425"},"content":" public static String greet() { // Greets user on initialisation","lastModifiedDate":"2023-08-22"},{"lineNumber":21,"author":{"gitId":"jinyuan0425"},"content":" return \"Good day to you, I\u0027m ButlerBot.\\n\" +","lastModifiedDate":"2023-08-22"},{"lineNumber":22,"author":{"gitId":"jinyuan0425"},"content":" \"How may I be of service to you?\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":23,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":24,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":25,"author":{"gitId":"jinyuan0425"},"content":" public static String thank() { // Exits the Bot","lastModifiedDate":"2023-08-22"},{"lineNumber":26,"author":{"gitId":"jinyuan0425"},"content":" return \"Goodbye and have a nice day.\";","lastModifiedDate":"2023-08-22"},{"lineNumber":27,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":28,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":29,"author":{"gitId":"jinyuan0425"},"content":" public static String command(String input) throws DukeException, IOException { // Checks the input","lastModifiedDate":"2023-08-29"},{"lineNumber":30,"author":{"gitId":"jinyuan0425"},"content":" if (input.startsWith(\"list\")) { // list command","lastModifiedDate":"2023-08-22"},{"lineNumber":31,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.LIST, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":32,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"mark \")) { // mark command","lastModifiedDate":"2023-08-22"},{"lineNumber":33,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.MARK, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":34,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"unmark \")) { // unmark command","lastModifiedDate":"2023-08-22"},{"lineNumber":35,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.UNMARK, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":36,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"todo \")) { // todo command","lastModifiedDate":"2023-08-22"},{"lineNumber":37,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.TODO, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":38,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"deadline \")) { // deadline command","lastModifiedDate":"2023-08-22"},{"lineNumber":39,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.DEADLINE, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":40,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"event \")) { // event command","lastModifiedDate":"2023-08-22"},{"lineNumber":41,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.EVENT, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":42,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"delete \")) { // delete command","lastModifiedDate":"2023-08-22"},{"lineNumber":43,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.DELETE, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":44,"author":{"gitId":"jinyuan0425"},"content":" } else {","lastModifiedDate":"2023-08-22"},{"lineNumber":45,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid I do not quite understand. Could you kindly repeat it?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":46,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":47,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":48,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":49,"author":{"gitId":"jinyuan0425"},"content":" public static String enumCommand(Type command, String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":50,"author":{"gitId":"jinyuan0425"},"content":" Type type \u003d command;","lastModifiedDate":"2023-08-22"},{"lineNumber":51,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":52,"author":{"gitId":"jinyuan0425"},"content":" switch (type) {","lastModifiedDate":"2023-08-22"},{"lineNumber":53,"author":{"gitId":"jinyuan0425"},"content":" case LIST:","lastModifiedDate":"2023-08-22"},{"lineNumber":54,"author":{"gitId":"jinyuan0425"},"content":" return list();","lastModifiedDate":"2023-08-22"},{"lineNumber":55,"author":{"gitId":"jinyuan0425"},"content":" case MARK:","lastModifiedDate":"2023-08-22"},{"lineNumber":56,"author":{"gitId":"jinyuan0425"},"content":" return mark(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":57,"author":{"gitId":"jinyuan0425"},"content":" case UNMARK:","lastModifiedDate":"2023-08-22"},{"lineNumber":58,"author":{"gitId":"jinyuan0425"},"content":" return unmark(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":59,"author":{"gitId":"jinyuan0425"},"content":" case TODO:","lastModifiedDate":"2023-08-22"},{"lineNumber":60,"author":{"gitId":"jinyuan0425"},"content":" return todo(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":61,"author":{"gitId":"jinyuan0425"},"content":" case DEADLINE:","lastModifiedDate":"2023-08-22"},{"lineNumber":62,"author":{"gitId":"jinyuan0425"},"content":" return deadline(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":63,"author":{"gitId":"jinyuan0425"},"content":" case EVENT:","lastModifiedDate":"2023-08-22"},{"lineNumber":64,"author":{"gitId":"jinyuan0425"},"content":" return event(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":65,"author":{"gitId":"jinyuan0425"},"content":" case DELETE:","lastModifiedDate":"2023-08-22"},{"lineNumber":66,"author":{"gitId":"jinyuan0425"},"content":" return delete(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":67,"author":{"gitId":"jinyuan0425"},"content":" default:","lastModifiedDate":"2023-08-22"},{"lineNumber":68,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid I do not quite understand. Could you kindly repeat it?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":69,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":70,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":71,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":72,"author":{"gitId":"jinyuan0425"},"content":" public static String mark(String input) throws DukeException {","lastModifiedDate":"2023-08-22"},{"lineNumber":73,"author":{"gitId":"jinyuan0425"},"content":" int index \u003d Integer.valueOf(input.substring(5)) - 1;","lastModifiedDate":"2023-08-22"},{"lineNumber":74,"author":{"gitId":"jinyuan0425"},"content":" if (index \u003e\u003d 0 \u0026\u0026 index \u003c counter) {","lastModifiedDate":"2023-08-22"},{"lineNumber":75,"author":{"gitId":"jinyuan0425"},"content":" list.get(index).setDone(); // Item mark complete","lastModifiedDate":"2023-08-22"},{"lineNumber":76,"author":{"gitId":"jinyuan0425"},"content":" return \"Congratulations on finishing the task. I will now mark it as complete:\\n\" +","lastModifiedDate":"2023-08-22"},{"lineNumber":77,"author":{"gitId":"jinyuan0425"},"content":" list.get(index).toString()+ \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":78,"author":{"gitId":"jinyuan0425"},"content":" } else { // Index error","lastModifiedDate":"2023-08-22"},{"lineNumber":79,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid the task does not exist. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":80,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you might want to see your list again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":81,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":82,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":83,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":84,"author":{"gitId":"jinyuan0425"},"content":" public static String unmark(String input) throws DukeException {","lastModifiedDate":"2023-08-22"},{"lineNumber":85,"author":{"gitId":"jinyuan0425"},"content":" int index \u003d Integer.valueOf(input.substring(7)) - 1;","lastModifiedDate":"2023-08-22"},{"lineNumber":86,"author":{"gitId":"jinyuan0425"},"content":" if (index \u003e\u003d 0 \u0026\u0026 index \u003c counter) {","lastModifiedDate":"2023-08-22"},{"lineNumber":87,"author":{"gitId":"jinyuan0425"},"content":" list.get(index).setNotDone(); // Item mark complete","lastModifiedDate":"2023-08-22"},{"lineNumber":88,"author":{"gitId":"jinyuan0425"},"content":" return \"No worries. I will now mark it as incomplete:\\n\" +","lastModifiedDate":"2023-08-22"},{"lineNumber":89,"author":{"gitId":"jinyuan0425"},"content":" list.get(index).toString() + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":90,"author":{"gitId":"jinyuan0425"},"content":" } else { // Index error","lastModifiedDate":"2023-08-22"},{"lineNumber":91,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid the task does not exist. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":92,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you might want to see your list again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":93,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":94,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":95,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":96,"author":{"gitId":"jinyuan0425"},"content":" public static String list() throws DukeException {","lastModifiedDate":"2023-08-22"},{"lineNumber":97,"author":{"gitId":"jinyuan0425"},"content":" String result \u003d \"\";","lastModifiedDate":"2023-08-22"},{"lineNumber":98,"author":{"gitId":"jinyuan0425"},"content":" for (int i \u003d 0; i \u003c list.size(); i++) { // Generates the String representation of the list","lastModifiedDate":"2023-08-22"},{"lineNumber":99,"author":{"gitId":"jinyuan0425"},"content":" result +\u003d i + 1 + \". \" + list.get(i) + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":100,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":101,"author":{"gitId":"jinyuan0425"},"content":" if (result !\u003d \"\") {","lastModifiedDate":"2023-08-22"},{"lineNumber":102,"author":{"gitId":"jinyuan0425"},"content":" return result;","lastModifiedDate":"2023-08-22"},{"lineNumber":103,"author":{"gitId":"jinyuan0425"},"content":" } else { // Empty list","lastModifiedDate":"2023-08-22"},{"lineNumber":104,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"There is nothing on your list currently. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":105,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you might want to add a new task?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":106,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":107,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":108,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":109,"author":{"gitId":"jinyuan0425"},"content":" public static void addTask(Task task) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":110,"author":{"gitId":"jinyuan0425"},"content":" list.add(task); // Adds task to the list","lastModifiedDate":"2023-08-22"},{"lineNumber":111,"author":{"gitId":"jinyuan0425"},"content":" counter +\u003d 1;","lastModifiedDate":"2023-08-29"},{"lineNumber":112,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":113,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":114,"author":{"gitId":"jinyuan0425"},"content":" public static String todo(String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":115,"author":{"gitId":"jinyuan0425"},"content":" String task \u003d input.substring(5);","lastModifiedDate":"2023-08-22"},{"lineNumber":116,"author":{"gitId":"jinyuan0425"},"content":" if (task !\u003d \"\") {","lastModifiedDate":"2023-08-22"},{"lineNumber":117,"author":{"gitId":"jinyuan0425"},"content":" Task item \u003d new Todo(task);","lastModifiedDate":"2023-08-22"},{"lineNumber":118,"author":{"gitId":"jinyuan0425"},"content":" addTask(item);","lastModifiedDate":"2023-08-22"},{"lineNumber":119,"author":{"gitId":"jinyuan0425"},"content":" String response \u003d \"Understood, I will add the following todo to your list:\\n\" + item.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":120,"author":{"gitId":"jinyuan0425"},"content":" String listLength \u003d \"Please note that there are \" + counter + \" tasks in the list.\";","lastModifiedDate":"2023-08-22"},{"lineNumber":121,"author":{"gitId":"jinyuan0425"},"content":" return response + \"\\n\" + listLength + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":122,"author":{"gitId":"jinyuan0425"},"content":" } else { // No task","lastModifiedDate":"2023-08-22"},{"lineNumber":123,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I am missing some information. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":124,"author":{"gitId":"jinyuan0425"},"content":" \"I must have not heard you correctly. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":125,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you can say it again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":126,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":127,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":128,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":129,"author":{"gitId":"jinyuan0425"},"content":" public static String deadline(String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":130,"author":{"gitId":"jinyuan0425"},"content":" String desc \u003d input.substring(9);","lastModifiedDate":"2023-08-22"},{"lineNumber":131,"author":{"gitId":"jinyuan0425"},"content":" String task \u003d desc.split(\" /by \")[0];","lastModifiedDate":"2023-08-22"},{"lineNumber":132,"author":{"gitId":"jinyuan0425"},"content":" String by \u003d desc.split(\" /by \")[1];","lastModifiedDate":"2023-08-22"},{"lineNumber":133,"author":{"gitId":"jinyuan0425"},"content":" if (task !\u003d \"\" \u0026\u0026 by !\u003d \"\") {","lastModifiedDate":"2023-08-22"},{"lineNumber":134,"author":{"gitId":"jinyuan0425"},"content":" Task item \u003d new Deadline(task, by);","lastModifiedDate":"2023-08-22"},{"lineNumber":135,"author":{"gitId":"jinyuan0425"},"content":" addTask(item);","lastModifiedDate":"2023-08-22"},{"lineNumber":136,"author":{"gitId":"jinyuan0425"},"content":" String response \u003d \"Understood, I will add the following deadline to your list:\\n\" + item.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":137,"author":{"gitId":"jinyuan0425"},"content":" String listLength \u003d \"Please note that there are \" + counter + \" tasks in the list.\";","lastModifiedDate":"2023-08-21"},{"lineNumber":138,"author":{"gitId":"jinyuan0425"},"content":" return response + \"\\n\" + listLength + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":139,"author":{"gitId":"jinyuan0425"},"content":" } else { // No task or by","lastModifiedDate":"2023-08-22"},{"lineNumber":140,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I am missing some information. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":141,"author":{"gitId":"jinyuan0425"},"content":" \"I must have not heard you correctly. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":142,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you can say it again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":143,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":144,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":145,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":146,"author":{"gitId":"jinyuan0425"},"content":" public static String event(String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":147,"author":{"gitId":"jinyuan0425"},"content":" String desc \u003d input.substring(6);","lastModifiedDate":"2023-08-22"},{"lineNumber":148,"author":{"gitId":"jinyuan0425"},"content":" String[] eventTime \u003d desc.split(\" /from \");","lastModifiedDate":"2023-08-22"},{"lineNumber":149,"author":{"gitId":"jinyuan0425"},"content":" String task \u003d eventTime[0];","lastModifiedDate":"2023-08-22"},{"lineNumber":150,"author":{"gitId":"jinyuan0425"},"content":" String[] time \u003d eventTime[1].split(\" /to \");","lastModifiedDate":"2023-08-22"},{"lineNumber":151,"author":{"gitId":"jinyuan0425"},"content":" String from \u003d time[0];","lastModifiedDate":"2023-08-22"},{"lineNumber":152,"author":{"gitId":"jinyuan0425"},"content":" String to \u003d time[1];","lastModifiedDate":"2023-08-22"},{"lineNumber":153,"author":{"gitId":"jinyuan0425"},"content":" if (task !\u003d \"\" \u0026\u0026 from !\u003d \"\" \u0026\u0026 to !\u003d \"\") {","lastModifiedDate":"2023-08-22"},{"lineNumber":154,"author":{"gitId":"jinyuan0425"},"content":" Task item \u003d new Event(task, from, to);","lastModifiedDate":"2023-08-22"},{"lineNumber":155,"author":{"gitId":"jinyuan0425"},"content":" addTask(item);","lastModifiedDate":"2023-08-22"},{"lineNumber":156,"author":{"gitId":"jinyuan0425"},"content":" String response \u003d \"Understood, I will add the following event to your list:\\n\" + item.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":157,"author":{"gitId":"jinyuan0425"},"content":" String listLength \u003d \"Please note that there are \" + counter + \" tasks in the list.\";","lastModifiedDate":"2023-08-21"},{"lineNumber":158,"author":{"gitId":"jinyuan0425"},"content":" return response + \"\\n\" + listLength + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":159,"author":{"gitId":"jinyuan0425"},"content":" } else { // No task, from or to","lastModifiedDate":"2023-08-22"},{"lineNumber":160,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I am missing some information. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":161,"author":{"gitId":"jinyuan0425"},"content":" \"I must have not heard you correctly. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":162,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you can say it again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":163,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":164,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":165,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":166,"author":{"gitId":"jinyuan0425"},"content":" public static String delete(String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":167,"author":{"gitId":"jinyuan0425"},"content":" int index \u003d Integer.valueOf(input.substring(7)) - 1;","lastModifiedDate":"2023-08-22"},{"lineNumber":168,"author":{"gitId":"jinyuan0425"},"content":" if (index \u003e\u003d 0 \u0026\u0026 index \u003c counter) {","lastModifiedDate":"2023-08-22"},{"lineNumber":169,"author":{"gitId":"jinyuan0425"},"content":" Task task \u003d list.get(index);","lastModifiedDate":"2023-08-22"},{"lineNumber":170,"author":{"gitId":"jinyuan0425"},"content":" list.remove(index);","lastModifiedDate":"2023-08-22"},{"lineNumber":171,"author":{"gitId":"jinyuan0425"},"content":" counter -\u003d 1;","lastModifiedDate":"2023-08-22"},{"lineNumber":172,"author":{"gitId":"jinyuan0425"},"content":" save();","lastModifiedDate":"2023-08-29"},{"lineNumber":173,"author":{"gitId":"jinyuan0425"},"content":" String response \u003d \"Understood, I will remove the following task from your list:\\n\" + task.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":174,"author":{"gitId":"jinyuan0425"},"content":" String listLength \u003d \"Please note that there are \" + counter + \" tasks in the list.\";","lastModifiedDate":"2023-08-22"},{"lineNumber":175,"author":{"gitId":"jinyuan0425"},"content":" return response + \"\\n\" + listLength + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":176,"author":{"gitId":"jinyuan0425"},"content":" } else { // Index error","lastModifiedDate":"2023-08-22"},{"lineNumber":177,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid the task does not exist. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":178,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you might want to see your list again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":179,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":180,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":181,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":182,"author":{"gitId":"jinyuan0425"},"content":" public static void load() throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":183,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-29"},{"lineNumber":184,"author":{"gitId":"jinyuan0425"},"content":" File save \u003d new File(\"./data/duke.txt\");","lastModifiedDate":"2023-08-29"},{"lineNumber":185,"author":{"gitId":"jinyuan0425"},"content":" boolean saveExist \u003d save.exists();","lastModifiedDate":"2023-08-29"},{"lineNumber":186,"author":{"gitId":"jinyuan0425"},"content":" if (!saveExist) {","lastModifiedDate":"2023-08-29"},{"lineNumber":187,"author":{"gitId":"jinyuan0425"},"content":" File path \u003d new File(\"./data\");","lastModifiedDate":"2023-08-29"},{"lineNumber":188,"author":{"gitId":"jinyuan0425"},"content":" boolean pathExist \u003d path.exists();","lastModifiedDate":"2023-08-29"},{"lineNumber":189,"author":{"gitId":"jinyuan0425"},"content":" if (!pathExist) {","lastModifiedDate":"2023-08-29"},{"lineNumber":190,"author":{"gitId":"jinyuan0425"},"content":" path.mkdir();","lastModifiedDate":"2023-08-29"},{"lineNumber":191,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":192,"author":{"gitId":"jinyuan0425"},"content":" save.createNewFile();","lastModifiedDate":"2023-08-29"},{"lineNumber":193,"author":{"gitId":"jinyuan0425"},"content":" } else {","lastModifiedDate":"2023-08-29"},{"lineNumber":194,"author":{"gitId":"jinyuan0425"},"content":" Scanner input \u003d new Scanner(save);","lastModifiedDate":"2023-08-29"},{"lineNumber":195,"author":{"gitId":"jinyuan0425"},"content":" while (input.hasNextLine()) {","lastModifiedDate":"2023-08-29"},{"lineNumber":196,"author":{"gitId":"jinyuan0425"},"content":" String details \u003d input.nextLine();","lastModifiedDate":"2023-08-29"},{"lineNumber":197,"author":{"gitId":"jinyuan0425"},"content":" String[] data \u003d details.split(\" \\\\| \");","lastModifiedDate":"2023-08-29"},{"lineNumber":198,"author":{"gitId":"jinyuan0425"},"content":" String type \u003d data[0];","lastModifiedDate":"2023-08-29"},{"lineNumber":199,"author":{"gitId":"jinyuan0425"},"content":" String isCompleted \u003d data[1];","lastModifiedDate":"2023-08-29"},{"lineNumber":200,"author":{"gitId":"jinyuan0425"},"content":" String task \u003d data[2];","lastModifiedDate":"2023-08-29"},{"lineNumber":201,"author":{"gitId":"jinyuan0425"},"content":" if (type.equals(\"T\")) {","lastModifiedDate":"2023-08-29"},{"lineNumber":202,"author":{"gitId":"jinyuan0425"},"content":" addTask(new Todo(task));","lastModifiedDate":"2023-08-29"},{"lineNumber":203,"author":{"gitId":"jinyuan0425"},"content":" if (isCompleted \u003d\u003d \"1\") {","lastModifiedDate":"2023-08-29"},{"lineNumber":204,"author":{"gitId":"jinyuan0425"},"content":" list.get(counter - 1).setDone();","lastModifiedDate":"2023-08-29"},{"lineNumber":205,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":206,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":207,"author":{"gitId":"jinyuan0425"},"content":" if (type.equals(\"D\")) {","lastModifiedDate":"2023-08-29"},{"lineNumber":208,"author":{"gitId":"jinyuan0425"},"content":" addTask(new Deadline(task, data[3]));","lastModifiedDate":"2023-08-29"},{"lineNumber":209,"author":{"gitId":"jinyuan0425"},"content":" if (isCompleted \u003d\u003d \"1\") {","lastModifiedDate":"2023-08-29"},{"lineNumber":210,"author":{"gitId":"jinyuan0425"},"content":" list.get(counter - 1).setDone();","lastModifiedDate":"2023-08-29"},{"lineNumber":211,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":212,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":213,"author":{"gitId":"jinyuan0425"},"content":" if (type.equals(\"E\")) {","lastModifiedDate":"2023-08-29"},{"lineNumber":214,"author":{"gitId":"jinyuan0425"},"content":" addTask(new Event(task, data[3], data[4]));","lastModifiedDate":"2023-08-29"},{"lineNumber":215,"author":{"gitId":"jinyuan0425"},"content":" if (isCompleted \u003d\u003d \"1\") {","lastModifiedDate":"2023-08-29"},{"lineNumber":216,"author":{"gitId":"jinyuan0425"},"content":" list.get(counter - 1).setDone();","lastModifiedDate":"2023-08-29"},{"lineNumber":217,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":218,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":219,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":220,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":221,"author":{"gitId":"jinyuan0425"},"content":" } catch (IOException e) {","lastModifiedDate":"2023-08-29"},{"lineNumber":222,"author":{"gitId":"jinyuan0425"},"content":" System.out.println(\"An error occurred.\");","lastModifiedDate":"2023-08-29"},{"lineNumber":223,"author":{"gitId":"jinyuan0425"},"content":" e.printStackTrace();","lastModifiedDate":"2023-08-29"},{"lineNumber":224,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":225,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":226,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":227,"author":{"gitId":"jinyuan0425"},"content":" public static void save() throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":228,"author":{"gitId":"jinyuan0425"},"content":" try (FileWriter save \u003d new FileWriter(\"./data/duke.txt\")) {","lastModifiedDate":"2023-08-29"},{"lineNumber":229,"author":{"gitId":"jinyuan0425"},"content":" String str \u003d \"\";","lastModifiedDate":"2023-08-29"},{"lineNumber":230,"author":{"gitId":"jinyuan0425"},"content":" for (int i \u003d 0; i \u003c counter; i++) {","lastModifiedDate":"2023-08-29"},{"lineNumber":231,"author":{"gitId":"jinyuan0425"},"content":" str +\u003d list.get(i).write() + \"\\n\";","lastModifiedDate":"2023-08-29"},{"lineNumber":232,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":233,"author":{"gitId":"jinyuan0425"},"content":" save.write(str);","lastModifiedDate":"2023-08-29"},{"lineNumber":234,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":235,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":236,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":237,"author":{"gitId":"jinyuan0425"},"content":" public static void main(String[] args) throws DukeException, FileNotFoundException {","lastModifiedDate":"2023-08-29"},{"lineNumber":238,"author":{"gitId":"jinyuan0425"},"content":" try (Scanner myObj \u003d new Scanner(System.in)) {","lastModifiedDate":"2023-08-29"},{"lineNumber":239,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-29"},{"lineNumber":240,"author":{"gitId":"jinyuan0425"},"content":" load();","lastModifiedDate":"2023-08-29"},{"lineNumber":241,"author":{"gitId":"jinyuan0425"},"content":" System.out.println(greet()); // Greets user","lastModifiedDate":"2023-08-22"},{"lineNumber":242,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":243,"author":{"gitId":"jinyuan0425"},"content":" String echo \u003d myObj.nextLine(); // Reads user input","lastModifiedDate":"2023-08-22"},{"lineNumber":244,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":245,"author":{"gitId":"jinyuan0425"},"content":" while (!echo.equals(\"bye\")) {","lastModifiedDate":"2023-08-22"},{"lineNumber":246,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-22"},{"lineNumber":247,"author":{"gitId":"jinyuan0425"},"content":" System.out.println(command(echo)); // Checks input","lastModifiedDate":"2023-08-22"},{"lineNumber":248,"author":{"gitId":"jinyuan0425"},"content":" } catch (DukeException ex) {","lastModifiedDate":"2023-08-22"},{"lineNumber":249,"author":{"gitId":"jinyuan0425"},"content":" System.err.println(ex); // Prints error","lastModifiedDate":"2023-08-22"},{"lineNumber":250,"author":{"gitId":"jinyuan0425"},"content":" } finally {","lastModifiedDate":"2023-08-22"},{"lineNumber":251,"author":{"gitId":"jinyuan0425"},"content":" save();","lastModifiedDate":"2023-08-29"},{"lineNumber":252,"author":{"gitId":"jinyuan0425"},"content":" echo \u003d myObj.nextLine(); // Scan for next input","lastModifiedDate":"2023-08-22"},{"lineNumber":253,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":254,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":255,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":256,"author":{"gitId":"jinyuan0425"},"content":" System.out.println(thank()); // Exits the bot","lastModifiedDate":"2023-08-22"},{"lineNumber":257,"author":{"gitId":"jinyuan0425"},"content":" ","lastModifiedDate":"2023-08-29"},{"lineNumber":258,"author":{"gitId":"jinyuan0425"},"content":" } catch (IOException ex) {","lastModifiedDate":"2023-08-29"},{"lineNumber":259,"author":{"gitId":"jinyuan0425"},"content":" System.err.println(ex);","lastModifiedDate":"2023-08-29"},{"lineNumber":260,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":261,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":262,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":263,"author":{"gitId":"jinyuan0425"},"content":" ","lastModifiedDate":"2023-08-29"},{"lineNumber":264,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2019-07-29"},{"lineNumber":265,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2019-07-29"}],"authorContributionMap":{"jinyuan0425":262,"-":3}},{"path":"src/main/java/DukeException.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"public class DukeException extends Exception {","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":" public DukeException(String msg) {","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":" super(msg);","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":5}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"public class Event extends Task {","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":" protected String from;","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":" protected String to;","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":" public Event(String description, String from, String to) {","lastModifiedDate":"2023-08-22"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":" super(description);","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" this.from \u003d from;","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" this.to \u003d to;","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-22"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":" public String toString() {","lastModifiedDate":"2023-08-22"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":" return \"[E]\" + super.toString() + \" (from: \" + from + \" to: \" + to + \")\";","lastModifiedDate":"2023-08-22"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":16,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-29"},{"lineNumber":17,"author":{"gitId":"jinyuan0425"},"content":" public String write() {","lastModifiedDate":"2023-08-29"},{"lineNumber":18,"author":{"gitId":"jinyuan0425"},"content":" return \"E | \" + super.write() + \" | \" + from + \" | \" + to;","lastModifiedDate":"2023-08-29"},{"lineNumber":19,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":20,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":20}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"public class Task {","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":" protected String description;","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":" protected boolean isDone;","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":" public Task(String description) {","lastModifiedDate":"2023-08-22"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":" this.description \u003d description;","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":" public String getStatusIcon() {","lastModifiedDate":"2023-08-22"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" return (isDone ? \"X\" : \" \"); // mark done task with X","lastModifiedDate":"2023-08-22"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" public void setDone() {","lastModifiedDate":"2023-08-22"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":" this.isDone \u003d true;","lastModifiedDate":"2023-08-22"},{"lineNumber":16,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":17,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":18,"author":{"gitId":"jinyuan0425"},"content":" public void setNotDone() {","lastModifiedDate":"2023-08-22"},{"lineNumber":19,"author":{"gitId":"jinyuan0425"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-22"},{"lineNumber":20,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":21,"author":{"gitId":"jinyuan0425"},"content":" public String toString() {","lastModifiedDate":"2023-08-22"},{"lineNumber":22,"author":{"gitId":"jinyuan0425"},"content":" return \"[\" + getStatusIcon() + \"] \" + this.description;","lastModifiedDate":"2023-08-22"},{"lineNumber":23,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":24,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":25,"author":{"gitId":"jinyuan0425"},"content":" public String write() {","lastModifiedDate":"2023-08-29"},{"lineNumber":26,"author":{"gitId":"jinyuan0425"},"content":" String complete \u003d isDone ? \"1\" : \"0\";","lastModifiedDate":"2023-08-29"},{"lineNumber":27,"author":{"gitId":"jinyuan0425"},"content":" return complete + \" | \" + this.description;","lastModifiedDate":"2023-08-29"},{"lineNumber":28,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":29,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":29}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"public class Todo extends Task {","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":" public Todo(String description) {","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":" super(description);","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" public String toString() {","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" return \"[T]\" + super.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-29"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":" public String write() {","lastModifiedDate":"2023-08-29"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":" return \"T | \" + super.write();","lastModifiedDate":"2023-08-29"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":15}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"todo Automate ButlerBot","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":"deadline CS2103T Individual Project /by Thursday","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":"event Birthday Celebration! /from Fri 11pm /to Sat 12am","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"todo Delete this","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":"todo Mark this","lastModifiedDate":"2023-08-22"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":"mark 5","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":"list","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":"delete 4","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":"list","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":"bye","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":10}}] +[{"path":"src/main/java/Deadline.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"import java.time.LocalDateTime;","lastModifiedDate":"2023-08-30"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":"public class Deadline extends Task {","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":" protected LocalDateTime by;","lastModifiedDate":"2023-08-30"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" public Deadline(String description, LocalDateTime by) {","lastModifiedDate":"2023-08-30"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" super(description);","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":" this.by \u003d by;","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-22"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":" public String toString() {","lastModifiedDate":"2023-08-22"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" String output \u003d by.format(DateTimeFormatter.ofPattern(\"MMM d yyyy, h:mm a\"));","lastModifiedDate":"2023-08-30"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":" return \"[D]\" + super.toString() + \" (by: \" + output + \")\";","lastModifiedDate":"2023-08-30"},{"lineNumber":16,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":17,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":18,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-29"},{"lineNumber":19,"author":{"gitId":"jinyuan0425"},"content":" public String write() {","lastModifiedDate":"2023-08-29"},{"lineNumber":20,"author":{"gitId":"jinyuan0425"},"content":" String output \u003d by.format(DateTimeFormatter.ofPattern(\"d/M/yyyy HHmm\"));","lastModifiedDate":"2023-08-30"},{"lineNumber":21,"author":{"gitId":"jinyuan0425"},"content":" return \"D | \" + super.write() + \" | \" + output;","lastModifiedDate":"2023-08-30"},{"lineNumber":22,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":23,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":23}},{"path":"src/main/java/Duke.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"import java.io.*;","lastModifiedDate":"2023-08-29"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":"import java.time.format.DateTimeParseException;","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":"import java.util.ArrayList;","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"import java.util.Scanner;","lastModifiedDate":"2023-08-30"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":"import java.time.LocalDateTime;","lastModifiedDate":"2023-08-30"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2023-08-30"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":8,"author":{"gitId":"-"},"content":"public class Duke {","lastModifiedDate":"2019-07-29"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":" static ArrayList\u003cTask\u003e list \u003d new ArrayList\u003cTask\u003e(); // List to be returned when input is \"list\"","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":" static int counter \u003d 0; // Items in list","lastModifiedDate":"2023-08-22"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" File saveFile \u003d new File(\"./data/duke.txt\"); // Loads the save file","lastModifiedDate":"2023-08-29"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":" public static enum Type {","lastModifiedDate":"2023-08-22"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" LIST,","lastModifiedDate":"2023-08-22"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":" MARK,","lastModifiedDate":"2023-08-22"},{"lineNumber":16,"author":{"gitId":"jinyuan0425"},"content":" UNMARK,","lastModifiedDate":"2023-08-22"},{"lineNumber":17,"author":{"gitId":"jinyuan0425"},"content":" TODO,","lastModifiedDate":"2023-08-22"},{"lineNumber":18,"author":{"gitId":"jinyuan0425"},"content":" DEADLINE,","lastModifiedDate":"2023-08-22"},{"lineNumber":19,"author":{"gitId":"jinyuan0425"},"content":" EVENT,","lastModifiedDate":"2023-08-22"},{"lineNumber":20,"author":{"gitId":"jinyuan0425"},"content":" DELETE,","lastModifiedDate":"2023-08-22"},{"lineNumber":21,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":22,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":23,"author":{"gitId":"jinyuan0425"},"content":" public static String greet() { // Greets user on initialisation","lastModifiedDate":"2023-08-22"},{"lineNumber":24,"author":{"gitId":"jinyuan0425"},"content":" return \"Good day to you, I\u0027m ButlerBot.\\n\" +","lastModifiedDate":"2023-08-22"},{"lineNumber":25,"author":{"gitId":"jinyuan0425"},"content":" \"How may I be of service to you?\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":26,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":27,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":28,"author":{"gitId":"jinyuan0425"},"content":" public static String thank() { // Exits the Bot","lastModifiedDate":"2023-08-22"},{"lineNumber":29,"author":{"gitId":"jinyuan0425"},"content":" return \"Goodbye and have a nice day.\";","lastModifiedDate":"2023-08-22"},{"lineNumber":30,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":31,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":32,"author":{"gitId":"jinyuan0425"},"content":" public static String command(String input) throws DukeException, IOException { // Checks the input","lastModifiedDate":"2023-08-29"},{"lineNumber":33,"author":{"gitId":"jinyuan0425"},"content":" if (input.startsWith(\"list\")) { // list command","lastModifiedDate":"2023-08-22"},{"lineNumber":34,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.LIST, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":35,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"mark \")) { // mark command","lastModifiedDate":"2023-08-22"},{"lineNumber":36,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.MARK, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":37,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"unmark \")) { // unmark command","lastModifiedDate":"2023-08-22"},{"lineNumber":38,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.UNMARK, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":39,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"todo \")) { // todo command","lastModifiedDate":"2023-08-22"},{"lineNumber":40,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.TODO, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":41,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"deadline \")) { // deadline command","lastModifiedDate":"2023-08-22"},{"lineNumber":42,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.DEADLINE, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":43,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"event \")) { // event command","lastModifiedDate":"2023-08-22"},{"lineNumber":44,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.EVENT, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":45,"author":{"gitId":"jinyuan0425"},"content":" } else if (input.startsWith(\"delete \")) { // delete command","lastModifiedDate":"2023-08-22"},{"lineNumber":46,"author":{"gitId":"jinyuan0425"},"content":" return enumCommand(Type.DELETE, input);","lastModifiedDate":"2023-08-22"},{"lineNumber":47,"author":{"gitId":"jinyuan0425"},"content":" } else {","lastModifiedDate":"2023-08-22"},{"lineNumber":48,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid I do not quite understand. Could you kindly repeat it?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":49,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":50,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":51,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":52,"author":{"gitId":"jinyuan0425"},"content":" public static String enumCommand(Type command, String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":53,"author":{"gitId":"jinyuan0425"},"content":" Type type \u003d command;","lastModifiedDate":"2023-08-22"},{"lineNumber":54,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":55,"author":{"gitId":"jinyuan0425"},"content":" switch (type) {","lastModifiedDate":"2023-08-22"},{"lineNumber":56,"author":{"gitId":"jinyuan0425"},"content":" case LIST:","lastModifiedDate":"2023-08-22"},{"lineNumber":57,"author":{"gitId":"jinyuan0425"},"content":" return list();","lastModifiedDate":"2023-08-22"},{"lineNumber":58,"author":{"gitId":"jinyuan0425"},"content":" case MARK:","lastModifiedDate":"2023-08-22"},{"lineNumber":59,"author":{"gitId":"jinyuan0425"},"content":" return mark(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":60,"author":{"gitId":"jinyuan0425"},"content":" case UNMARK:","lastModifiedDate":"2023-08-22"},{"lineNumber":61,"author":{"gitId":"jinyuan0425"},"content":" return unmark(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":62,"author":{"gitId":"jinyuan0425"},"content":" case TODO:","lastModifiedDate":"2023-08-22"},{"lineNumber":63,"author":{"gitId":"jinyuan0425"},"content":" return todo(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":64,"author":{"gitId":"jinyuan0425"},"content":" case DEADLINE:","lastModifiedDate":"2023-08-22"},{"lineNumber":65,"author":{"gitId":"jinyuan0425"},"content":" return deadline(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":66,"author":{"gitId":"jinyuan0425"},"content":" case EVENT:","lastModifiedDate":"2023-08-22"},{"lineNumber":67,"author":{"gitId":"jinyuan0425"},"content":" return event(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":68,"author":{"gitId":"jinyuan0425"},"content":" case DELETE:","lastModifiedDate":"2023-08-22"},{"lineNumber":69,"author":{"gitId":"jinyuan0425"},"content":" return delete(input);","lastModifiedDate":"2023-08-22"},{"lineNumber":70,"author":{"gitId":"jinyuan0425"},"content":" default:","lastModifiedDate":"2023-08-22"},{"lineNumber":71,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid I do not quite understand. Could you kindly repeat it?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":72,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":73,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":74,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":75,"author":{"gitId":"jinyuan0425"},"content":" public static String mark(String input) throws DukeException {","lastModifiedDate":"2023-08-22"},{"lineNumber":76,"author":{"gitId":"jinyuan0425"},"content":" int index \u003d Integer.valueOf(input.substring(5)) - 1;","lastModifiedDate":"2023-08-22"},{"lineNumber":77,"author":{"gitId":"jinyuan0425"},"content":" if (index \u003e\u003d 0 \u0026\u0026 index \u003c counter) {","lastModifiedDate":"2023-08-22"},{"lineNumber":78,"author":{"gitId":"jinyuan0425"},"content":" list.get(index).setDone(); // Item mark complete","lastModifiedDate":"2023-08-22"},{"lineNumber":79,"author":{"gitId":"jinyuan0425"},"content":" return \"Congratulations on finishing the task. I will now mark it as complete:\\n\" +","lastModifiedDate":"2023-08-22"},{"lineNumber":80,"author":{"gitId":"jinyuan0425"},"content":" list.get(index).toString()+ \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":81,"author":{"gitId":"jinyuan0425"},"content":" } else { // Index error","lastModifiedDate":"2023-08-22"},{"lineNumber":82,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid the task does not exist. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":83,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you might want to see your list again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":84,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":85,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":86,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":87,"author":{"gitId":"jinyuan0425"},"content":" public static String unmark(String input) throws DukeException {","lastModifiedDate":"2023-08-22"},{"lineNumber":88,"author":{"gitId":"jinyuan0425"},"content":" int index \u003d Integer.valueOf(input.substring(7)) - 1;","lastModifiedDate":"2023-08-22"},{"lineNumber":89,"author":{"gitId":"jinyuan0425"},"content":" if (index \u003e\u003d 0 \u0026\u0026 index \u003c counter) {","lastModifiedDate":"2023-08-22"},{"lineNumber":90,"author":{"gitId":"jinyuan0425"},"content":" list.get(index).setNotDone(); // Item mark complete","lastModifiedDate":"2023-08-22"},{"lineNumber":91,"author":{"gitId":"jinyuan0425"},"content":" return \"No worries. I will now mark it as incomplete:\\n\" +","lastModifiedDate":"2023-08-22"},{"lineNumber":92,"author":{"gitId":"jinyuan0425"},"content":" list.get(index).toString() + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":93,"author":{"gitId":"jinyuan0425"},"content":" } else { // Index error","lastModifiedDate":"2023-08-22"},{"lineNumber":94,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid the task does not exist. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":95,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you might want to see your list again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":96,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":97,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":98,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":99,"author":{"gitId":"jinyuan0425"},"content":" public static String list() throws DukeException {","lastModifiedDate":"2023-08-22"},{"lineNumber":100,"author":{"gitId":"jinyuan0425"},"content":" String result \u003d \"\";","lastModifiedDate":"2023-08-22"},{"lineNumber":101,"author":{"gitId":"jinyuan0425"},"content":" for (int i \u003d 0; i \u003c list.size(); i++) { // Generates the String representation of the list","lastModifiedDate":"2023-08-22"},{"lineNumber":102,"author":{"gitId":"jinyuan0425"},"content":" result +\u003d i + 1 + \". \" + list.get(i) + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":103,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":104,"author":{"gitId":"jinyuan0425"},"content":" if (result !\u003d \"\") {","lastModifiedDate":"2023-08-22"},{"lineNumber":105,"author":{"gitId":"jinyuan0425"},"content":" return result;","lastModifiedDate":"2023-08-22"},{"lineNumber":106,"author":{"gitId":"jinyuan0425"},"content":" } else { // Empty list","lastModifiedDate":"2023-08-22"},{"lineNumber":107,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"There is nothing on your list currently. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":108,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you might want to add a new task?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":109,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":110,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":111,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":112,"author":{"gitId":"jinyuan0425"},"content":" public static void addTask(Task task) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":113,"author":{"gitId":"jinyuan0425"},"content":" list.add(task); // Adds task to the list","lastModifiedDate":"2023-08-22"},{"lineNumber":114,"author":{"gitId":"jinyuan0425"},"content":" counter +\u003d 1;","lastModifiedDate":"2023-08-29"},{"lineNumber":115,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":116,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":117,"author":{"gitId":"jinyuan0425"},"content":" public static String todo(String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":118,"author":{"gitId":"jinyuan0425"},"content":" String task \u003d input.substring(5);","lastModifiedDate":"2023-08-22"},{"lineNumber":119,"author":{"gitId":"jinyuan0425"},"content":" if (task !\u003d \"\") {","lastModifiedDate":"2023-08-22"},{"lineNumber":120,"author":{"gitId":"jinyuan0425"},"content":" Task item \u003d new Todo(task);","lastModifiedDate":"2023-08-22"},{"lineNumber":121,"author":{"gitId":"jinyuan0425"},"content":" addTask(item);","lastModifiedDate":"2023-08-22"},{"lineNumber":122,"author":{"gitId":"jinyuan0425"},"content":" String response \u003d \"Understood, I will add the following todo to your list:\\n\" + item.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":123,"author":{"gitId":"jinyuan0425"},"content":" String listLength \u003d \"Please note that there are \" + counter + \" tasks in the list.\";","lastModifiedDate":"2023-08-22"},{"lineNumber":124,"author":{"gitId":"jinyuan0425"},"content":" return response + \"\\n\" + listLength + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":125,"author":{"gitId":"jinyuan0425"},"content":" } else { // No task","lastModifiedDate":"2023-08-22"},{"lineNumber":126,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I am missing some information. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":127,"author":{"gitId":"jinyuan0425"},"content":" \"I must have not heard you correctly. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":128,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you can say it again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":129,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":130,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":131,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":132,"author":{"gitId":"jinyuan0425"},"content":" public static String deadline(String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":133,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":134,"author":{"gitId":"jinyuan0425"},"content":" String desc \u003d input.substring(9);","lastModifiedDate":"2023-08-22"},{"lineNumber":135,"author":{"gitId":"jinyuan0425"},"content":" String task \u003d desc.split(\" /by \")[0];","lastModifiedDate":"2023-08-22"},{"lineNumber":136,"author":{"gitId":"jinyuan0425"},"content":" String by \u003d desc.split(\" /by \")[1];","lastModifiedDate":"2023-08-22"},{"lineNumber":137,"author":{"gitId":"jinyuan0425"},"content":" LocalDateTime date \u003d parser(by);","lastModifiedDate":"2023-08-30"},{"lineNumber":138,"author":{"gitId":"jinyuan0425"},"content":" Task item \u003d new Deadline(task, date);","lastModifiedDate":"2023-08-30"},{"lineNumber":139,"author":{"gitId":"jinyuan0425"},"content":" addTask(item);","lastModifiedDate":"2023-08-22"},{"lineNumber":140,"author":{"gitId":"jinyuan0425"},"content":" String response \u003d \"Understood, I will add the following deadline to your list:\\n\" + item.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":141,"author":{"gitId":"jinyuan0425"},"content":" String listLength \u003d \"Please note that there are \" + counter + \" tasks in the list.\";","lastModifiedDate":"2023-08-21"},{"lineNumber":142,"author":{"gitId":"jinyuan0425"},"content":" return response + \"\\n\" + listLength + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":143,"author":{"gitId":"jinyuan0425"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":144,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I am missing some information. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":145,"author":{"gitId":"jinyuan0425"},"content":" \"I must have not heard you correctly. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":146,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you can say it again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":147,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":148,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":149,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":150,"author":{"gitId":"jinyuan0425"},"content":" public static String event(String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":151,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":152,"author":{"gitId":"jinyuan0425"},"content":" String desc \u003d input.substring(6);","lastModifiedDate":"2023-08-22"},{"lineNumber":153,"author":{"gitId":"jinyuan0425"},"content":" String[] eventTime \u003d desc.split(\" /from \");","lastModifiedDate":"2023-08-22"},{"lineNumber":154,"author":{"gitId":"jinyuan0425"},"content":" String task \u003d eventTime[0];","lastModifiedDate":"2023-08-22"},{"lineNumber":155,"author":{"gitId":"jinyuan0425"},"content":" String[] time \u003d eventTime[1].split(\" /to \");","lastModifiedDate":"2023-08-22"},{"lineNumber":156,"author":{"gitId":"jinyuan0425"},"content":" String from \u003d time[0];","lastModifiedDate":"2023-08-22"},{"lineNumber":157,"author":{"gitId":"jinyuan0425"},"content":" String to \u003d time[1];","lastModifiedDate":"2023-08-22"},{"lineNumber":158,"author":{"gitId":"jinyuan0425"},"content":" LocalDateTime fromDate \u003d parser(from);","lastModifiedDate":"2023-08-30"},{"lineNumber":159,"author":{"gitId":"jinyuan0425"},"content":" LocalDateTime toDate \u003d parser(to);","lastModifiedDate":"2023-08-30"},{"lineNumber":160,"author":{"gitId":"jinyuan0425"},"content":" Task item \u003d new Event(task, fromDate, toDate);","lastModifiedDate":"2023-08-30"},{"lineNumber":161,"author":{"gitId":"jinyuan0425"},"content":" addTask(item);","lastModifiedDate":"2023-08-22"},{"lineNumber":162,"author":{"gitId":"jinyuan0425"},"content":" String response \u003d \"Understood, I will add the following deadline to your list:\\n\" + item.toString();","lastModifiedDate":"2023-08-30"},{"lineNumber":163,"author":{"gitId":"jinyuan0425"},"content":" String listLength \u003d \"Please note that there are \" + counter + \" tasks in the list.\";","lastModifiedDate":"2023-08-21"},{"lineNumber":164,"author":{"gitId":"jinyuan0425"},"content":" return response + \"\\n\" + listLength + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":165,"author":{"gitId":"jinyuan0425"},"content":" } catch (DukeException e) {","lastModifiedDate":"2023-08-30"},{"lineNumber":166,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I am missing some information. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":167,"author":{"gitId":"jinyuan0425"},"content":" \"I must have not heard you correctly. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":168,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you can say it again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":169,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":170,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":171,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":172,"author":{"gitId":"jinyuan0425"},"content":" public static String delete(String input) throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":173,"author":{"gitId":"jinyuan0425"},"content":" int index \u003d Integer.valueOf(input.substring(7)) - 1;","lastModifiedDate":"2023-08-22"},{"lineNumber":174,"author":{"gitId":"jinyuan0425"},"content":" if (index \u003e\u003d 0 \u0026\u0026 index \u003c counter) {","lastModifiedDate":"2023-08-22"},{"lineNumber":175,"author":{"gitId":"jinyuan0425"},"content":" Task task \u003d list.get(index);","lastModifiedDate":"2023-08-22"},{"lineNumber":176,"author":{"gitId":"jinyuan0425"},"content":" list.remove(index);","lastModifiedDate":"2023-08-22"},{"lineNumber":177,"author":{"gitId":"jinyuan0425"},"content":" counter -\u003d 1;","lastModifiedDate":"2023-08-22"},{"lineNumber":178,"author":{"gitId":"jinyuan0425"},"content":" save();","lastModifiedDate":"2023-08-29"},{"lineNumber":179,"author":{"gitId":"jinyuan0425"},"content":" String response \u003d \"Understood, I will remove the following task from your list:\\n\" + task.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":180,"author":{"gitId":"jinyuan0425"},"content":" String listLength \u003d \"Please note that there are \" + counter + \" tasks in the list.\";","lastModifiedDate":"2023-08-22"},{"lineNumber":181,"author":{"gitId":"jinyuan0425"},"content":" return response + \"\\n\" + listLength + \"\\n\";","lastModifiedDate":"2023-08-22"},{"lineNumber":182,"author":{"gitId":"jinyuan0425"},"content":" } else { // Index error","lastModifiedDate":"2023-08-22"},{"lineNumber":183,"author":{"gitId":"jinyuan0425"},"content":" throw new DukeException(\"I\u0027m afraid the task does not exist. \" +","lastModifiedDate":"2023-08-22"},{"lineNumber":184,"author":{"gitId":"jinyuan0425"},"content":" \"Perhaps you might want to see your list again?\");","lastModifiedDate":"2023-08-22"},{"lineNumber":185,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":186,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":187,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":188,"author":{"gitId":"jinyuan0425"},"content":" public static void load() throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":189,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-29"},{"lineNumber":190,"author":{"gitId":"jinyuan0425"},"content":" File save \u003d new File(\"./data/duke.txt\");","lastModifiedDate":"2023-08-29"},{"lineNumber":191,"author":{"gitId":"jinyuan0425"},"content":" boolean saveExist \u003d save.exists();","lastModifiedDate":"2023-08-29"},{"lineNumber":192,"author":{"gitId":"jinyuan0425"},"content":" if (!saveExist) {","lastModifiedDate":"2023-08-29"},{"lineNumber":193,"author":{"gitId":"jinyuan0425"},"content":" File path \u003d new File(\"./data\");","lastModifiedDate":"2023-08-29"},{"lineNumber":194,"author":{"gitId":"jinyuan0425"},"content":" boolean pathExist \u003d path.exists();","lastModifiedDate":"2023-08-29"},{"lineNumber":195,"author":{"gitId":"jinyuan0425"},"content":" if (!pathExist) {","lastModifiedDate":"2023-08-29"},{"lineNumber":196,"author":{"gitId":"jinyuan0425"},"content":" path.mkdir();","lastModifiedDate":"2023-08-29"},{"lineNumber":197,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":198,"author":{"gitId":"jinyuan0425"},"content":" save.createNewFile();","lastModifiedDate":"2023-08-29"},{"lineNumber":199,"author":{"gitId":"jinyuan0425"},"content":" } else {","lastModifiedDate":"2023-08-29"},{"lineNumber":200,"author":{"gitId":"jinyuan0425"},"content":" Scanner input \u003d new Scanner(save);","lastModifiedDate":"2023-08-29"},{"lineNumber":201,"author":{"gitId":"jinyuan0425"},"content":" while (input.hasNextLine()) {","lastModifiedDate":"2023-08-29"},{"lineNumber":202,"author":{"gitId":"jinyuan0425"},"content":" String details \u003d input.nextLine();","lastModifiedDate":"2023-08-29"},{"lineNumber":203,"author":{"gitId":"jinyuan0425"},"content":" String[] data \u003d details.split(\" \\\\| \");","lastModifiedDate":"2023-08-29"},{"lineNumber":204,"author":{"gitId":"jinyuan0425"},"content":" String type \u003d data[0];","lastModifiedDate":"2023-08-29"},{"lineNumber":205,"author":{"gitId":"jinyuan0425"},"content":" String isCompleted \u003d data[1];","lastModifiedDate":"2023-08-29"},{"lineNumber":206,"author":{"gitId":"jinyuan0425"},"content":" String task \u003d data[2];","lastModifiedDate":"2023-08-29"},{"lineNumber":207,"author":{"gitId":"jinyuan0425"},"content":" if (type.equals(\"T\")) {","lastModifiedDate":"2023-08-29"},{"lineNumber":208,"author":{"gitId":"jinyuan0425"},"content":" addTask(new Todo(task));","lastModifiedDate":"2023-08-29"},{"lineNumber":209,"author":{"gitId":"jinyuan0425"},"content":" if (isCompleted \u003d\u003d \"1\") {","lastModifiedDate":"2023-08-29"},{"lineNumber":210,"author":{"gitId":"jinyuan0425"},"content":" list.get(counter - 1).setDone();","lastModifiedDate":"2023-08-29"},{"lineNumber":211,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":212,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":213,"author":{"gitId":"jinyuan0425"},"content":" if (type.equals(\"D\")) {","lastModifiedDate":"2023-08-29"},{"lineNumber":214,"author":{"gitId":"jinyuan0425"},"content":" LocalDateTime date \u003d parser(data[3]);","lastModifiedDate":"2023-08-30"},{"lineNumber":215,"author":{"gitId":"jinyuan0425"},"content":" addTask(new Deadline(task, date));","lastModifiedDate":"2023-08-30"},{"lineNumber":216,"author":{"gitId":"jinyuan0425"},"content":" if (isCompleted \u003d\u003d \"1\") {","lastModifiedDate":"2023-08-29"},{"lineNumber":217,"author":{"gitId":"jinyuan0425"},"content":" list.get(counter - 1).setDone();","lastModifiedDate":"2023-08-29"},{"lineNumber":218,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":219,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":220,"author":{"gitId":"jinyuan0425"},"content":" if (type.equals(\"E\")) {","lastModifiedDate":"2023-08-29"},{"lineNumber":221,"author":{"gitId":"jinyuan0425"},"content":" LocalDateTime from \u003d parser(data[3]);","lastModifiedDate":"2023-08-30"},{"lineNumber":222,"author":{"gitId":"jinyuan0425"},"content":" LocalDateTime to \u003d parser(data[3]);","lastModifiedDate":"2023-08-30"},{"lineNumber":223,"author":{"gitId":"jinyuan0425"},"content":" addTask(new Event(task, from, to));","lastModifiedDate":"2023-08-30"},{"lineNumber":224,"author":{"gitId":"jinyuan0425"},"content":" if (isCompleted \u003d\u003d \"1\") {","lastModifiedDate":"2023-08-29"},{"lineNumber":225,"author":{"gitId":"jinyuan0425"},"content":" list.get(counter - 1).setDone();","lastModifiedDate":"2023-08-29"},{"lineNumber":226,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":227,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":228,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":229,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":230,"author":{"gitId":"jinyuan0425"},"content":" } catch (IOException e) {","lastModifiedDate":"2023-08-29"},{"lineNumber":231,"author":{"gitId":"jinyuan0425"},"content":" System.out.println(\"An error occurred.\");","lastModifiedDate":"2023-08-29"},{"lineNumber":232,"author":{"gitId":"jinyuan0425"},"content":" e.printStackTrace();","lastModifiedDate":"2023-08-29"},{"lineNumber":233,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":234,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":235,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":236,"author":{"gitId":"jinyuan0425"},"content":" public static void save() throws DukeException, IOException {","lastModifiedDate":"2023-08-29"},{"lineNumber":237,"author":{"gitId":"jinyuan0425"},"content":" try (FileWriter save \u003d new FileWriter(\"./data/duke.txt\")) {","lastModifiedDate":"2023-08-29"},{"lineNumber":238,"author":{"gitId":"jinyuan0425"},"content":" String str \u003d \"\";","lastModifiedDate":"2023-08-29"},{"lineNumber":239,"author":{"gitId":"jinyuan0425"},"content":" for (int i \u003d 0; i \u003c counter; i++) {","lastModifiedDate":"2023-08-29"},{"lineNumber":240,"author":{"gitId":"jinyuan0425"},"content":" str +\u003d list.get(i).write() + \"\\n\";","lastModifiedDate":"2023-08-29"},{"lineNumber":241,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":242,"author":{"gitId":"jinyuan0425"},"content":" save.write(str);","lastModifiedDate":"2023-08-29"},{"lineNumber":243,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":244,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":245,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":246,"author":{"gitId":"jinyuan0425"},"content":" public static LocalDateTime parser(String str) throws DateTimeParseException {","lastModifiedDate":"2023-08-30"},{"lineNumber":247,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-30"},{"lineNumber":248,"author":{"gitId":"jinyuan0425"},"content":" DateTimeFormatter formatter \u003d DateTimeFormatter.ofPattern(\"d/M/yyyy HHmm\");","lastModifiedDate":"2023-08-30"},{"lineNumber":249,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":250,"author":{"gitId":"jinyuan0425"},"content":" LocalDateTime dateTime \u003d LocalDateTime.parse(str, formatter);","lastModifiedDate":"2023-08-30"},{"lineNumber":251,"author":{"gitId":"jinyuan0425"},"content":" return dateTime;","lastModifiedDate":"2023-08-30"},{"lineNumber":252,"author":{"gitId":"jinyuan0425"},"content":" } catch (DateTimeParseException ex) {","lastModifiedDate":"2023-08-30"},{"lineNumber":253,"author":{"gitId":"jinyuan0425"},"content":" throw new DateTimeParseException(\"I\u0027m afraid I do not quite understand. \" +","lastModifiedDate":"2023-08-30"},{"lineNumber":254,"author":{"gitId":"jinyuan0425"},"content":" \"Please input the date in the following format:\\n\" +","lastModifiedDate":"2023-08-30"},{"lineNumber":255,"author":{"gitId":"jinyuan0425"},"content":" \"d/M/yyyy HHmm\", ex.getParsedString(), ex.getErrorIndex());","lastModifiedDate":"2023-08-30"},{"lineNumber":256,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":257,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-30"},{"lineNumber":258,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":259,"author":{"gitId":"jinyuan0425"},"content":" public static void main(String[] args) throws DukeException, FileNotFoundException {","lastModifiedDate":"2023-08-29"},{"lineNumber":260,"author":{"gitId":"jinyuan0425"},"content":" try (Scanner myObj \u003d new Scanner(System.in)) {","lastModifiedDate":"2023-08-29"},{"lineNumber":261,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-29"},{"lineNumber":262,"author":{"gitId":"jinyuan0425"},"content":" load();","lastModifiedDate":"2023-08-29"},{"lineNumber":263,"author":{"gitId":"jinyuan0425"},"content":" System.out.println(greet()); // Greets user","lastModifiedDate":"2023-08-22"},{"lineNumber":264,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":265,"author":{"gitId":"jinyuan0425"},"content":" String echo \u003d myObj.nextLine(); // Reads user input","lastModifiedDate":"2023-08-22"},{"lineNumber":266,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-21"},{"lineNumber":267,"author":{"gitId":"jinyuan0425"},"content":" while (!echo.equals(\"bye\")) {","lastModifiedDate":"2023-08-22"},{"lineNumber":268,"author":{"gitId":"jinyuan0425"},"content":" try {","lastModifiedDate":"2023-08-22"},{"lineNumber":269,"author":{"gitId":"jinyuan0425"},"content":" System.out.println(command(echo)); // Checks input","lastModifiedDate":"2023-08-22"},{"lineNumber":270,"author":{"gitId":"jinyuan0425"},"content":" } catch (DukeException ex) {","lastModifiedDate":"2023-08-22"},{"lineNumber":271,"author":{"gitId":"jinyuan0425"},"content":" System.err.println(ex); // Prints error","lastModifiedDate":"2023-08-22"},{"lineNumber":272,"author":{"gitId":"jinyuan0425"},"content":" } catch (DateTimeParseException ex) {","lastModifiedDate":"2023-08-30"},{"lineNumber":273,"author":{"gitId":"jinyuan0425"},"content":" System.err.println(ex); // Prints error","lastModifiedDate":"2023-08-30"},{"lineNumber":274,"author":{"gitId":"jinyuan0425"},"content":" } finally {","lastModifiedDate":"2023-08-22"},{"lineNumber":275,"author":{"gitId":"jinyuan0425"},"content":" save();","lastModifiedDate":"2023-08-29"},{"lineNumber":276,"author":{"gitId":"jinyuan0425"},"content":" echo \u003d myObj.nextLine(); // Scan for next input","lastModifiedDate":"2023-08-22"},{"lineNumber":277,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":278,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-21"},{"lineNumber":279,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":280,"author":{"gitId":"jinyuan0425"},"content":" System.out.println(thank()); // Exits the bot","lastModifiedDate":"2023-08-22"},{"lineNumber":281,"author":{"gitId":"jinyuan0425"},"content":" ","lastModifiedDate":"2023-08-29"},{"lineNumber":282,"author":{"gitId":"jinyuan0425"},"content":" } catch (IOException ex) {","lastModifiedDate":"2023-08-29"},{"lineNumber":283,"author":{"gitId":"jinyuan0425"},"content":" System.err.println(ex);","lastModifiedDate":"2023-08-29"},{"lineNumber":284,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":285,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":286,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":287,"author":{"gitId":"jinyuan0425"},"content":" ","lastModifiedDate":"2023-08-29"},{"lineNumber":288,"author":{"gitId":"-"},"content":" }","lastModifiedDate":"2019-07-29"},{"lineNumber":289,"author":{"gitId":"-"},"content":"}","lastModifiedDate":"2019-07-29"}],"authorContributionMap":{"jinyuan0425":286,"-":3}},{"path":"src/main/java/DukeException.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"public class DukeException extends Exception {","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":" public DukeException(String msg) {","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":" super(msg);","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":5}},{"path":"src/main/java/Event.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"import java.time.LocalDateTime;","lastModifiedDate":"2023-08-30"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":"import java.time.format.DateTimeFormatter;","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":"public class Event extends Task {","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":" protected LocalDateTime from;","lastModifiedDate":"2023-08-30"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":" protected LocalDateTime to;","lastModifiedDate":"2023-08-30"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" public Event(String description, LocalDateTime from, LocalDateTime to) {","lastModifiedDate":"2023-08-30"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" super(description);","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":" this.from \u003d from;","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":" this.to \u003d to;","lastModifiedDate":"2023-08-22"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-22"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" public String toString() {","lastModifiedDate":"2023-08-22"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":" String outputFrom \u003d from.format(DateTimeFormatter.ofPattern(\"MMM d yyyy, h:mm a\"));","lastModifiedDate":"2023-08-30"},{"lineNumber":16,"author":{"gitId":"jinyuan0425"},"content":" String outputTo \u003d to.format(DateTimeFormatter.ofPattern(\"MMM d yyyy, h:mm a\"));","lastModifiedDate":"2023-08-30"},{"lineNumber":17,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":18,"author":{"gitId":"jinyuan0425"},"content":" return \"[E]\" + super.toString() + \" (from: \" + outputFrom + \" to: \" + outputTo + \")\";","lastModifiedDate":"2023-08-30"},{"lineNumber":19,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":20,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":21,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-29"},{"lineNumber":22,"author":{"gitId":"jinyuan0425"},"content":" public String write() {","lastModifiedDate":"2023-08-29"},{"lineNumber":23,"author":{"gitId":"jinyuan0425"},"content":" String outputFrom \u003d from.format(DateTimeFormatter.ofPattern(\"d/M/yyyy HHmm\"));","lastModifiedDate":"2023-08-30"},{"lineNumber":24,"author":{"gitId":"jinyuan0425"},"content":" String outputTo \u003d to.format(DateTimeFormatter.ofPattern(\"d/M/yyyy HHmm\"));","lastModifiedDate":"2023-08-30"},{"lineNumber":25,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-30"},{"lineNumber":26,"author":{"gitId":"jinyuan0425"},"content":" return \"E | \" + super.write() + \" | \" + outputFrom + \" | \" + outputTo;","lastModifiedDate":"2023-08-30"},{"lineNumber":27,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":28,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":28}},{"path":"src/main/java/Task.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"public class Task {","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":" protected String description;","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":" protected boolean isDone;","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":" public Task(String description) {","lastModifiedDate":"2023-08-22"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":" this.description \u003d description;","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":" public String getStatusIcon() {","lastModifiedDate":"2023-08-22"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" return (isDone ? \"X\" : \" \"); // mark done task with X","lastModifiedDate":"2023-08-22"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" public void setDone() {","lastModifiedDate":"2023-08-22"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":" this.isDone \u003d true;","lastModifiedDate":"2023-08-22"},{"lineNumber":16,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":17,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":18,"author":{"gitId":"jinyuan0425"},"content":" public void setNotDone() {","lastModifiedDate":"2023-08-22"},{"lineNumber":19,"author":{"gitId":"jinyuan0425"},"content":" this.isDone \u003d false;","lastModifiedDate":"2023-08-22"},{"lineNumber":20,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":21,"author":{"gitId":"jinyuan0425"},"content":" public String toString() {","lastModifiedDate":"2023-08-22"},{"lineNumber":22,"author":{"gitId":"jinyuan0425"},"content":" return \"[\" + getStatusIcon() + \"] \" + this.description;","lastModifiedDate":"2023-08-22"},{"lineNumber":23,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":24,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":25,"author":{"gitId":"jinyuan0425"},"content":" public String write() {","lastModifiedDate":"2023-08-29"},{"lineNumber":26,"author":{"gitId":"jinyuan0425"},"content":" String complete \u003d isDone ? \"1\" : \"0\";","lastModifiedDate":"2023-08-29"},{"lineNumber":27,"author":{"gitId":"jinyuan0425"},"content":" return complete + \" | \" + this.description;","lastModifiedDate":"2023-08-29"},{"lineNumber":28,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":29,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":29}},{"path":"src/main/java/Todo.java","fileType":"java","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"public class Todo extends Task {","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":" public Todo(String description) {","lastModifiedDate":"2023-08-22"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":" super(description);","lastModifiedDate":"2023-08-22"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-22"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":" public String toString() {","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":" return \"[T]\" + super.toString();","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":"","lastModifiedDate":"2023-08-29"},{"lineNumber":11,"author":{"gitId":"jinyuan0425"},"content":" @Override","lastModifiedDate":"2023-08-29"},{"lineNumber":12,"author":{"gitId":"jinyuan0425"},"content":" public String write() {","lastModifiedDate":"2023-08-29"},{"lineNumber":13,"author":{"gitId":"jinyuan0425"},"content":" return \"T | \" + super.write();","lastModifiedDate":"2023-08-29"},{"lineNumber":14,"author":{"gitId":"jinyuan0425"},"content":" }","lastModifiedDate":"2023-08-29"},{"lineNumber":15,"author":{"gitId":"jinyuan0425"},"content":"}","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":15}},{"path":"text-ui-test/data/duke.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"T | 0 | Automate ButlerBot","lastModifiedDate":"2023-08-30"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":"D | 0 | CS2103T Individual Project | 30/8/2023 1900","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":"E | 0 | Birthday Celebration! | 31/8/2023 1900 | 30/8/2023 2100","lastModifiedDate":"2023-08-30"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"T | 1 | Mark this","lastModifiedDate":"2023-08-30"}],"authorContributionMap":{"jinyuan0425":4}},{"path":"text-ui-test/input.txt","fileType":"txt","lines":[{"lineNumber":1,"author":{"gitId":"jinyuan0425"},"content":"todo Automate ButlerBot","lastModifiedDate":"2023-08-22"},{"lineNumber":2,"author":{"gitId":"jinyuan0425"},"content":"deadline CS2103T Individual Project /by 30/8/2023 1900","lastModifiedDate":"2023-08-30"},{"lineNumber":3,"author":{"gitId":"jinyuan0425"},"content":"event Birthday Celebration! /from 31/8/2023 1900 /to 30/8/2023 2100","lastModifiedDate":"2023-08-30"},{"lineNumber":4,"author":{"gitId":"jinyuan0425"},"content":"todo Delete this","lastModifiedDate":"2023-08-22"},{"lineNumber":5,"author":{"gitId":"jinyuan0425"},"content":"todo Mark this","lastModifiedDate":"2023-08-22"},{"lineNumber":6,"author":{"gitId":"jinyuan0425"},"content":"mark 5","lastModifiedDate":"2023-08-22"},{"lineNumber":7,"author":{"gitId":"jinyuan0425"},"content":"list","lastModifiedDate":"2023-08-22"},{"lineNumber":8,"author":{"gitId":"jinyuan0425"},"content":"delete 4","lastModifiedDate":"2023-08-22"},{"lineNumber":9,"author":{"gitId":"jinyuan0425"},"content":"list","lastModifiedDate":"2023-08-22"},{"lineNumber":10,"author":{"gitId":"jinyuan0425"},"content":"bye","lastModifiedDate":"2023-08-22"}],"authorContributionMap":{"jinyuan0425":10}}] diff --git a/jinyuan0425_ip_master/commits.json b/jinyuan0425_ip_master/commits.json index ff9ba15e..87c78de2 100644 --- a/jinyuan0425_ip_master/commits.json +++ b/jinyuan0425_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"jinyuan0425":[{"date":"2023-08-21","commitResults":[{"hash":"ca7d2661ade131782376c2afddbd36e9935fefcd","isMergeCommit":false,"messageTitle":"Completed Level-0","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":2,"deletions":6}}},{"hash":"2fb94bce6dd0f4c7261634c2998ef582fba6f33e","isMergeCommit":false,"messageTitle":"Completed Level-1","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":12,"deletions":2}}},{"hash":"ac93da3d1067916ef5f168add4017718c66dc698","isMergeCommit":false,"messageTitle":"Completed Level-2","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":20,"deletions":3}}},{"hash":"1d444f1b54e6db183d0ec075dc20f2c0e608f5e2","isMergeCommit":false,"messageTitle":"Completed Level-3","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":42,"deletions":3}}},{"hash":"4305f3de45c13763c58ab81fc3d03353c37d20fa","isMergeCommit":false,"messageTitle":"Completed Level-4","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":90,"deletions":3}}}]},{"date":"2023-08-22","commitResults":[{"hash":"086da3cd19cc3e400868709234bb1cbf14bebf7e","isMergeCommit":false,"messageTitle":"Completed A-TextUiTesting","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":7,"deletions":0},"java":{"insertions":2,"deletions":2}}},{"hash":"709c366e8d300763a4e931e66cd9598d7cad3b72","isMergeCommit":false,"messageTitle":"Completed Level-5","messageBody":"Implemented OOP\n","tags":["Level-5"],"fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":1},"java":{"insertions":190,"deletions":125}}},{"hash":"0142c95cc672e55aa6dec35fcbbaf1a2d4ba3fed","isMergeCommit":false,"messageTitle":"Completed Level-6","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"txt":{"insertions":5,"deletions":1},"java":{"insertions":37,"deletions":21}}}]},{"date":"2023-08-23","commitResults":[{"hash":"3a7bc56dda54cb8e3e3c59c8ab3058854966155f","isMergeCommit":false,"messageTitle":"Completed A-Enums","messageBody":"","tags":["A-Enum"],"fileTypesAndContributionMap":{"java":{"insertions":85,"deletions":59}}}]},{"date":"2023-08-29","commitResults":[{"hash":"3d5876226ec8dba4b0ccec4e4dd0b6fb18175677","isMergeCommit":false,"messageTitle":"Update code to allow for save","messageBody":"","tags":["Level-7"],"fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":0},"java":{"insertions":109,"deletions":22}}}]},{"date":"2023-08-30","commitResults":[{"hash":"cd368decde3e798f121b142f4f9667e8c2a7ecd5","isMergeCommit":false,"messageTitle":"Update code to allow for save","messageBody":"Bot refreshers with each load.\n\nUsers will not be able to use the bot effectively as data has to be\nre-entered every load.\n\nLet\u0027s save the user\u0027s input when assigning tasks to the bot.\n\nBot will now be able to reference the saved inputs and load the user\u0027s\nsaved data.\n","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":0},"java":{"insertions":109,"deletions":22}}}]}]},"authorFileTypeContributionMap":{"jinyuan0425":{"java":350,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":10}},"authorContributionVariance":{"jinyuan0425":12888.547},"authorDisplayNameMap":{"jinyuan0425":"CS2103T-W17-4 KWOH..YUAN"}} +{"authorDailyContributionsMap":{"jinyuan0425":[{"date":"2023-08-21","commitResults":[{"hash":"ca7d2661ade131782376c2afddbd36e9935fefcd","isMergeCommit":false,"messageTitle":"Completed Level-0","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":2,"deletions":6}}},{"hash":"2fb94bce6dd0f4c7261634c2998ef582fba6f33e","isMergeCommit":false,"messageTitle":"Completed Level-1","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":12,"deletions":2}}},{"hash":"ac93da3d1067916ef5f168add4017718c66dc698","isMergeCommit":false,"messageTitle":"Completed Level-2","messageBody":"","tags":["Level-2"],"fileTypesAndContributionMap":{"java":{"insertions":20,"deletions":3}}},{"hash":"1d444f1b54e6db183d0ec075dc20f2c0e608f5e2","isMergeCommit":false,"messageTitle":"Completed Level-3","messageBody":"","tags":["Level-3"],"fileTypesAndContributionMap":{"java":{"insertions":42,"deletions":3}}},{"hash":"4305f3de45c13763c58ab81fc3d03353c37d20fa","isMergeCommit":false,"messageTitle":"Completed Level-4","messageBody":"","tags":["Level-4"],"fileTypesAndContributionMap":{"java":{"insertions":90,"deletions":3}}}]},{"date":"2023-08-22","commitResults":[{"hash":"086da3cd19cc3e400868709234bb1cbf14bebf7e","isMergeCommit":false,"messageTitle":"Completed A-TextUiTesting","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":7,"deletions":0},"java":{"insertions":2,"deletions":2}}},{"hash":"709c366e8d300763a4e931e66cd9598d7cad3b72","isMergeCommit":false,"messageTitle":"Completed Level-5","messageBody":"Implemented OOP\n","tags":["Level-5"],"fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":1},"java":{"insertions":190,"deletions":125}}},{"hash":"0142c95cc672e55aa6dec35fcbbaf1a2d4ba3fed","isMergeCommit":false,"messageTitle":"Completed Level-6","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"txt":{"insertions":5,"deletions":1},"java":{"insertions":37,"deletions":21}}}]},{"date":"2023-08-23","commitResults":[{"hash":"3a7bc56dda54cb8e3e3c59c8ab3058854966155f","isMergeCommit":false,"messageTitle":"Completed A-Enums","messageBody":"","tags":["A-Enum"],"fileTypesAndContributionMap":{"java":{"insertions":85,"deletions":59}}}]},{"date":"2023-08-29","commitResults":[{"hash":"3d5876226ec8dba4b0ccec4e4dd0b6fb18175677","isMergeCommit":false,"messageTitle":"Update code to allow for save","messageBody":"","tags":["Level-7"],"fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":0},"java":{"insertions":109,"deletions":22}}}]},{"date":"2023-08-30","commitResults":[{"hash":"cd368decde3e798f121b142f4f9667e8c2a7ecd5","isMergeCommit":false,"messageTitle":"Update code to allow for save","messageBody":"Bot refreshers with each load.\n\nUsers will not be able to use the bot effectively as data has to be\nre-entered every load.\n\nLet\u0027s save the user\u0027s input when assigning tasks to the bot.\n\nBot will now be able to reference the saved inputs and load the user\u0027s\nsaved data.\n","fileTypesAndContributionMap":{"txt":{"insertions":0,"deletions":0},"java":{"insertions":109,"deletions":22}}},{"hash":"9e7dd57116d422e3bc29cfd4652d8c18e34ae618","isMergeCommit":false,"messageTitle":"Update bot to understand dates","messageBody":"","fileTypesAndContributionMap":{"txt":{"insertions":2,"deletions":0},"java":{"insertions":58,"deletions":27}}},{"hash":"79ba44e3b8f415be52e4b930f6c76541c7c1e2d6","isMergeCommit":false,"messageTitle":"Update bot to understand date and time","messageBody":"There is no fixed format to the input for by, from and to. Bot is able\nto accept any input and store them as a valid date and time.\n\nLet\u0027s introduce LocalDateTime to the bot to enforce a specific input\nformat for the date and time input.\n\nThis minimises the random behaviour of the bot as any incorrect inputs\nwill be rejected by the bot.\n","fileTypesAndContributionMap":{"txt":{"insertions":6,"deletions":4},"java":{"insertions":31,"deletions":26}}},{"hash":"a97d01947696a83998998ad70e8986dc023dcd8c","isMergeCommit":true,"messageTitle":"Merge branch \u0027branch-Level-8\u0027","messageBody":"","fileTypesAndContributionMap":{}}]}]},"authorFileTypeContributionMap":{"jinyuan0425":{"java":386,"md":0,"fxml":0,"sh":0,"bat":0,"gradle":0,"txt":14}},"authorContributionVariance":{"jinyuan0425":15890.177},"authorDisplayNameMap":{"jinyuan0425":"CS2103T-W17-4 KWOH..YUAN"}} diff --git a/reposense-logs/reposense.log.0 b/reposense-logs/reposense.log.0 index c89075a8..9e6185ac 100644 --- a/reposense-logs/reposense.log.0 +++ b/reposense-logs/reposense.log.0 @@ -1,58 +1,58 @@ -Aug 30, 2023 1:12:42 AM reposense.system.LogsManager addFileHandler +Aug 30, 2023 1:25:44 AM reposense.system.LogsManager addFileHandler INFO: Log temp folder has been successfully created -Aug 30, 2023 1:12:42 AM reposense.parser.CsvParser validateHeader +Aug 30, 2023 1:25:44 AM reposense.parser.CsvParser validateHeader INFO: Parsed header of CSV file, repo-config.csv, and recognized columns: Ignore Standalone Config, Repository's Location, Branch, Shallow Cloning, File formats, Ignore Glob List, Ignore Authors List, Find Previous Authors, Ignore Commits List -Aug 30, 2023 1:12:43 AM reposense.parser.CsvParser validateHeader +Aug 30, 2023 1:25:45 AM reposense.parser.CsvParser validateHeader INFO: Parsed header of CSV file, author-config.csv, and recognized columns: Author's Emails, Repository's Location, Author's GitHub ID, Branch, Author's Display Name, Ignore Glob List, Author's Git Author Name -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias scarletblanks found. The alias will belong to the last author - ScarletBlanks -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias kb-tay found. The alias will belong to the last author - Kb-Tay -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ryam found. The alias will belong to the last author - ryamgoh -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias h1410101 found. The alias will belong to the last author - H1410101 -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias shashahchk found. The alias will belong to the last author - shashahchk -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias yucongkoo found. The alias will belong to the last author - yucongkoo -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias kokseng1 found. The alias will belong to the last author - Kokseng1 -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias vanessamae23 found. The alias will belong to the last author - Vanessamae23 -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias singa-pirate found. The alias will belong to the last author - Singa-pirate -Aug 30, 2023 1:12:43 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias nicholastng010601 found. The alias will belong to the last author - nicholastng010601 -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias weiennn found. The alias will belong to the last author - Weiennn -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias adammangzijun found. The alias will belong to the last author - adammangzijun -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias scarletblanks found. The alias will belong to the last author - ScarletBlanks -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias kb-tay found. The alias will belong to the last author - Kb-Tay -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias ryam found. The alias will belong to the last author - ryamgoh -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias h1410101 found. The alias will belong to the last author - H1410101 -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias shashahchk found. The alias will belong to the last author - shashahchk -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias yucongkoo found. The alias will belong to the last author - yucongkoo -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias kokseng1 found. The alias will belong to the last author - Kokseng1 -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias vanessamae23 found. The alias will belong to the last author - Vanessamae23 -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias singa-pirate found. The alias will belong to the last author - Singa-pirate -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias nicholastng010601 found. The alias will belong to the last author - nicholastng010601 -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias weiennn found. The alias will belong to the last author - Weiennn -Aug 30, 2023 1:12:44 AM reposense.model.AuthorConfiguration checkDuplicateAliases +Aug 30, 2023 1:25:45 AM reposense.model.AuthorConfiguration checkDuplicateAliases WARNING: Duplicate alias adammangzijun found. The alias will belong to the last author - adammangzijun -Aug 30, 2023 1:12:44 AM reposense.git.GitConfig getGlobalGitLfsConfig +Aug 30, 2023 1:25:45 AM reposense.git.GitConfig getGlobalGitLfsConfig WARNING: Could not get global git lfs config java.lang.RuntimeException: reposense.system.CommandRunnerProcessException: Error returned from command git config --global --list on path . : fatal: unable to read config file '/home/runner/.gitconfig': No such file or directory @@ -68,8651 +68,8651 @@ fatal: unable to read config file '/home/runner/.gitconfig': No such file or dir at reposense.system.CommandRunner.runCommand(CommandRunner.java:21) ... 3 more -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/CJ-Lee01/ip.git... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/siqirua/ip.git... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/emzm2023/ip.git... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:45 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/CJ-Lee01/ip.git... +Aug 30, 2023 1:25:45 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/thaddeusong/ip.git... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/emzm2023/ip.git to complete... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/thaddeusong/ip.git to complete... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/CJ-Lee01/ip.git to complete... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:45 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/thaddeusong/ip.git to complete... +Aug 30, 2023 1:25:45 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/siqirua/ip.git to complete... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CJ-Lee01/ip.git completed! -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/thaddeusong/ip.git completed! +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tanteckfang/ip.git... -Aug 30, 2023 1:12:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [1/480] Analyzing https://github.com/CJ-Lee01/ip.git (master)... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanteckfang/ip.git to complete... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [1/480] Analyzing https://github.com/thaddeusong/ip.git (master)... +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/emzm2023/ip.git completed! -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CJ-Lee01/ip.git completed! +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/siqirua/ip.git completed! +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanteckfang/ip.git to complete... +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ph-nathan/ip.git... -Aug 30, 2023 1:12:44 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:25:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/thaddeusong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/butteredyakiimo/ip.git... +Aug 30, 2023 1:25:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [2/480] Analyzing https://github.com/emzm2023/ip.git (master)... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ph-nathan/ip.git to complete... -Aug 30, 2023 1:12:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/CJ-Lee01/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/siqirua/ip.git completed! -Aug 30, 2023 1:12:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/CJ-Lee01/ip.git (master)... -Aug 30, 2023 1:12:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/emzm2023/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/butteredyakiimo/ip.git... -Aug 30, 2023 1:12:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/thaddeusong/ip.git completed! -Aug 30, 2023 1:12:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/emzm2023/ip.git (master)... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/butteredyakiimo/ip.git to complete... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yuxunn/ip.git... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/butteredyakiimo/ip.git to complete... +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/yuxunn/ip.git to complete... -Aug 30, 2023 1:12:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:25:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/thaddeusong/ip.git (master)... +Aug 30, 2023 1:25:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/emzm2023/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/emzm2023/ip.git (master)... +Aug 30, 2023 1:25:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/emzm2023/ip.git (master)... -Aug 30, 2023 1:12:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:25:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/emzm2023/ip.git (master)... -Aug 30, 2023 1:12:45 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:25:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/emzm2023/ip.git (master) completed! -Aug 30, 2023 1:12:45 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:25:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [3/480] Analyzing https://github.com/siqirua/ip.git (master)... -Aug 30, 2023 1:12:45 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:25:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/siqirua/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:25:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/siqirua/ip.git (master)... -Aug 30, 2023 1:12:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/CJ-Lee01/ip.git (master)... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ph-nathan/ip.git completed! -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/butteredyakiimo/ip.git completed! +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/tanteckfang/ip.git completed! -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/RB9823/ip.git... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/TyrusLye/ip.git... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TyrusLye/ip.git to complete... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RB9823/ip.git to complete... -Aug 30, 2023 1:12:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/CJ-Lee01/ip.git (master)... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yuxunn/ip.git completed! -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/butteredyakiimo/ip.git completed! -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ph-nathan/ip.git completed! +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RB9823/ip.git to complete... +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/cxo05/ip.git... -Aug 30, 2023 1:12:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/CJ-Lee01/ip.git (master) completed! -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/shyanyong/ip.git... -Aug 30, 2023 1:12:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [4/480] Analyzing https://github.com/thaddeusong/ip.git (master)... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TyrusLye/ip.git to complete... +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/cxo05/ip.git to complete... -Aug 30, 2023 1:12:45 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:46 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/shyanyong/ip.git to complete... -Aug 30, 2023 1:12:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/thaddeusong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/thaddeusong/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/siqirua/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/siqirua/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/siqirua/ip.git (master) completed! -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [5/480] Analyzing https://github.com/ph-nathan/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ph-nathan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ph-nathan/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/thaddeusong/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/RB9823/ip.git completed! -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/howenc/ip.git... -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cxo05/ip.git completed! +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/TyrusLye/ip.git completed! -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kurtyjlee/ip.git... -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/howenc/ip.git to complete... -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kurtyjlee/ip.git to complete... -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/shyanyong/ip.git completed! -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cxo05/ip.git completed! -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/howenc/ip.git... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kurtyjlee/ip.git... +Aug 30, 2023 1:25:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/thaddeusong/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/josepholim/ip.git... -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kurtyjlee/ip.git to complete... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/howenc/ip.git to complete... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/josepholim/ip.git to complete... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/geoffong11/ip.git... -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/geoffong11/ip.git to complete... -Aug 30, 2023 1:12:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/josepholim/ip.git to complete... -Aug 30, 2023 1:12:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ph-nathan/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/thaddeusong/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ph-nathan/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/thaddeusong/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ph-nathan/ip.git (master) completed! -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [6/480] Analyzing https://github.com/tanteckfang/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:25:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/siqirua/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/thaddeusong/ip.git (master) completed! -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [7/480] Analyzing https://github.com/yuxunn/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanteckfang/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanteckfang/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yuxunn/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yuxunn/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yuxunn/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yuxunn/ip.git (master)... -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yuxunn/ip.git (master) completed! -Aug 30, 2023 1:12:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [8/480] Analyzing https://github.com/butteredyakiimo/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [4/480] Analyzing https://github.com/CJ-Lee01/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/siqirua/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/siqirua/ip.git (master) completed! +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [5/480] Analyzing https://github.com/butteredyakiimo/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/CJ-Lee01/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/CJ-Lee01/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/butteredyakiimo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:25:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/butteredyakiimo/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanteckfang/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanteckfang/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanteckfang/ip.git (master) completed! -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [9/480] Analyzing https://github.com/RB9823/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/howenc/ip.git completed! -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jianrong7/ip.git... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jianrong7/ip.git to complete... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/josepholim/ip.git completed! -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kurtyjlee/ip.git completed! -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/A1WAYSD/ip.git... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/RB9823/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/RB9823/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/geoffong11/ip.git completed! -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kurtyjlee/ip.git completed! +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/NgChunMan/ip.git... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jianrong7/ip.git to complete... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NgChunMan/ip.git to complete... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/limjunxian1/ip.git... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/A1WAYSD/ip.git to complete... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/geoffong11/ip.git completed! +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/limjunxian1/ip.git... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NgChunMan/ip.git to complete... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/limjunxian1/ip.git to complete... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:25:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/CJ-Lee01/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jianrong7/ip.git completed! +Aug 30, 2023 1:25:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/butteredyakiimo/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jack1e0/ip.git... +Aug 30, 2023 1:25:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/CJ-Lee01/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/CJ-Lee01/ip.git (master) completed! +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jack1e0/ip.git to complete... +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [6/480] Analyzing https://github.com/tanteckfang/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/butteredyakiimo/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/butteredyakiimo/ip.git (master) completed! -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [10/480] Analyzing https://github.com/TyrusLye/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/TyrusLye/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/TyrusLye/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RB9823/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RB9823/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RB9823/ip.git (master) completed! -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [11/480] Analyzing https://github.com/shyanyong/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shyanyong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shyanyong/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/TyrusLye/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/TyrusLye/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/TyrusLye/ip.git (master) completed! -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [12/480] Analyzing https://github.com/cxo05/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cxo05/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cxo05/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shyanyong/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [7/480] Analyzing https://github.com/ph-nathan/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanteckfang/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanteckfang/ip.git (master)... +Aug 30, 2023 1:25:47 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/NgChunMan/ip.git completed! -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jack1e0/ip.git... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/limjunxian1/ip.git completed! -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jack1e0/ip.git to complete... -Aug 30, 2023 1:12:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shyanyong/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shyanyong/ip.git (master) completed! -Aug 30, 2023 1:12:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [13/480] Analyzing https://github.com/howenc/ip.git (master)... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hjoneweek/ip.git... -Aug 30, 2023 1:12:47 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/A1WAYSD/ip.git completed! -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dishenggg/ip.git... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hjoneweek/ip.git... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/hjoneweek/ip.git to complete... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dishenggg/ip.git to complete... -Aug 30, 2023 1:12:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/howenc/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/howenc/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jianrong7/ip.git completed! -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ph-nathan/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ph-nathan/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/limjunxian1/ip.git completed! +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dishenggg/ip.git... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zhyuhan/ip.git... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dishenggg/ip.git to complete... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zhyuhan/ip.git to complete... -Aug 30, 2023 1:12:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cxo05/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cxo05/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cxo05/ip.git (master) completed! -Aug 30, 2023 1:12:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [14/480] Analyzing https://github.com/josepholim/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/josepholim/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/josepholim/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/howenc/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/howenc/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/howenc/ip.git (master) completed! -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dishenggg/ip.git completed! -Aug 30, 2023 1:12:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [15/480] Analyzing https://github.com/Kurtyjlee/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ph-nathan/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jack1e0/ip.git completed! -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanteckfang/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ph-nathan/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ph-nathan/ip.git (master) completed! +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [8/480] Analyzing https://github.com/yuxunn/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Dioclei/ip.git... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Daphne789/ip.git... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanteckfang/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanteckfang/ip.git (master) completed! +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [9/480] Analyzing https://github.com/RB9823/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Dioclei/ip.git to complete... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dishenggg/ip.git completed! +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/hjoneweek/ip.git completed! -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yuxunn/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yuxunn/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Daphne789/ip.git... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/WinstonLeonard/ip.git... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Daphne789/ip.git to complete... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Dioclei/ip.git to complete... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/WinstonLeonard/ip.git to complete... -Aug 30, 2023 1:12:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Kurtyjlee/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Kurtyjlee/ip.git (master)... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zhyuhan/ip.git completed! -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Daphne789/ip.git to complete... +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/RB9823/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/RB9823/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/peiran18/ip.git... -Aug 30, 2023 1:12:48 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/WinstonLeonard/ip.git to complete... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/peiran18/ip.git to complete... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kurtyjlee/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kurtyjlee/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kurtyjlee/ip.git (master) completed! -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [16/480] Analyzing https://github.com/geoffong11/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/geoffong11/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/geoffong11/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/josepholim/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/josepholim/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/josepholim/ip.git (master) completed! -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [17/480] Analyzing https://github.com/NgChunMan/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/NgChunMan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/NgChunMan/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yuxunn/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yuxunn/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yuxunn/ip.git (master) completed! +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [10/480] Analyzing https://github.com/shyanyong/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RB9823/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Dioclei/ip.git completed! -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shyanyong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shyanyong/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RB9823/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RB9823/ip.git (master) completed! +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [11/480] Analyzing https://github.com/TyrusLye/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AriellaCallista/ip.git... -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Daphne789/ip.git completed! -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/WinstonLeonard/ip.git completed! -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/peiran18/ip.git completed! -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AriellaCallista/ip.git to complete... -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/peiran18/ip.git completed! +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/migfoo02/ip.git... -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Daphne789/ip.git completed! +Aug 30, 2023 1:25:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/TyrusLye/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/TyrusLye/ip.git (master)... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Jonyxzx/ip.git... -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SynapseProgramming/ip.git... -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SynapseProgramming/ip.git to complete... -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/migfoo02/ip.git to complete... -Aug 30, 2023 1:12:49 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SynapseProgramming/ip.git... +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Jonyxzx/ip.git to complete... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/geoffong11/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/geoffong11/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/geoffong11/ip.git (master) completed! -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [18/480] Analyzing https://github.com/limjunxian1/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/limjunxian1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/limjunxian1/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/NgChunMan/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/NgChunMan/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/NgChunMan/ip.git (master) completed! -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [19/480] Analyzing https://github.com/A1WAYSD/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/A1WAYSD/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/A1WAYSD/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/limjunxian1/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/limjunxian1/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/limjunxian1/ip.git (master) completed! -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [20/480] Analyzing https://github.com/jianrong7/ip.git (master)... -Aug 30, 2023 1:12:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jianrong7/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jianrong7/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/A1WAYSD/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/A1WAYSD/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/A1WAYSD/ip.git (master) completed! -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [21/480] Analyzing https://github.com/dishenggg/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SynapseProgramming/ip.git completed! -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Darren159/ip.git... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Darren159/ip.git to complete... -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dishenggg/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dishenggg/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:48 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SynapseProgramming/ip.git to complete... +Aug 30, 2023 1:25:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/TyrusLye/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shyanyong/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/TyrusLye/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/TyrusLye/ip.git (master) completed! +Aug 30, 2023 1:25:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shyanyong/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shyanyong/ip.git (master) completed! +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [12/480] Analyzing https://github.com/cxo05/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [13/480] Analyzing https://github.com/howenc/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AriellaCallista/ip.git completed! -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cxo05/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cxo05/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/howenc/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/howenc/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/migfoo02/ip.git completed! -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jonyxzx/ip.git completed! -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Darren159/ip.git... +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/imkwokyong/ip.git... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jonyxzx/ip.git completed! +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/imkwokyong/ip.git to complete... +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Darren159/ip.git to complete... +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SynapseProgramming/ip.git completed! +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/joeng03/ip.git... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/joeng03/ip.git to complete... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/imkwokyong/ip.git to complete... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/vijay-shankaranand/ip.git... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/vijay-shankaranand/ip.git to complete... -Aug 30, 2023 1:12:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jianrong7/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dishenggg/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jianrong7/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jianrong7/ip.git (master) completed! -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [22/480] Analyzing https://github.com/jack1e0/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dishenggg/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dishenggg/ip.git (master) completed! -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jack1e0/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jack1e0/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [23/480] Analyzing https://github.com/hjoneweek/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hjoneweek/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hjoneweek/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hjoneweek/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hjoneweek/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hjoneweek/ip.git (master) completed! -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [24/480] Analyzing https://github.com/zhyuhan/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zhyuhan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zhyuhan/ip.git (master)... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Darren159/ip.git completed! -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/SelwynAng/ip.git... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/joeng03/ip.git completed! -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/SelwynAng/ip.git to complete... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vijay-shankaranand/ip.git completed! -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/imkwokyong/ip.git completed! +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jeffrey-jian/ip.git... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/joeng03/ip.git completed! +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jeffrey-jian/ip.git to complete... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tanyyyming/ip.git... -Aug 30, 2023 1:12:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/imkwokyong/ip.git completed! -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tanyyyming/ip.git to complete... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vijay-shankaranand/ip.git completed! +Aug 30, 2023 1:25:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cxo05/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/JCSnap/ip.git... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/JCSnap/ip.git to complete... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhyuhan/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jack1e0/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jack1e0/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jack1e0/ip.git (master) completed! -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [25/480] Analyzing https://github.com/Dioclei/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhyuhan/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhyuhan/ip.git (master) completed! -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [26/480] Analyzing https://github.com/peiran18/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Dioclei/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Dioclei/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/peiran18/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/peiran18/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/peiran18/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/peiran18/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/peiran18/ip.git (master) completed! -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [27/480] Analyzing https://github.com/WinstonLeonard/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Dioclei/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Dioclei/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Dioclei/ip.git (master) completed! -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [28/480] Analyzing https://github.com/Daphne789/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/WinstonLeonard/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/WinstonLeonard/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Daphne789/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Daphne789/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/WinstonLeonard/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/WinstonLeonard/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/WinstonLeonard/ip.git (master) completed! -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [29/480] Analyzing https://github.com/SynapseProgramming/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SynapseProgramming/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SynapseProgramming/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cxo05/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/howenc/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cxo05/ip.git (master) completed! +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [14/480] Analyzing https://github.com/josepholim/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/howenc/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/howenc/ip.git (master) completed! +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [15/480] Analyzing https://github.com/Kurtyjlee/ip.git (master)... +Aug 30, 2023 1:25:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/josepholim/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/josepholim/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/SelwynAng/ip.git completed! -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AprupKale/ip.git... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AprupKale/ip.git to complete... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Kurtyjlee/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Kurtyjlee/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/tanyyyming/ip.git completed! -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AprupKale/ip.git to complete... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/woojiahao/ip.git... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jeffrey-jian/ip.git completed! -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/woojiahao/ip.git to complete... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/PetrichorPrecipice/ip.git... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/woojiahao/ip.git to complete... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PetrichorPrecipice/ip.git to complete... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/JCSnap/ip.git completed! -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/syamfarh/ip.git... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PetrichorPrecipice/ip.git to complete... -Aug 30, 2023 1:12:51 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/syamfarh/ip.git to complete... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SynapseProgramming/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SynapseProgramming/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SynapseProgramming/ip.git (master) completed! -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [30/480] Analyzing https://github.com/AriellaCallista/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Daphne789/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AriellaCallista/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AriellaCallista/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Daphne789/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Daphne789/ip.git (master) completed! -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [31/480] Analyzing https://github.com/migfoo02/ip.git (master)... -Aug 30, 2023 1:12:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/migfoo02/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/migfoo02/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AriellaCallista/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AriellaCallista/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AriellaCallista/ip.git (master) completed! -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [32/480] Analyzing https://github.com/Jonyxzx/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/migfoo02/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/migfoo02/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/migfoo02/ip.git (master) completed! -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [33/480] Analyzing https://github.com/Darren159/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Jonyxzx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Jonyxzx/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Darren159/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Darren159/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kurtyjlee/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kurtyjlee/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kurtyjlee/ip.git (master) completed! +Aug 30, 2023 1:25:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [16/480] Analyzing https://github.com/geoffong11/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/geoffong11/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/geoffong11/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AprupKale/ip.git completed! -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/D-Limiter/ip.git... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/D-Limiter/ip.git to complete... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Darren159/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Darren159/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Darren159/ip.git (master) completed! -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [34/480] Analyzing https://github.com/joeng03/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PetrichorPrecipice/ip.git completed! +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/woojiahao/ip.git completed! -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/D-Limiter/ip.git to complete... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/coderhuang559/ip.git... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/joeng03/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/joeng03/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LINCHENYU2030S/ip.git... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/coderhuang559/ip.git to complete... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LINCHENYU2030S/ip.git to complete... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/syamfarh/ip.git completed! -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PetrichorPrecipice/ip.git completed! -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LINCHENYU2030S/ip.git... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/pra-navi/ip.git... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/pra-navi/ip.git to complete... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LINCHENYU2030S/ip.git to complete... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jonyxzx/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/joeng03/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Jonyxzx/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/joeng03/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/joeng03/ip.git (master) completed! -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [35/480] Analyzing https://github.com/vijay-shankaranand/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Jonyxzx/ip.git (master) completed! -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [36/480] Analyzing https://github.com/imkwokyong/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/vijay-shankaranand/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/vijay-shankaranand/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/imkwokyong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/imkwokyong/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/vijay-shankaranand/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/vijay-shankaranand/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/vijay-shankaranand/ip.git (master) completed! -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [37/480] Analyzing https://github.com/SelwynAng/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/D-Limiter/ip.git completed! -Aug 30, 2023 1:12:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SelwynAng/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SelwynAng/ip.git (master)... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/josepholim/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/josepholim/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/josepholim/ip.git (master) completed! +Aug 30, 2023 1:25:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [17/480] Analyzing https://github.com/jianrong7/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jianrong7/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jianrong7/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LINCHENYU2030S/ip.git completed! +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/phiphi-tan/ip.git... -Aug 30, 2023 1:12:52 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/phiphi-tan/ip.git to complete... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/coderhuang559/ip.git completed! -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/D-Limiter/ip.git completed! +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ktzy0305/ip.git... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/coderhuang559/ip.git completed! +Aug 30, 2023 1:25:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/geoffong11/ip.git (master)... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LordSaumya/ip.git... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ktzy0305/ip.git to complete... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LordSaumya/ip.git to complete... +Aug 30, 2023 1:25:50 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/pra-navi/ip.git completed! -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LINCHENYU2030S/ip.git completed! -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LordSaumya/ip.git... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Chen1x/ip.git... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LordSaumya/ip.git to complete... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/geoffong11/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/geoffong11/ip.git (master) completed! +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [18/480] Analyzing https://github.com/NgChunMan/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Chen1x/ip.git to complete... -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/imkwokyong/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/imkwokyong/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/imkwokyong/ip.git (master) completed! -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [38/480] Analyzing https://github.com/tanyyyming/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanyyyming/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanyyyming/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/SelwynAng/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/SelwynAng/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/SelwynAng/ip.git (master) completed! -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [39/480] Analyzing https://github.com/jeffrey-jian/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jeffrey-jian/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jeffrey-jian/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/NgChunMan/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/NgChunMan/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jianrong7/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jianrong7/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/phiphi-tan/ip.git completed! -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yanghengtang/ip.git... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yanghengtang/ip.git to complete... -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanyyyming/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ktzy0305/ip.git completed! -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jianrong7/ip.git (master) completed! +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [19/480] Analyzing https://github.com/A1WAYSD/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yanghengtang/ip.git... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/johnnythesnake12/ip.git... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yanghengtang/ip.git to complete... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/johnnythesnake12/ip.git to complete... -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanyyyming/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanyyyming/ip.git (master) completed! -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [40/480] Analyzing https://github.com/JCSnap/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JCSnap/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JCSnap/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jeffrey-jian/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Chen1x/ip.git completed! -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/A1WAYSD/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/A1WAYSD/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/LordSaumya/ip.git completed! -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jeffrey-jian/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jeffrey-jian/ip.git (master) completed! -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator analyzeRepos -INFO: [41/480] Analyzing https://github.com/AprupKale/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/oeggy03/ip.git... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/p-xp/ip.git... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/oeggy03/ip.git to complete... -Aug 30, 2023 1:12:53 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Chen1x/ip.git completed! +Aug 30, 2023 1:25:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/NgChunMan/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/p-xp/ip.git... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/p-xp/ip.git to complete... -Aug 30, 2023 1:12:53 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AprupKale/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AprupKale/ip.git (master)... -Aug 30, 2023 1:12:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JCSnap/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JCSnap/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JCSnap/ip.git (master) completed! -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [42/480] Analyzing https://github.com/woojiahao/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/woojiahao/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/woojiahao/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AprupKale/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AprupKale/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AprupKale/ip.git (master) completed! -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [43/480] Analyzing https://github.com/PetrichorPrecipice/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/PetrichorPrecipice/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/PetrichorPrecipice/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/NgChunMan/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/NgChunMan/ip.git (master) completed! +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [20/480] Analyzing https://github.com/limjunxian1/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/limjunxian1/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/limjunxian1/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/A1WAYSD/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/johnnythesnake12/ip.git completed! -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/matochichap/ip.git... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/matochichap/ip.git to complete... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/oeggy03/ip.git completed! +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yanghengtang/ip.git completed! -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/A1WAYSD/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/A1WAYSD/ip.git (master) completed! +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [21/480] Analyzing https://github.com/jack1e0/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/matochichap/ip.git... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/applepiofmyeye/ip.git... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TiwKangXu/ip.git... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/applepiofmyeye/ip.git to complete... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TiwKangXu/ip.git to complete... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/matochichap/ip.git to complete... +Aug 30, 2023 1:25:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jack1e0/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jack1e0/ip.git (master)... +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/p-xp/ip.git completed! -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/oeggy03/ip.git completed! -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TiwKangXu/ip.git... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/ScarletBlanks/ip.git... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TiwKangXu/ip.git to complete... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:51 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/ScarletBlanks/ip.git to complete... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/PetrichorPrecipice/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/woojiahao/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/PetrichorPrecipice/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/PetrichorPrecipice/ip.git (master) completed! -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [44/480] Analyzing https://github.com/syamfarh/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/woojiahao/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/woojiahao/ip.git (master) completed! -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [45/480] Analyzing https://github.com/D-Limiter/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/syamfarh/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/syamfarh/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/D-Limiter/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/D-Limiter/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/D-Limiter/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/D-Limiter/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/D-Limiter/ip.git (master) completed! -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [46/480] Analyzing https://github.com/coderhuang559/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/matochichap/ip.git completed! -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/coderhuang559/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/coderhuang559/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chiayunrong/ip.git... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/syamfarh/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chiayunrong/ip.git to complete... -Aug 30, 2023 1:12:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/syamfarh/ip.git (master)... -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/syamfarh/ip.git (master) completed! -Aug 30, 2023 1:12:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [47/480] Analyzing https://github.com/pra-navi/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/pra-navi/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/pra-navi/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/limjunxian1/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/limjunxian1/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/limjunxian1/ip.git (master) completed! +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [22/480] Analyzing https://github.com/dishenggg/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dishenggg/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dishenggg/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/applepiofmyeye/ip.git completed! -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/devanshubisht/ip.git... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/ScarletBlanks/ip.git completed! -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/devanshubisht/ip.git to complete... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jx124/ip.git... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jx124/ip.git to complete... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/TiwKangXu/ip.git completed! -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chiayunrong/ip.git... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dishenggg/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/devanshubisht/ip.git... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/matochichap/ip.git completed! +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chiayunrong/ip.git to complete... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jx124/ip.git... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dishenggg/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dishenggg/ip.git (master) completed! +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [23/480] Analyzing https://github.com/hjoneweek/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/Clin-lyx/ip.git... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/devanshubisht/ip.git to complete... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/Clin-lyx/ip.git to complete... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/coderhuang559/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/coderhuang559/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/coderhuang559/ip.git (master) completed! -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [48/480] Analyzing https://github.com/LINCHENYU2030S/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LINCHENYU2030S/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LINCHENYU2030S/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/pra-navi/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/pra-navi/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/pra-navi/ip.git (master) completed! -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [49/480] Analyzing https://github.com/phiphi-tan/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/phiphi-tan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/phiphi-tan/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LINCHENYU2030S/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LINCHENYU2030S/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LINCHENYU2030S/ip.git (master) completed! -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [50/480] Analyzing https://github.com/ktzy0305/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ktzy0305/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ktzy0305/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/phiphi-tan/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chiayunrong/ip.git completed! -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AryanG01/ip.git... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/phiphi-tan/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/phiphi-tan/ip.git (master) completed! -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [51/480] Analyzing https://github.com/LordSaumya/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AryanG01/ip.git to complete... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LordSaumya/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LordSaumya/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jx124/ip.git to complete... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hjoneweek/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hjoneweek/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jack1e0/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jack1e0/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jack1e0/ip.git (master) completed! +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [24/480] Analyzing https://github.com/zhyuhan/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zhyuhan/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zhyuhan/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hjoneweek/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hjoneweek/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hjoneweek/ip.git (master) completed! +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [25/480] Analyzing https://github.com/Dioclei/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Dioclei/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Dioclei/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chiayunrong/ip.git completed! +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/devanshubisht/ip.git completed! -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kayabuttertoastt/ip.git... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kayabuttertoastt/ip.git to complete... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jx124/ip.git completed! -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AryanG01/ip.git... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/Clin-lyx/ip.git completed! -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kayabuttertoastt/ip.git... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AryanG01/ip.git to complete... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/sheryew/ip.git... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kayabuttertoastt/ip.git to complete... +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/jonasongg/ip.git... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LordSaumya/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/sheryew/ip.git to complete... -Aug 30, 2023 1:12:55 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/jonasongg/ip.git to complete... -Aug 30, 2023 1:12:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LordSaumya/ip.git (master)... -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LordSaumya/ip.git (master) completed! -Aug 30, 2023 1:12:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [52/480] Analyzing https://github.com/Chen1x/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ktzy0305/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Chen1x/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Chen1x/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ktzy0305/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ktzy0305/ip.git (master) completed! -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [53/480] Analyzing https://github.com/johnnythesnake12/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Chen1x/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/johnnythesnake12/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/johnnythesnake12/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Chen1x/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Chen1x/ip.git (master) completed! -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [54/480] Analyzing https://github.com/yanghengtang/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yanghengtang/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yanghengtang/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhyuhan/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhyuhan/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhyuhan/ip.git (master) completed! +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [26/480] Analyzing https://github.com/peiran18/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Dioclei/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/peiran18/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/peiran18/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Dioclei/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Dioclei/ip.git (master) completed! +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator analyzeRepos +INFO: [27/480] Analyzing https://github.com/Daphne789/ip.git (master)... +Aug 30, 2023 1:25:52 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Daphne789/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Daphne789/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AryanG01/ip.git completed! -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/yiwen101/ip.git... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yiwen101/ip.git to complete... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/johnnythesnake12/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/johnnythesnake12/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/johnnythesnake12/ip.git (master) completed! -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [55/480] Analyzing https://github.com/p-xp/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/p-xp/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/p-xp/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sheryew/ip.git completed! +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kayabuttertoastt/ip.git completed! -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yiwen101/ip.git to complete... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/tiongMax/ip.git... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chuababyy/ip.git... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chuababyy/ip.git to complete... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/tiongMax/ip.git to complete... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yanghengtang/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/p-xp/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sheryew/ip.git completed! -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yanghengtang/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yanghengtang/ip.git (master) completed! -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [56/480] Analyzing https://github.com/oeggy03/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/peiran18/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/peiran18/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/peiran18/ip.git (master) completed! +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [28/480] Analyzing https://github.com/WinstonLeonard/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/WinstonLeonard/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/WinstonLeonard/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/jonasongg/ip.git completed! -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chuababyy/ip.git... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/p-xp/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/p-xp/ip.git (master) completed! -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [57/480] Analyzing https://github.com/matochichap/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/supermii2/ip.git... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chuababyy/ip.git to complete... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/supermii2/ip.git to complete... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/oeggy03/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/oeggy03/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/matochichap/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/matochichap/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/oeggy03/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/oeggy03/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/oeggy03/ip.git (master) completed! -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [58/480] Analyzing https://github.com/applepiofmyeye/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/yiwen101/ip.git completed! -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/remuslum/ip.git... -Aug 30, 2023 1:12:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/applepiofmyeye/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/applepiofmyeye/ip.git (master)... -Aug 30, 2023 1:12:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/remuslum/ip.git to complete... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chuababyy/ip.git completed! +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/tiongMax/ip.git completed! -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/remuslum/ip.git to complete... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/kanna-1/ip.git... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/kanna-1/ip.git to complete... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/applepiofmyeye/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/applepiofmyeye/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/applepiofmyeye/ip.git (master) completed! -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [59/480] Analyzing https://github.com/ScarletBlanks/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ScarletBlanks/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ScarletBlanks/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/matochichap/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/matochichap/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/matochichap/ip.git (master) completed! -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [60/480] Analyzing https://github.com/TiwKangXu/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/TiwKangXu/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/TiwKangXu/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chuababyy/ip.git completed! -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/supermii2/ip.git completed! -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/nicolengk/ip.git... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Daphne789/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/nicolengk/ip.git to complete... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/WinstonLeonard/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Daphne789/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Daphne789/ip.git (master) completed! +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/WinstonLeonard/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/WinstonLeonard/ip.git (master) completed! +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [30/480] Analyzing https://github.com/migfoo02/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [29/480] Analyzing https://github.com/AriellaCallista/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/migfoo02/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/migfoo02/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AriellaCallista/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AriellaCallista/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/supermii2/ip.git completed! +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/newway1814/ip.git... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/newway1814/ip.git to complete... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ScarletBlanks/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ScarletBlanks/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AriellaCallista/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AriellaCallista/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AriellaCallista/ip.git (master) completed! +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [31/480] Analyzing https://github.com/Jonyxzx/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/remuslum/ip.git completed! -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ScarletBlanks/ip.git (master) completed! -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [61/480] Analyzing https://github.com/chiayunrong/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/glenngnng/ip.git... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/glenngnng/ip.git to complete... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chiayunrong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chiayunrong/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/TiwKangXu/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/TiwKangXu/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/TiwKangXu/ip.git (master) completed! -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [62/480] Analyzing https://github.com/devanshubisht/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/devanshubisht/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/devanshubisht/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/migfoo02/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/kanna-1/ip.git completed! -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Jonyxzx/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Jonyxzx/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/glenngnng/ip.git... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zsh-eng/ip.git... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zsh-eng/ip.git to complete... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chiayunrong/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/devanshubisht/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/newway1814/ip.git completed! -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicolengk/ip.git completed! +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/glenngnng/ip.git to complete... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/mingyuanc/ip.git... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/migfoo02/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/migfoo02/ip.git (master) completed! +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator analyzeRepos +INFO: [32/480] Analyzing https://github.com/SynapseProgramming/ip.git (master)... +Aug 30, 2023 1:25:53 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/mingyuanc/ip.git to complete... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chiayunrong/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/devanshubisht/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/devanshubisht/ip.git (master) completed! -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chiayunrong/ip.git (master) completed! -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [63/480] Analyzing https://github.com/jx124/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [64/480] Analyzing https://github.com/Clin-lyx/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicolengk/ip.git completed! -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:53 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SynapseProgramming/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SynapseProgramming/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/newway1814/ip.git completed! +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/LamJiuFong/ip.git... -Aug 30, 2023 1:12:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Clin-lyx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Clin-lyx/ip.git (master)... -Aug 30, 2023 1:12:57 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SynapseProgramming/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/LamJiuFong/ip.git to complete... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jx124/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jx124/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SynapseProgramming/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SynapseProgramming/ip.git (master) completed! +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [33/480] Analyzing https://github.com/Darren159/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mingyuanc/ip.git completed! +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/glenngnng/ip.git completed! -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GlendaChong/ip.git... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GlendaChong/ip.git to complete... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Clin-lyx/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jx124/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Clin-lyx/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Clin-lyx/ip.git (master) completed! -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [65/480] Analyzing https://github.com/AryanG01/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jx124/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jx124/ip.git (master) completed! -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [66/480] Analyzing https://github.com/kayabuttertoastt/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AryanG01/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AryanG01/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kayabuttertoastt/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kayabuttertoastt/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/zsh-eng/ip.git completed! -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GlendaChong/ip.git... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/starrylight99/ip.git... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AryanG01/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/starrylight99/ip.git to complete... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AryanG01/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AryanG01/ip.git (master) completed! -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [67/480] Analyzing https://github.com/sheryew/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/kayabuttertoastt/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/kayabuttertoastt/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kayabuttertoastt/ip.git (master) completed! -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [68/480] Analyzing https://github.com/jonasongg/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sheryew/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sheryew/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jonasongg/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jonasongg/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mingyuanc/ip.git completed! -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/AustinHuang1203/ip.git... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LamJiuFong/ip.git completed! -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GlendaChong/ip.git to complete... +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Darren159/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Darren159/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/AustinHuang1203/ip.git to complete... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GlendaChong/ip.git completed! -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/starrylight99/ip.git to complete... +Aug 30, 2023 1:25:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jonyxzx/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Jonyxzx/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Jonyxzx/ip.git (master) completed! +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [34/480] Analyzing https://github.com/imkwokyong/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/imkwokyong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/imkwokyong/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Darren159/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LamJiuFong/ip.git completed! +Aug 30, 2023 1:25:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Darren159/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Darren159/ip.git (master) completed! +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [35/480] Analyzing https://github.com/joeng03/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/seewhyjay/ip.git... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ruth-lim/ip.git... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/seewhyjay/ip.git to complete... -Aug 30, 2023 1:12:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ruth-lim/ip.git to complete... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sheryew/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sheryew/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sheryew/ip.git (master) completed! -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [69/480] Analyzing https://github.com/yiwen101/ip.git (master)... -Aug 30, 2023 1:12:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yiwen101/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yiwen101/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/starrylight99/ip.git completed! -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/limzhenwy/ip.git... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/limzhenwy/ip.git to complete... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jonasongg/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jonasongg/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jonasongg/ip.git (master) completed! -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [70/480] Analyzing https://github.com/tiongMax/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tiongMax/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tiongMax/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yiwen101/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yiwen101/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yiwen101/ip.git (master) completed! -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [71/480] Analyzing https://github.com/chuababyy/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tiongMax/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/chuababyy/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/chuababyy/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tiongMax/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tiongMax/ip.git (master) completed! -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [72/480] Analyzing https://github.com/supermii2/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/supermii2/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/supermii2/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/joeng03/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/joeng03/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GlendaChong/ip.git completed! +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/AustinHuang1203/ip.git completed! -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ruth-lim/ip.git... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ruth-lim/ip.git to complete... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/limzhenwy/ip.git... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/xCOLOURx/ip.git... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/chuababyy/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/xCOLOURx/ip.git to complete... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/chuababyy/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/chuababyy/ip.git (master) completed! -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [73/480] Analyzing https://github.com/remuslum/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/limzhenwy/ip.git to complete... +Aug 30, 2023 1:25:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/joeng03/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/joeng03/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/joeng03/ip.git (master) completed! +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator analyzeRepos +INFO: [36/480] Analyzing https://github.com/vijay-shankaranand/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/vijay-shankaranand/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/vijay-shankaranand/ip.git (master)... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/seewhyjay/ip.git completed! -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ruth-lim/ip.git completed! -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/zacwong2151/ip.git... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/remuslum/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/remuslum/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Zjinnnn/ip.git... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/zacwong2151/ip.git to complete... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Zjinnnn/ip.git to complete... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess INFO: Cloning of https://github.com/limzhenwy/ip.git completed! -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner spawnCloneProcess +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Zjinnnn/ip.git... +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xCOLOURx/ip.git completed! +Aug 30, 2023 1:25:54 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Zjinnnn/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess INFO: Cloning in parallel from https://github.com/awhb/ip.git... -Aug 30, 2023 1:12:59 AM reposense.report.RepoCloner waitForCloneProcess +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ruth-lim/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/teoks0199/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess INFO: Waiting for cloning of https://github.com/awhb/ip.git to complete... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/supermii2/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/teoks0199/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/imkwokyong/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/imkwokyong/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/imkwokyong/ip.git (master) completed! +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [37/480] Analyzing https://github.com/SelwynAng/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SelwynAng/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SelwynAng/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/vijay-shankaranand/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/vijay-shankaranand/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/vijay-shankaranand/ip.git (master) completed! +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [38/480] Analyzing https://github.com/tanyyyming/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanyyyming/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanyyyming/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zacwong2151/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Zjinnnn/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/awhb/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/teoks0199/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/qz1004/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/pangyyen/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Mahidharah/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jason-raiin/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Mahidharah/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/pangyyen/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/qz1004/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jason-raiin/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanyyyming/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanyyyming/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanyyyming/ip.git (master) completed! +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [39/480] Analyzing https://github.com/jeffrey-jian/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/SelwynAng/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jeffrey-jian/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jeffrey-jian/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/SelwynAng/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/SelwynAng/ip.git (master) completed! +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepos +INFO: [40/480] Analyzing https://github.com/JCSnap/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JCSnap/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JCSnap/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Mahidharah/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/qz1004/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jason-raiin/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ravern/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/pangyyen/ip.git completed! +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bobscodedump/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nixonwidjaja/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ravern/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nixonwidjaja/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bobscodedump/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/techjay-c/ip.git... +Aug 30, 2023 1:25:55 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/techjay-c/ip.git to complete... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JCSnap/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JCSnap/ip.git (master)... +Aug 30, 2023 1:25:55 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JCSnap/ip.git (master) completed! +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepos +INFO: [41/480] Analyzing https://github.com/AprupKale/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AprupKale/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AprupKale/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jeffrey-jian/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jeffrey-jian/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jeffrey-jian/ip.git (master) completed! +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepos +INFO: [42/480] Analyzing https://github.com/woojiahao/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/woojiahao/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/woojiahao/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ravern/ip.git completed! +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bobscodedump/ip.git completed! +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ryanozx/ip.git... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ryanozx/ip.git to complete... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LuahJunYang/ip.git... +Aug 30, 2023 1:25:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AprupKale/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LuahJunYang/ip.git to complete... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nixonwidjaja/ip.git completed! +Aug 30, 2023 1:25:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AprupKale/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AprupKale/ip.git (master) completed! +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/techjay-c/ip.git completed! +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepos +INFO: [43/480] Analyzing https://github.com/PetrichorPrecipice/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HEEaZ/ip.git... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/PetrichorPrecipice/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/PetrichorPrecipice/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dom-buri/ip.git... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dom-buri/ip.git to complete... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HEEaZ/ip.git to complete... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ryanozx/ip.git completed! +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HEEaZ/ip.git completed! +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LuahJunYang/ip.git completed! +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AlainS87/ip.git... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dom-buri/ip.git completed! +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AlainS87/ip.git to complete... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tiongjjyi/ip.git... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Vanessamae23/ip.git... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/fuyiqiao/ip.git... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Vanessamae23/ip.git to complete... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tiongjjyi/ip.git to complete... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/fuyiqiao/ip.git to complete... +Aug 30, 2023 1:25:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/woojiahao/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/PetrichorPrecipice/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/PetrichorPrecipice/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/woojiahao/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/PetrichorPrecipice/ip.git (master) completed! +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepos +INFO: [44/480] Analyzing https://github.com/syamfarh/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/woojiahao/ip.git (master) completed! +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator analyzeRepos +INFO: [45/480] Analyzing https://github.com/LINCHENYU2030S/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/syamfarh/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/syamfarh/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LINCHENYU2030S/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LINCHENYU2030S/ip.git (master)... +Aug 30, 2023 1:25:56 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Vanessamae23/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/spatuly/ip.git... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/fuyiqiao/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanshiyu1999/ip.git... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/spatuly/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AlainS87/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanshiyu1999/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kb-Tay/ip.git... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tiongjjyi/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kb-Tay/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/beatricecst/ip.git... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LINCHENYU2030S/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/beatricecst/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LINCHENYU2030S/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LINCHENYU2030S/ip.git (master) completed! +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepos +INFO: [46/480] Analyzing https://github.com/D-Limiter/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/D-Limiter/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/D-Limiter/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/syamfarh/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/syamfarh/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/syamfarh/ip.git (master) completed! +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepos +INFO: [47/480] Analyzing https://github.com/coderhuang559/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/coderhuang559/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/coderhuang559/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/D-Limiter/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/D-Limiter/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/D-Limiter/ip.git (master) completed! +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepos +INFO: [48/480] Analyzing https://github.com/pra-navi/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/spatuly/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanveersingh10/ip.git... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/pra-navi/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/pra-navi/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanveersingh10/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/coderhuang559/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/coderhuang559/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/coderhuang559/ip.git (master) completed! +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepos +INFO: [49/480] Analyzing https://github.com/phiphi-tan/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/phiphi-tan/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/phiphi-tan/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/beatricecst/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/thienmy0/ip.git... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanshiyu1999/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kb-Tay/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/thienmy0/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/s0ngyang/ip.git... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ldinghan/ip.git... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/s0ngyang/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanveersingh10/ip.git completed! +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ldinghan/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/feifeiraindrops/ip.git... +Aug 30, 2023 1:25:57 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/feifeiraindrops/ip.git to complete... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/phiphi-tan/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/phiphi-tan/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/phiphi-tan/ip.git (master) completed! +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepos +INFO: [50/480] Analyzing https://github.com/ktzy0305/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/pra-navi/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/pra-navi/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ktzy0305/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ktzy0305/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/pra-navi/ip.git (master) completed! +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator analyzeRepos +INFO: [51/480] Analyzing https://github.com/LordSaumya/ip.git (master)... +Aug 30, 2023 1:25:57 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LordSaumya/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LordSaumya/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LordSaumya/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/thienmy0/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ldinghan/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/s0ngyang/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ryanongwx/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kwangthiag/ip.git... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LordSaumya/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LordSaumya/ip.git (master) completed! +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepos +INFO: [52/480] Analyzing https://github.com/Chen1x/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/feifeiraindrops/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ryanongwx/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kwangthiag/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/elhy1999/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/songgthu/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/songgthu/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/elhy1999/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Chen1x/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Chen1x/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Chen1x/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ktzy0305/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Chen1x/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Chen1x/ip.git (master) completed! +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepos +INFO: [53/480] Analyzing https://github.com/johnnythesnake12/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ktzy0305/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ktzy0305/ip.git (master) completed! +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepos +INFO: [54/480] Analyzing https://github.com/oeggy03/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/johnnythesnake12/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/johnnythesnake12/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/oeggy03/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/oeggy03/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/johnnythesnake12/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kwangthiag/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ryanongwx/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GohTengFong/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/elhy1999/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/songgthu/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/johnnythesnake12/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/johnnythesnake12/ip.git (master) completed! +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepos +INFO: [55/480] Analyzing https://github.com/yanghengtang/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/simbayippy/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GohTengFong/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Khaleelur-Rahman/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/proto-aiken-13/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/simbayippy/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/oeggy03/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/proto-aiken-13/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Khaleelur-Rahman/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yanghengtang/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yanghengtang/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/oeggy03/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/oeggy03/ip.git (master) completed! +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepos +INFO: [56/480] Analyzing https://github.com/p-xp/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/p-xp/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/p-xp/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/p-xp/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/p-xp/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/p-xp/ip.git (master) completed! +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepos +INFO: [57/480] Analyzing https://github.com/ScarletBlanks/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ScarletBlanks/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ScarletBlanks/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GohTengFong/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/simbayippy/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bwangpj/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/weeweh/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bwangpj/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Khaleelur-Rahman/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/proto-aiken-13/ip.git completed! +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/weeweh/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yanghengtang/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/s-peiran/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jylow/ip.git... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/s-peiran/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jylow/ip.git to complete... +Aug 30, 2023 1:25:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yanghengtang/ip.git (master)... +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yanghengtang/ip.git (master) completed! +Aug 30, 2023 1:25:58 AM reposense.report.ReportGenerator analyzeRepos +INFO: [58/480] Analyzing https://github.com/applepiofmyeye/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/applepiofmyeye/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/applepiofmyeye/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ScarletBlanks/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ScarletBlanks/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ScarletBlanks/ip.git (master) completed! +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator analyzeRepos +INFO: [59/480] Analyzing https://github.com/TiwKangXu/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bwangpj/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/weeweh/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lawruixi/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/TiwKangXu/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/TiwKangXu/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JeremyYong128/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lawruixi/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JeremyYong128/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/applepiofmyeye/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/applepiofmyeye/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/applepiofmyeye/ip.git (master) completed! +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator analyzeRepos +INFO: [60/480] Analyzing https://github.com/matochichap/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jylow/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/brandon-nam/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/brandon-nam/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/matochichap/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/matochichap/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/s-peiran/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LHeng1/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JeremyYong128/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LHeng1/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lawruixi/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Leb14/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/B-enguin/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Leb14/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/B-enguin/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/brandon-nam/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/s-kybound/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/s-kybound/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/TiwKangXu/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/TiwKangXu/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/TiwKangXu/ip.git (master) completed! +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator analyzeRepos +INFO: [61/480] Analyzing https://github.com/chiayunrong/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chiayunrong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:25:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chiayunrong/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Leb14/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wesho1107/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wesho1107/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LHeng1/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yihfei/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/B-enguin/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AaronJT1/ip.git... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yihfei/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/s-kybound/ip.git completed! +Aug 30, 2023 1:25:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/matochichap/ip.git (master)... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AaronJT1/ip.git to complete... +Aug 30, 2023 1:25:59 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dlathyun/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dlathyun/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/matochichap/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/matochichap/ip.git (master) completed! +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepos +INFO: [62/480] Analyzing https://github.com/jx124/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jx124/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jx124/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jx124/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jx124/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jx124/ip.git (master) completed! +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepos +INFO: [63/480] Analyzing https://github.com/devanshubisht/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wesho1107/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ricketytoc/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/devanshubisht/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/devanshubisht/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ricketytoc/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yihfei/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Angelyxx/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Angelyxx/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chiayunrong/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chiayunrong/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chiayunrong/ip.git (master) completed! +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepos +INFO: [64/480] Analyzing https://github.com/Clin-lyx/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Clin-lyx/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Clin-lyx/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AaronJT1/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jingting1412/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jingting1412/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dlathyun/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SinhaVedant/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SinhaVedant/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ricketytoc/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Angelyxx/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/freddychenyouren2/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jordankanghm/ip.git... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/devanshubisht/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jordankanghm/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/freddychenyouren2/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/devanshubisht/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/devanshubisht/ip.git (master) completed! +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepos +INFO: [65/480] Analyzing https://github.com/AryanG01/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Clin-lyx/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Clin-lyx/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Clin-lyx/ip.git (master) completed! +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator analyzeRepos +INFO: [66/480] Analyzing https://github.com/sheryew/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AryanG01/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AryanG01/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sheryew/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sheryew/ip.git (master)... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jingting1412/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/adhigop13/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/adhigop13/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SinhaVedant/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/waseemingly/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/waseemingly/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jordankanghm/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/freddychenyouren2/ip.git completed! +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/raydenlim/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/raydenlim/ip.git to complete... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jingyu987/ip.git... +Aug 30, 2023 1:26:00 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jingyu987/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/adhigop13/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AryanG01/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/FerdiHS/ip.git... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/FerdiHS/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AryanG01/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AryanG01/ip.git (master) completed! +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepos +INFO: [67/480] Analyzing https://github.com/kayabuttertoastt/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kayabuttertoastt/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kayabuttertoastt/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sheryew/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sheryew/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sheryew/ip.git (master) completed! +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepos +INFO: [68/480] Analyzing https://github.com/jonasongg/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/waseemingly/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jrchoo/ip.git... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jrchoo/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jonasongg/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jonasongg/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/kayabuttertoastt/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/raydenlim/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RiyaMehta2211/ip.git... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/kayabuttertoastt/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RiyaMehta2211/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kayabuttertoastt/ip.git (master) completed! +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepos +INFO: [69/480] Analyzing https://github.com/yiwen101/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jingyu987/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/leezhanpeng/ip.git... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/leezhanpeng/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/FerdiHS/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yiwen101/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yiwen101/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/juzzztinsoong/ip.git... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/juzzztinsoong/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jrchoo/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RiyaMehta2211/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/darrentfy/ip.git... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/redtailedfox/ip.git... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/darrentfy/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/juzzztinsoong/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/redtailedfox/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Fallman2/ip.git... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Fallman2/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/leezhanpeng/ip.git completed! +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Heran9/ip.git... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jonasongg/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Heran9/ip.git to complete... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jonasongg/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jonasongg/ip.git (master) completed! +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepos +INFO: [70/480] Analyzing https://github.com/chuababyy/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/chuababyy/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/chuababyy/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yiwen101/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yiwen101/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yiwen101/ip.git (master) completed! +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator analyzeRepos +INFO: [71/480] Analyzing https://github.com/tiongMax/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tiongMax/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tiongMax/ip.git (master)... +Aug 30, 2023 1:26:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/chuababyy/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/chuababyy/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/chuababyy/ip.git (master) completed! +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [72/480] Analyzing https://github.com/supermii2/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/redtailedfox/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/VN-Hao/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/supermii2/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/supermii2/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/darrentfy/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/VN-Hao/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Fallman2/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jingjie88/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jingjie88/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/H1410101/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/H1410101/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tiongMax/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tiongMax/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tiongMax/ip.git (master) completed! +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [73/480] Analyzing https://github.com/remuslum/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/remuslum/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/remuslum/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Heran9/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kimshitong/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kimshitong/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/remuslum/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/supermii2/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/remuslum/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/remuslum/ip.git (master) completed! -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepos INFO: [74/480] Analyzing https://github.com/kanna-1/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/supermii2/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/supermii2/ip.git (master) completed! -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [75/480] Analyzing https://github.com/newway1814/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/newway1814/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/newway1814/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [75/480] Analyzing https://github.com/nicolengk/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nicolengk/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nicolengk/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jingjie88/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kanna-1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kanna-1/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/H1410101/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ivanleekk/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lamchenghou/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lamchenghou/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ivanleekk/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kimshitong/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/VN-Hao/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tayruxin/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/raynertjx/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tayruxin/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nicolengk/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/raynertjx/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nicolengk/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nicolengk/ip.git (master) completed! +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepos +INFO: [76/480] Analyzing https://github.com/newway1814/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/newway1814/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/newway1814/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kanna-1/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kanna-1/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kanna-1/ip.git (master) completed! -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [76/480] Analyzing https://github.com/nicolengk/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nicolengk/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:12:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nicolengk/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/newway1814/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/newway1814/ip.git (master)... -Aug 30, 2023 1:12:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/newway1814/ip.git (master) completed! -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator analyzeRepos INFO: [77/480] Analyzing https://github.com/glenngnng/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:02 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/glenngnng/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/glenngnng/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xCOLOURx/ip.git completed! -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zacwong2151/ip.git completed! -Aug 30, 2023 1:13:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nicolengk/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/teoks0199/ip.git... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Zjinnnn/ip.git completed! -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/qz1004/ip.git... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/teoks0199/ip.git to complete... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/pangyyen/ip.git... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/qz1004/ip.git to complete... -Aug 30, 2023 1:13:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nicolengk/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nicolengk/ip.git (master) completed! -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [78/480] Analyzing https://github.com/zsh-eng/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/pangyyen/ip.git to complete... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zsh-eng/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zsh-eng/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/awhb/ip.git completed! -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Mahidharah/ip.git... -Aug 30, 2023 1:13:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ivanleekk/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhengyup/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhengyup/ip.git to complete... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/raynertjx/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lamchenghou/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tayruxin/ip.git completed! +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/larrywang0701/ip.git... +Aug 30, 2023 1:26:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/newway1814/ip.git (master)... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Carlintyj/ip.git... +Aug 30, 2023 1:26:02 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/larrywang0701/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wxwern/ip.git... +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/newway1814/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/newway1814/ip.git (master) completed! +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [78/480] Analyzing https://github.com/mingyuanc/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/glenngnng/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Mahidharah/ip.git to complete... -Aug 30, 2023 1:13:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/glenngnng/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/glenngnng/ip.git (master) completed! -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [79/480] Analyzing https://github.com/mingyuanc/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Carlintyj/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wxwern/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mingyuanc/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mingyuanc/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zsh-eng/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/glenngnng/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/glenngnng/ip.git (master) completed! +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [79/480] Analyzing https://github.com/zsh-eng/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhengyup/ip.git completed! +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zsh-eng/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zsh-eng/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nubnubyas/ip.git... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nubnubyas/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wxwern/ip.git completed! +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aslam341/ip.git... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Carlintyj/ip.git completed! +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/larrywang0701/ip.git completed! +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aslam341/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LWZ19/ip.git... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/timleow/ip.git... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LWZ19/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nubnubyas/ip.git completed! +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rayshawntan/ip.git... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/timleow/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rayshawntan/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/mingyuanc/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zsh-eng/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zsh-eng/ip.git (master) completed! -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/mingyuanc/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/mingyuanc/ip.git (master) completed! +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepos INFO: [80/480] Analyzing https://github.com/LamJiuFong/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LamJiuFong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LamJiuFong/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/mingyuanc/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/mingyuanc/ip.git (master) completed! -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [81/480] Analyzing https://github.com/GlendaChong/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/GlendaChong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/GlendaChong/ip.git (master)... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/teoks0199/ip.git completed! -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/pangyyen/ip.git completed! -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jason-raiin/ip.git... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jason-raiin/ip.git to complete... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ravern/ip.git... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ravern/ip.git to complete... -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/qz1004/ip.git completed! -Aug 30, 2023 1:13:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bobscodedump/ip.git... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bobscodedump/ip.git to complete... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Mahidharah/ip.git completed! -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nixonwidjaja/ip.git... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nixonwidjaja/ip.git to complete... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/GlendaChong/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/GlendaChong/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/GlendaChong/ip.git (master) completed! -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [82/480] Analyzing https://github.com/starrylight99/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zsh-eng/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zsh-eng/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zsh-eng/ip.git (master) completed! +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [81/480] Analyzing https://github.com/starrylight99/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/starrylight99/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/starrylight99/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aslam341/ip.git completed! +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LWZ19/ip.git completed! +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aexolate/ip.git... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Sheeepen/ip.git... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aexolate/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Sheeepen/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/starrylight99/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rayshawntan/ip.git completed! +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shuyangk/ip.git... +Aug 30, 2023 1:26:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/starrylight99/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/starrylight99/ip.git (master) completed! -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [83/480] Analyzing https://github.com/AustinHuang1203/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AustinHuang1203/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AustinHuang1203/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator analyzeRepos +INFO: [82/480] Analyzing https://github.com/GlendaChong/ip.git (master)... +Aug 30, 2023 1:26:03 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shuyangk/ip.git to complete... +Aug 30, 2023 1:26:03 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/GlendaChong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/GlendaChong/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/timleow/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ncmathan/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ncmathan/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Sheeepen/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/iyioon/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/iyioon/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aexolate/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LamJiuFong/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kiwibang/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kiwibang/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shuyangk/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LamJiuFong/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LamJiuFong/ip.git (master) completed! -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [83/480] Analyzing https://github.com/AustinHuang1203/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mingyu-wan/ip.git... +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/GlendaChong/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mingyu-wan/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AustinHuang1203/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AustinHuang1203/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/GlendaChong/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/GlendaChong/ip.git (master) completed! +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator analyzeRepos INFO: [84/480] Analyzing https://github.com/seewhyjay/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ncmathan/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/seewhyjay/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/seewhyjay/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ravern/ip.git completed! -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/techjay-c/ip.git... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/techjay-c/ip.git to complete... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LuoZYi/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LuoZYi/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/iyioon/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/asdfghjkxd/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/asdfghjkxd/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kiwibang/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sushiyade/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mingyu-wan/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Nid21cs/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sushiyade/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Nid21cs/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AustinHuang1203/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LuoZYi/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AustinHuang1203/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AustinHuang1203/ip.git (master) completed! -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [85/480] Analyzing https://github.com/ruth-lim/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ruth-lim/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ruth-lim/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jason-raiin/ip.git completed! -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/seewhyjay/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ryanozx/ip.git... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bobscodedump/ip.git completed! -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ryanozx/ip.git to complete... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/seewhyjay/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/seewhyjay/ip.git (master) completed! -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nixonwidjaja/ip.git completed! -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [86/480] Analyzing https://github.com/limzhenwy/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LuahJunYang/ip.git... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HEEaZ/ip.git... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HEEaZ/ip.git to complete... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [85/480] Analyzing https://github.com/limzhenwy/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/McNaBry/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/McNaBry/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/limzhenwy/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/limzhenwy/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LuahJunYang/ip.git to complete... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/seewhyjay/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/seewhyjay/ip.git (master) completed! +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator analyzeRepos +INFO: [86/480] Analyzing https://github.com/xCOLOURx/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xCOLOURx/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xCOLOURx/ip.git (master)... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/asdfghjkxd/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/miljyy/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/miljyy/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sushiyade/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Nid21cs/ip.git completed! +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ncduy0303/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ncduy0303/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/eyelessrhyme7/ip.git... +Aug 30, 2023 1:26:04 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/eyelessrhyme7/ip.git to complete... +Aug 30, 2023 1:26:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/limzhenwy/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xCOLOURx/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/limzhenwy/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/limzhenwy/ip.git (master) completed! -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [87/480] Analyzing https://github.com/zacwong2151/ip.git (master)... -Aug 30, 2023 1:13:01 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [87/480] Analyzing https://github.com/ruth-lim/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xCOLOURx/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xCOLOURx/ip.git (master) completed! +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [88/480] Analyzing https://github.com/Zjinnnn/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/McNaBry/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ruishanteo/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ruth-lim/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ruth-lim/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ruishanteo/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Zjinnnn/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Zjinnnn/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/miljyy/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/m1oojv/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/m1oojv/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/eyelessrhyme7/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Nixx162/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Nixx162/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ncduy0303/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Gabriel4357/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Gabriel4357/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ruishanteo/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/m1oojv/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Zjinnnn/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mfjkri/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/junhonglow/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mfjkri/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Zjinnnn/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Zjinnnn/ip.git (master) completed! +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [89/480] Analyzing https://github.com/zacwong2151/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/junhonglow/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zacwong2151/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zacwong2151/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/techjay-c/ip.git completed! -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dom-buri/ip.git... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dom-buri/ip.git to complete... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zacwong2151/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zacwong2151/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zacwong2151/ip.git (master) completed! -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [88/480] Analyzing https://github.com/xCOLOURx/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xCOLOURx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xCOLOURx/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Nixx162/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RoeReRe/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RoeReRe/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Gabriel4357/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Badatprogrammiing/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Badatprogrammiing/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mfjkri/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nknguyenhc/ip.git... +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ruth-lim/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zacwong2151/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/junhonglow/ip.git completed! +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nknguyenhc/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/winson8222/ip.git... +Aug 30, 2023 1:26:05 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/winson8222/ip.git to complete... +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ruth-lim/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ruth-lim/ip.git (master) completed! -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HEEaZ/ip.git completed! -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [89/480] Analyzing https://github.com/Zjinnnn/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AlainS87/ip.git... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AlainS87/ip.git to complete... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Zjinnnn/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Zjinnnn/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ryanozx/ip.git completed! -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LuahJunYang/ip.git completed! -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tiongjjyi/ip.git... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Vanessamae23/ip.git... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Vanessamae23/ip.git to complete... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tiongjjyi/ip.git to complete... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xCOLOURx/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xCOLOURx/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xCOLOURx/ip.git (master) completed! -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [90/480] Analyzing https://github.com/awhb/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [90/480] Analyzing https://github.com/teoks0199/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zacwong2151/ip.git (master)... +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zacwong2151/ip.git (master) completed! +Aug 30, 2023 1:26:05 AM reposense.report.ReportGenerator analyzeRepos +INFO: [91/480] Analyzing https://github.com/awhb/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/teoks0199/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/awhb/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/awhb/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Zjinnnn/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Zjinnnn/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Zjinnnn/ip.git (master) completed! -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [91/480] Analyzing https://github.com/teoks0199/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/teoks0199/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Badatprogrammiing/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RoeReRe/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wujy28/ip.git... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wujy28/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SimWPEric/ip.git... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SimWPEric/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nknguyenhc/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HugeNoob/ip.git... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/awhb/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HugeNoob/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/awhb/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/awhb/ip.git (master) completed! -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [92/480] Analyzing https://github.com/pangyyen/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/teoks0199/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/teoks0199/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/pangyyen/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/pangyyen/ip.git (master)... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dom-buri/ip.git completed! -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/fuyiqiao/ip.git... -Aug 30, 2023 1:13:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/fuyiqiao/ip.git to complete... -Aug 30, 2023 1:13:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [92/480] Analyzing https://github.com/Mahidharah/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/teoks0199/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/pangyyen/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/teoks0199/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AlainS87/ip.git completed! -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tiongjjyi/ip.git completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/teoks0199/ip.git (master) completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [93/480] Analyzing https://github.com/qz1004/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/pangyyen/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Vanessamae23/ip.git completed! -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/spatuly/ip.git... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/pangyyen/ip.git (master) completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [94/480] Analyzing https://github.com/Mahidharah/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanshiyu1999/ip.git... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kb-Tay/ip.git... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/spatuly/ip.git to complete... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/qz1004/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/qz1004/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kb-Tay/ip.git to complete... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanshiyu1999/ip.git to complete... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Mahidharah/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Mahidharah/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/teoks0199/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/teoks0199/ip.git (master) completed! +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [93/480] Analyzing https://github.com/jason-raiin/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jason-raiin/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jason-raiin/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wujy28/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SimWPEric/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lerxuann/ip.git... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Mahidharah/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/qz1004/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/winson8222/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Weiennn/ip.git... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/maj0-0/ip.git... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Weiennn/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lerxuann/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/maj0-0/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Mahidharah/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Mahidharah/ip.git (master) completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [95/480] Analyzing https://github.com/ravern/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/qz1004/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/qz1004/ip.git (master) completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [96/480] Analyzing https://github.com/jason-raiin/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jason-raiin/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jason-raiin/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ravern/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ravern/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/fuyiqiao/ip.git completed! -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/beatricecst/ip.git... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/beatricecst/ip.git to complete... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [94/480] Analyzing https://github.com/qz1004/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HugeNoob/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/qyaner/ip.git... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/qyaner/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/qz1004/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/qz1004/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jason-raiin/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jason-raiin/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jason-raiin/ip.git (master) completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [97/480] Analyzing https://github.com/bobscodedump/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [95/480] Analyzing https://github.com/pangyyen/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/pangyyen/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/pangyyen/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/qz1004/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/qz1004/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/qz1004/ip.git (master) completed! +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [96/480] Analyzing https://github.com/bobscodedump/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/bobscodedump/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/bobscodedump/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ravern/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ravern/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ravern/ip.git (master) completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [98/480] Analyzing https://github.com/nixonwidjaja/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nixonwidjaja/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nixonwidjaja/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kb-Tay/ip.git completed! -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanveersingh10/ip.git... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanveersingh10/ip.git to complete... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanshiyu1999/ip.git completed! -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/spatuly/ip.git completed! -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/thienmy0/ip.git... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/thienmy0/ip.git to complete... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/s0ngyang/ip.git... -Aug 30, 2023 1:13:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/s0ngyang/ip.git to complete... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lerxuann/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/maj0-0/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ruiyangzh/ip.git... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ruiyangzh/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/qyaner/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Bombbird2001/ip.git... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Weiennn/ip.git completed! +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Bombbird2001/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hyc17003/ip.git... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/adammangzijun/ip.git... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/pangyyen/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/adammangzijun/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hyc17003/ip.git to complete... +Aug 30, 2023 1:26:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/pangyyen/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/pangyyen/ip.git (master) completed! +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator analyzeRepos +INFO: [97/480] Analyzing https://github.com/ravern/ip.git (master)... +Aug 30, 2023 1:26:06 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ravern/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ravern/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ruiyangzh/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/andytoh1/ip.git... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/andytoh1/ip.git to complete... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Bombbird2001/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/bobscodedump/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nixonwidjaja/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/adammangzijun/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Originalidk/ip.git... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Originalidk/ip.git to complete... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/quzhetao01/ip.git... +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/bobscodedump/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nixonwidjaja/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/quzhetao01/ip.git to complete... +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/bobscodedump/ip.git (master) completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nixonwidjaja/ip.git (master) completed! -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [98/480] Analyzing https://github.com/nixonwidjaja/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nixonwidjaja/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nixonwidjaja/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hyc17003/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/InfiBeyond/ip.git... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/InfiBeyond/ip.git to complete... +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ravern/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ravern/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ravern/ip.git (master) completed! +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepos INFO: [99/480] Analyzing https://github.com/techjay-c/ip.git (master)... -Aug 30, 2023 1:13:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [100/480] Analyzing https://github.com/HEEaZ/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/beatricecst/ip.git completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/techjay-c/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/techjay-c/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/HEEaZ/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/HEEaZ/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ldinghan/ip.git... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ldinghan/ip.git to complete... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/techjay-c/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HEEaZ/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/techjay-c/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/techjay-c/ip.git (master) completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [101/480] Analyzing https://github.com/ryanozx/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/HEEaZ/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/HEEaZ/ip.git (master) completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [102/480] Analyzing https://github.com/LuahJunYang/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/andytoh1/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nixonwidjaja/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Bearypop/ip.git... +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nixonwidjaja/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nixonwidjaja/ip.git (master) completed! +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [100/480] Analyzing https://github.com/ryanozx/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/quzhetao01/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Bearypop/ip.git to complete... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sp4ce-cowboy/ip.git... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Originalidk/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sp4ce-cowboy/ip.git to complete... +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ryanozx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ryanozx/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LuahJunYang/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LuahJunYang/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LuahJunYang/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LuahJunYang/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LuahJunYang/ip.git (master) completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [103/480] Analyzing https://github.com/dom-buri/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JasonLCY-Temp/ip.git... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JasonLCY-Temp/ip.git to complete... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/InfiBeyond/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wjayee/ip.git... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wjayee/ip.git to complete... +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/techjay-c/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/techjay-c/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/techjay-c/ip.git (master) completed! +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [101/480] Analyzing https://github.com/dom-buri/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ryanozx/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanveersingh10/ip.git completed! -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/feifeiraindrops/ip.git... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dom-buri/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dom-buri/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/feifeiraindrops/ip.git to complete... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ryanozx/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ryanozx/ip.git (master) completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [104/480] Analyzing https://github.com/tiongjjyi/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tiongjjyi/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tiongjjyi/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/thienmy0/ip.git completed! -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/s0ngyang/ip.git completed! -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ryanongwx/ip.git... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ryanongwx/ip.git to complete... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kwangthiag/ip.git... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kwangthiag/ip.git to complete... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator analyzeRepos +INFO: [102/480] Analyzing https://github.com/LuahJunYang/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LuahJunYang/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LuahJunYang/ip.git (master)... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Bearypop/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sp4ce-cowboy/ip.git completed! +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vivienherq/ip.git... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jamesebond/ip.git... +Aug 30, 2023 1:26:07 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JasonLCY-Temp/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vivienherq/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jamesebond/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jonyeokj/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wjayee/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LuahJunYang/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/victorlaiyeeteng/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jonyeokj/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dom-buri/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LuahJunYang/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LuahJunYang/ip.git (master) completed! +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [103/480] Analyzing https://github.com/HEEaZ/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/victorlaiyeeteng/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dom-buri/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dom-buri/ip.git (master) completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [105/480] Analyzing https://github.com/AlainS87/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AlainS87/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AlainS87/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tiongjjyi/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tiongjjyi/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tiongjjyi/ip.git (master) completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [106/480] Analyzing https://github.com/Vanessamae23/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [104/480] Analyzing https://github.com/Vanessamae23/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/HEEaZ/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/HEEaZ/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Vanessamae23/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Vanessamae23/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AlainS87/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AlainS87/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HEEaZ/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/HEEaZ/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/HEEaZ/ip.git (master) completed! +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [105/480] Analyzing https://github.com/fuyiqiao/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vivienherq/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lyuanww/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lyuanww/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/fuyiqiao/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/fuyiqiao/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jamesebond/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Vanessamae23/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AlainS87/ip.git (master) completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [107/480] Analyzing https://github.com/fuyiqiao/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yongning0310/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yongning0310/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jonyeokj/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Cloud7050/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/victorlaiyeeteng/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Cloud7050/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Vanessamae23/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ldinghan/ip.git completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Vanessamae23/ip.git (master) completed! -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [108/480] Analyzing https://github.com/Kb-Tay/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/fuyiqiao/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/fuyiqiao/ip.git (master)... -Aug 30, 2023 1:13:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/elhy1999/ip.git... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Kb-Tay/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Kb-Tay/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/elhy1999/ip.git to complete... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/feifeiraindrops/ip.git completed! -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/songgthu/ip.git... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/songgthu/ip.git to complete... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ryanongwx/ip.git completed! -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GohTengFong/ip.git... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kwangthiag/ip.git completed! -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GohTengFong/ip.git to complete... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/simbayippy/ip.git... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/simbayippy/ip.git to complete... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LoMaply/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [106/480] Analyzing https://github.com/AlainS87/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LoMaply/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AlainS87/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AlainS87/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +WARNING: Exception met while trying to clone the repo "Cloud7050/ip[master]", will skip this repo. +reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Cloud7050/ip.git' 'repos/Cloud7050_ip/ip_bare' on path . : +Cloning into bare repository 'repos/Cloud7050_ip/ip_bare'... +fatal: could not read Username for 'https://github.com': No such device or address + + at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) + at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) + at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) + at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) + at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at java.base/java.lang.Thread.run(Thread.java:829) + +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tllshan/ip.git... +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/fuyiqiao/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tllshan/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/fuyiqiao/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/fuyiqiao/ip.git (master) completed! -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [109/480] Analyzing https://github.com/tanshiyu1999/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanshiyu1999/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanshiyu1999/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Kb-Tay/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kb-Tay/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kb-Tay/ip.git (master) completed! -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [110/480] Analyzing https://github.com/spatuly/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [107/480] Analyzing https://github.com/tiongjjyi/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tiongjjyi/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tiongjjyi/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lyuanww/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Gavino3o/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Gavino3o/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yongning0310/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/HollaG/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/HollaG/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LoMaply/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cheeggered/ip.git... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cheeggered/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tllshan/ip.git completed! +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xenosf/ip.git... +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AlainS87/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xenosf/ip.git to complete... +Aug 30, 2023 1:26:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AlainS87/ip.git (master)... +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AlainS87/ip.git (master) completed! +Aug 30, 2023 1:26:08 AM reposense.report.ReportGenerator analyzeRepos +INFO: [108/480] Analyzing https://github.com/spatuly/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Gavino3o/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TehOPanas/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/spatuly/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/spatuly/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tanshiyu1999/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tanshiyu1999/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tanshiyu1999/ip.git (master) completed! -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [111/480] Analyzing https://github.com/beatricecst/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TehOPanas/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tiongjjyi/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/HollaG/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/neyapraveen/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/neyapraveen/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cheeggered/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tiongjjyi/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tiongjjyi/ip.git (master) completed! +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [109/480] Analyzing https://github.com/beatricecst/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/richiehx/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/richiehx/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/beatricecst/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/beatricecst/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/spatuly/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/spatuly/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/spatuly/ip.git (master) completed! -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [112/480] Analyzing https://github.com/tanveersingh10/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/beatricecst/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/beatricecst/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tanveersingh10/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tanveersingh10/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/elhy1999/ip.git completed! -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Khaleelur-Rahman/ip.git... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/songgthu/ip.git completed! -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Khaleelur-Rahman/ip.git to complete... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/proto-aiken-13/ip.git... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GohTengFong/ip.git completed! -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/proto-aiken-13/ip.git to complete... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/simbayippy/ip.git completed! -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bwangpj/ip.git... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/weeweh/ip.git... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/weeweh/ip.git to complete... -Aug 30, 2023 1:13:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bwangpj/ip.git to complete... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [110/480] Analyzing https://github.com/tanshiyu1999/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanshiyu1999/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanshiyu1999/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/beatricecst/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/beatricecst/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/beatricecst/ip.git (master) completed! -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [111/480] Analyzing https://github.com/Kb-Tay/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xenosf/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TehOPanas/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AlyssaPng/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/leezhengjing/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AlyssaPng/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Kb-Tay/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Kb-Tay/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/leezhengjing/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/richiehx/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/neyapraveen/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/seantehds/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ceilingFan456/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ceilingFan456/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/seantehds/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tanshiyu1999/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tanshiyu1999/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tanshiyu1999/ip.git (master) completed! +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [112/480] Analyzing https://github.com/tanveersingh10/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tanveersingh10/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tanveersingh10/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Kb-Tay/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kb-Tay/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kb-Tay/ip.git (master) completed! +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepos INFO: [113/480] Analyzing https://github.com/thienmy0/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/thienmy0/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/thienmy0/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AlyssaPng/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lihongguang00/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/leezhengjing/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lihongguang00/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Singa-pirate/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Singa-pirate/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ceilingFan456/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/songfangyl/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/songfangyl/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/seantehds/ip.git completed! +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/vansh284/ip.git... +Aug 30, 2023 1:26:09 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/vansh284/ip.git to complete... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tanveersingh10/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/thienmy0/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tanveersingh10/ip.git (master)... -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tanveersingh10/ip.git (master) completed! -Aug 30, 2023 1:13:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [114/480] Analyzing https://github.com/s0ngyang/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/s0ngyang/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/s0ngyang/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/thienmy0/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [114/480] Analyzing https://github.com/ldinghan/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/thienmy0/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/thienmy0/ip.git (master) completed! -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [115/480] Analyzing https://github.com/ldinghan/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator analyzeRepos +INFO: [115/480] Analyzing https://github.com/s0ngyang/ip.git (master)... +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ldinghan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ldinghan/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:09 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/s0ngyang/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/s0ngyang/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lihongguang00/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/YeoBohShin/ip.git... +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/s0ngyang/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/YeoBohShin/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/s0ngyang/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/s0ngyang/ip.git (master) completed! -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepos INFO: [116/480] Analyzing https://github.com/feifeiraindrops/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/feifeiraindrops/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/feifeiraindrops/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/songfangyl/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/vansh284/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Singa-pirate/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ldinghan/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shuenj/ip.git... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lunaroddity/ip.git... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/andrechuakj/ip.git... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shuenj/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lunaroddity/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ldinghan/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ldinghan/ip.git (master) completed! -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [117/480] Analyzing https://github.com/ryanongwx/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ryanongwx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ryanongwx/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Khaleelur-Rahman/ip.git completed! -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [117/480] Analyzing https://github.com/kwangthiag/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/feifeiraindrops/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/feifeiraindrops/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/andrechuakj/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kwangthiag/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kwangthiag/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/feifeiraindrops/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bwangpj/ip.git completed! -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/s-peiran/ip.git... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/proto-aiken-13/ip.git completed! -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/s-peiran/ip.git to complete... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/weeweh/ip.git completed! -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jylow/ip.git... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lawruixi/ip.git... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JeremyYong128/ip.git... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/feifeiraindrops/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/feifeiraindrops/ip.git (master) completed! -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [118/480] Analyzing https://github.com/kwangthiag/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JeremyYong128/ip.git to complete... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lawruixi/ip.git to complete... -Aug 30, 2023 1:13:06 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jylow/ip.git to complete... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kwangthiag/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kwangthiag/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [118/480] Analyzing https://github.com/elhy1999/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kwangthiag/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kwangthiag/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/kwangthiag/ip.git (master) completed! -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [119/480] Analyzing https://github.com/elhy1999/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/elhy1999/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/elhy1999/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ryanongwx/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ryanongwx/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ryanongwx/ip.git (master) completed! -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [120/480] Analyzing https://github.com/songgthu/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/songgthu/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/songgthu/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/kwangthiag/ip.git (master) completed! +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [119/480] Analyzing https://github.com/ryanongwx/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/YeoBohShin/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/WeeMingQing/ip.git... +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ryanongwx/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ryanongwx/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/WeeMingQing/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lunaroddity/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aliciamichellew/ip.git... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aliciamichellew/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shuenj/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/samuelmui8/ip.git... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/samuelmui8/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/elhy1999/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/elhy1999/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/elhy1999/ip.git (master) completed! -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator analyzeRepos -INFO: [121/480] Analyzing https://github.com/GohTengFong/ip.git (master)... -Aug 30, 2023 1:13:06 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/GohTengFong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:06 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/GohTengFong/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [120/480] Analyzing https://github.com/songgthu/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ryanongwx/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/songgthu/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/songgthu/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ryanongwx/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ryanongwx/ip.git (master) completed! +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator analyzeRepos +INFO: [121/480] Analyzing https://github.com/simbayippy/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/simbayippy/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/simbayippy/ip.git (master)... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/WeeMingQing/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/antonTan96/ip.git... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/antonTan96/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aliciamichellew/ip.git completed! +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/owenyeo/ip.git... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/owenyeo/ip.git to complete... +Aug 30, 2023 1:26:10 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/samuelmui8/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/gongg21/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/gongg21/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/songgthu/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/GohTengFong/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jylow/ip.git completed! -Aug 30, 2023 1:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/GohTengFong/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/GohTengFong/ip.git (master) completed! -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [122/480] Analyzing https://github.com/simbayippy/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/simbayippy/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/songgthu/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/songgthu/ip.git (master) completed! -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/brandon-nam/ip.git... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [123/480] Analyzing https://github.com/Khaleelur-Rahman/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/s-peiran/ip.git completed! -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/brandon-nam/ip.git to complete... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LHeng1/ip.git... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JeremyYong128/ip.git completed! -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lawruixi/ip.git completed! -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LHeng1/ip.git to complete... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Leb14/ip.git... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/simbayippy/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/simbayippy/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/B-enguin/ip.git... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/simbayippy/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [122/480] Analyzing https://github.com/GohTengFong/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/antonTan96/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/simbayippy/ip.git (master) completed! +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [123/480] Analyzing https://github.com/proto-aiken-13/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nabonitasen/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nabonitasen/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/proto-aiken-13/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/proto-aiken-13/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/GohTengFong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/GohTengFong/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/gongg21/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/owenyeo/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/erohsikivar/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/pzl111/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/erohsikivar/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/pzl111/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/proto-aiken-13/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/proto-aiken-13/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/proto-aiken-13/ip.git (master) completed! +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [124/480] Analyzing https://github.com/Khaleelur-Rahman/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/GohTengFong/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Khaleelur-Rahman/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Khaleelur-Rahman/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Leb14/ip.git to complete... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/B-enguin/ip.git to complete... -Aug 30, 2023 1:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/GohTengFong/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/GohTengFong/ip.git (master) completed! +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [125/480] Analyzing https://github.com/weeweh/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/weeweh/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/weeweh/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/andrechuakj/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nabonitasen/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/teozern1/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Elijah5399/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Elijah5399/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/teozern1/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Khaleelur-Rahman/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/pzl111/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Khaleelur-Rahman/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Khaleelur-Rahman/ip.git (master) completed! -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [124/480] Analyzing https://github.com/bwangpj/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator analyzeRepos +INFO: [126/480] Analyzing https://github.com/bwangpj/ip.git (master)... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nicleongyj/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/erohsikivar/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/WinSheng1/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nicleongyj/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/WinSheng1/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/bwangpj/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/bwangpj/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/simbayippy/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/simbayippy/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/simbayippy/ip.git (master) completed! -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator analyzeRepos -INFO: [125/480] Analyzing https://github.com/weeweh/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/weeweh/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:07 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/weeweh/ip.git (master)... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/B-enguin/ip.git completed! -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/brandon-nam/ip.git completed! -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/s-kybound/ip.git... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wesho1107/ip.git... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Leb14/ip.git completed! -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/s-kybound/ip.git to complete... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LHeng1/ip.git completed! -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wesho1107/ip.git to complete... -Aug 30, 2023 1:13:07 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yihfei/ip.git... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AaronJT1/ip.git... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yihfei/ip.git to complete... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AaronJT1/ip.git to complete... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Elijah5399/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ryamgoh/ip.git... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/teozern1/ip.git completed! +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ryamgoh/ip.git to complete... +Aug 30, 2023 1:26:11 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yucongkoo/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicleongyj/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yucongkoo/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/weeweh/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/WinSheng1/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Chen-Kuei/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Chen-Kuei/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/conradsoon/ip.git... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/weeweh/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/bwangpj/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/weeweh/ip.git (master) completed! +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [127/480] Analyzing https://github.com/jylow/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/conradsoon/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/bwangpj/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/bwangpj/ip.git (master) completed! -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [126/480] Analyzing https://github.com/proto-aiken-13/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/proto-aiken-13/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/proto-aiken-13/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/proto-aiken-13/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/proto-aiken-13/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/proto-aiken-13/ip.git (master) completed! -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [127/480] Analyzing https://github.com/jylow/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/weeweh/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [128/480] Analyzing https://github.com/s-peiran/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jylow/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jylow/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/weeweh/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/weeweh/ip.git (master) completed! -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [128/480] Analyzing https://github.com/s-peiran/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/s-peiran/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/s-peiran/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/s-peiran/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jylow/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/s-peiran/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/s-peiran/ip.git (master) completed! -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jylow/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jylow/ip.git (master) completed! -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepos INFO: [129/480] Analyzing https://github.com/JeremyYong128/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [130/480] Analyzing https://github.com/lawruixi/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jylow/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JeremyYong128/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JeremyYong128/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jylow/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jylow/ip.git (master) completed! +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [130/480] Analyzing https://github.com/lawruixi/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lawruixi/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lawruixi/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/s-kybound/ip.git completed! -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yihfei/ip.git completed! -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dlathyun/ip.git... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ricketytoc/ip.git... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wesho1107/ip.git completed! -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AaronJT1/ip.git completed! -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Angelyxx/ip.git... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dlathyun/ip.git to complete... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ricketytoc/ip.git to complete... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Angelyxx/ip.git to complete... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jingting1412/ip.git... -Aug 30, 2023 1:13:08 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jingting1412/ip.git to complete... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Chen-Kuei/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/GSgiansen/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yucongkoo/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/GSgiansen/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/conradsoon/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ryamgoh/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/et-irl/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/marioalvaro/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/et-irl/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/JeremyYong128/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Seonlo99/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/marioalvaro/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Seonlo99/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JeremyYong128/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JeremyYong128/ip.git (master) completed! -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [131/480] Analyzing https://github.com/B-enguin/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/B-enguin/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/B-enguin/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [131/480] Analyzing https://github.com/brandon-nam/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/brandon-nam/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/brandon-nam/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lawruixi/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lawruixi/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lawruixi/ip.git (master) completed! -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator analyzeRepos -INFO: [132/480] Analyzing https://github.com/brandon-nam/ip.git (master)... -Aug 30, 2023 1:13:08 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/brandon-nam/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:08 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/brandon-nam/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepos +INFO: [132/480] Analyzing https://github.com/Leb14/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/GSgiansen/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Leb14/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Leb14/ip.git (master)... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/joel-foo/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/joel-foo/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/marioalvaro/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/et-irl/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tim-pipi/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Seonlo99/ip.git completed! +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/marcellaantania/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/brendanneojw/ip.git... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tim-pipi/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/brandon-nam/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/brendanneojw/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/marcellaantania/ip.git to complete... +Aug 30, 2023 1:26:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/brandon-nam/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/brandon-nam/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator analyzeRepos INFO: [133/480] Analyzing https://github.com/LHeng1/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:12 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LHeng1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LHeng1/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LHeng1/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LHeng1/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LHeng1/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/B-enguin/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [134/480] Analyzing https://github.com/Leb14/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/B-enguin/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/B-enguin/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Leb14/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Leb14/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [135/480] Analyzing https://github.com/yihfei/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yihfei/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yihfei/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ricketytoc/ip.git completed! -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Angelyxx/ip.git completed! -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SinhaVedant/ip.git... -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/freddychenyouren2/ip.git... -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/freddychenyouren2/ip.git to complete... -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jingting1412/ip.git completed! -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SinhaVedant/ip.git to complete... -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dlathyun/ip.git completed! -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jordankanghm/ip.git... -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/adhigop13/ip.git... -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jordankanghm/ip.git to complete... -Aug 30, 2023 1:13:09 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/adhigop13/ip.git to complete... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Leb14/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Leb14/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Leb14/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [136/480] Analyzing https://github.com/s-kybound/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yihfei/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [134/480] Analyzing https://github.com/B-enguin/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LHeng1/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/B-enguin/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/B-enguin/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LHeng1/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LHeng1/ip.git (master) completed! +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [135/480] Analyzing https://github.com/s-kybound/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/s-kybound/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/s-kybound/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yihfei/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yihfei/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [137/480] Analyzing https://github.com/wesho1107/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wesho1107/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wesho1107/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/brendanneojw/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/joel-foo/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/li-rongzhi/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KamiliArsyad/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KamiliArsyad/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/li-rongzhi/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/marcellaantania/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tim-pipi/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/seraphimstreets/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/trgao/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/seraphimstreets/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/trgao/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/s-kybound/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/s-kybound/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/s-kybound/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [138/480] Analyzing https://github.com/AaronJT1/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AaronJT1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AaronJT1/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [136/480] Analyzing https://github.com/wesho1107/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wesho1107/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wesho1107/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/seraphimstreets/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/li-rongzhi/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lilozz2/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lilozz2/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KamiliArsyad/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jean-cq/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jedkohjk/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/trgao/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yytan25/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jean-cq/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jedkohjk/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yytan25/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wesho1107/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wesho1107/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wesho1107/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [139/480] Analyzing https://github.com/Angelyxx/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Angelyxx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Angelyxx/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Angelyxx/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Angelyxx/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Angelyxx/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [137/480] Analyzing https://github.com/yihfei/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/B-enguin/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yihfei/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yihfei/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/B-enguin/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/B-enguin/ip.git (master) completed! +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [138/480] Analyzing https://github.com/AaronJT1/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AaronJT1/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AaronJT1/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jean-cq/ip.git completed! +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yihfei/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ryantzr1/ip.git... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ryantzr1/ip.git to complete... +Aug 30, 2023 1:26:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yihfei/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yihfei/ip.git (master) completed! +Aug 30, 2023 1:26:13 AM reposense.report.ReportGenerator analyzeRepos +INFO: [139/480] Analyzing https://github.com/dlathyun/ip.git (master)... +Aug 30, 2023 1:26:13 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jedkohjk/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/maypfv/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/maypfv/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dlathyun/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dlathyun/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yytan25/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lilozz2/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TohLiYuan/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TohLiYuan/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JizhuoChen/ip.git... +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AaronJT1/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JizhuoChen/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AaronJT1/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AaronJT1/ip.git (master) completed! +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepos INFO: [140/480] Analyzing https://github.com/ricketytoc/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AaronJT1/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ricketytoc/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ricketytoc/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AaronJT1/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AaronJT1/ip.git (master) completed! -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator analyzeRepos -INFO: [141/480] Analyzing https://github.com/jingting1412/ip.git (master)... -Aug 30, 2023 1:13:09 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jingting1412/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:09 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jingting1412/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SinhaVedant/ip.git completed! -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/waseemingly/ip.git... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jordankanghm/ip.git completed! -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/freddychenyouren2/ip.git completed! -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/adhigop13/ip.git completed! -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/raydenlim/ip.git... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jingyu987/ip.git... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/FerdiHS/ip.git... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/waseemingly/ip.git to complete... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/FerdiHS/ip.git to complete... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jingyu987/ip.git to complete... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/raydenlim/ip.git to complete... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ricketytoc/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ricketytoc/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ricketytoc/ip.git (master) completed! -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [142/480] Analyzing https://github.com/dlathyun/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dlathyun/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dlathyun/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jingting1412/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jingting1412/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jingting1412/ip.git (master) completed! -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [141/480] Analyzing https://github.com/Angelyxx/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dlathyun/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Angelyxx/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Angelyxx/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dlathyun/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dlathyun/ip.git (master) completed! +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [142/480] Analyzing https://github.com/jingting1412/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jingting1412/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jingting1412/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/maypfv/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChongWeiJie29/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JizhuoChen/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TohLiYuan/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChongWeiJie29/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ryantzr1/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Goh-Li-Ting/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kristayeo/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kristayeo/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Goh-Li-Ting/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/derekjxtan/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/derekjxtan/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Angelyxx/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Angelyxx/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Angelyxx/ip.git (master) completed! +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepos INFO: [143/480] Analyzing https://github.com/SinhaVedant/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/SinhaVedant/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/SinhaVedant/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dlathyun/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SinhaVedant/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dlathyun/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dlathyun/ip.git (master) completed! -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jingting1412/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jingting1412/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jingting1412/ip.git (master) completed! +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepos INFO: [144/480] Analyzing https://github.com/jordankanghm/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SinhaVedant/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SinhaVedant/ip.git (master) completed! -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [145/480] Analyzing https://github.com/adhigop13/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator analyzeRepos +INFO: [145/480] Analyzing https://github.com/freddychenyouren2/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/freddychenyouren2/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/freddychenyouren2/ip.git (master)... +Aug 30, 2023 1:26:14 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jordankanghm/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jordankanghm/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChongWeiJie29/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shashahchk/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kristayeo/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Goh-Li-Ting/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shashahchk/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Chandan8186/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alyssaongyx/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Chandan8186/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/derekjxtan/ip.git completed! +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AndrewJanong/ip.git... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alyssaongyx/ip.git to complete... +Aug 30, 2023 1:26:14 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AndrewJanong/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/freddychenyouren2/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/freddychenyouren2/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/freddychenyouren2/ip.git (master) completed! +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [146/480] Analyzing https://github.com/adhigop13/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shashahchk/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/adhigop13/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/adhigop13/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kailash201/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AndrewJanong/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/laurenlim2112/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kailash201/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alyssaongyx/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Chandan8186/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/laurenlim2112/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lambraydon/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sk2001git/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sk2001git/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lambraydon/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/adhigop13/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/adhigop13/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/adhigop13/ip.git (master) completed! -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator analyzeRepos -INFO: [146/480] Analyzing https://github.com/freddychenyouren2/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/freddychenyouren2/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:10 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/freddychenyouren2/ip.git (master)... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/waseemingly/ip.git completed! -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/raydenlim/ip.git completed! -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jrchoo/ip.git... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/FerdiHS/ip.git completed! -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RiyaMehta2211/ip.git... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jingyu987/ip.git completed! -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/leezhanpeng/ip.git... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jrchoo/ip.git to complete... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/leezhanpeng/ip.git to complete... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/juzzztinsoong/ip.git... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RiyaMehta2211/ip.git to complete... -Aug 30, 2023 1:13:10 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/juzzztinsoong/ip.git to complete... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/freddychenyouren2/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/freddychenyouren2/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/freddychenyouren2/ip.git (master) completed! -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [147/480] Analyzing https://github.com/raydenlim/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [147/480] Analyzing https://github.com/waseemingly/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/waseemingly/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/waseemingly/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jordankanghm/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/raydenlim/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/raydenlim/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kailash201/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/laurenlim2112/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jordankanghm/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jordankanghm/ip.git (master) completed! -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [148/480] Analyzing https://github.com/waseemingly/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/waseemingly/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/waseemingly/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/raydenlim/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [148/480] Analyzing https://github.com/raydenlim/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chonguschonguschongus/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lshaoqin/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chonguschonguschongus/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lshaoqin/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lambraydon/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/raydenlim/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/raydenlim/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/peasantbird/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/peasantbird/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sk2001git/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/WangCheng0116/ip.git... +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/waseemingly/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/raydenlim/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/raydenlim/ip.git (master) completed! -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [149/480] Analyzing https://github.com/FerdiHS/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/WangCheng0116/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/waseemingly/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/waseemingly/ip.git (master) completed! -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [150/480] Analyzing https://github.com/jingyu987/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/FerdiHS/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/FerdiHS/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [149/480] Analyzing https://github.com/jingyu987/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jingyu987/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jingyu987/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/raydenlim/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/raydenlim/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/raydenlim/ip.git (master) completed! +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [150/480] Analyzing https://github.com/FerdiHS/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jingyu987/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/peasantbird/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jingyu987/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jingyu987/ip.git (master) completed! -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator analyzeRepos +INFO: [151/480] Analyzing https://github.com/RiyaMehta2211/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/teozhengyang/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/FerdiHS/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/FerdiHS/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chonguschonguschongus/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/teozhengyang/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lshaoqin/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chewjh1234/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chewjh1234/ip.git to complete... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/WangCheng0116/ip.git completed! +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/elaineshijie/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/RiyaMehta2211/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/RiyaMehta2211/ip.git (master)... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lynnlow175/ip.git... +Aug 30, 2023 1:26:15 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/elaineshijie/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lynnlow175/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RiyaMehta2211/ip.git (master)... +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/FerdiHS/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RiyaMehta2211/ip.git (master)... +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RiyaMehta2211/ip.git (master) completed! +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [152/480] Analyzing https://github.com/jrchoo/ip.git (master)... +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/FerdiHS/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/FerdiHS/ip.git (master) completed! -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jrchoo/ip.git completed! -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/darrentfy/ip.git... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [151/480] Analyzing https://github.com/jrchoo/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/darrentfy/ip.git to complete... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [153/480] Analyzing https://github.com/juzzztinsoong/ip.git (master)... +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/juzzztinsoong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/juzzztinsoong/ip.git (master)... +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jrchoo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jrchoo/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/leezhanpeng/ip.git completed! -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/redtailedfox/ip.git... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [152/480] Analyzing https://github.com/leezhanpeng/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/juzzztinsoong/ip.git completed! -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RiyaMehta2211/ip.git completed! -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/redtailedfox/ip.git to complete... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/leezhanpeng/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/leezhanpeng/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Fallman2/ip.git... -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Heran9/ip.git... -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Fallman2/ip.git to complete... -Aug 30, 2023 1:13:11 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Heran9/ip.git to complete... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/teozhengyang/ip.git completed! +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lordidiot/ip.git... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lordidiot/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chewjh1234/ip.git completed! +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/chew01/ip.git... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/elaineshijie/ip.git completed! +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/chew01/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/RSXIX/ip.git... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/RSXIX/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jrchoo/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jrchoo/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jrchoo/ip.git (master) completed! -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [153/480] Analyzing https://github.com/RiyaMehta2211/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/RiyaMehta2211/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/RiyaMehta2211/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RiyaMehta2211/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RiyaMehta2211/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RiyaMehta2211/ip.git (master) completed! -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepos -INFO: [154/480] Analyzing https://github.com/juzzztinsoong/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/juzzztinsoong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:11 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/juzzztinsoong/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leezhanpeng/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leezhanpeng/ip.git (master)... -Aug 30, 2023 1:13:11 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leezhanpeng/ip.git (master) completed! -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [154/480] Analyzing https://github.com/leezhanpeng/ip.git (master)... +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/leezhanpeng/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/leezhanpeng/ip.git (master)... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lynnlow175/ip.git completed! +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/juzzztinsoong/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/darrentfy/ip.git completed! -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/juliusgambe/ip.git... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/juliusgambe/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/juzzztinsoong/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/juzzztinsoong/ip.git (master) completed! -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/VN-Hao/ip.git... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [155/480] Analyzing https://github.com/darrentfy/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/VN-Hao/ip.git to complete... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/darrentfy/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/darrentfy/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/redtailedfox/ip.git completed! -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [156/480] Analyzing https://github.com/redtailedfox/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jingjie88/ip.git... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Fallman2/ip.git completed! -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Heran9/ip.git completed! -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jingjie88/ip.git to complete... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/H1410101/ip.git... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kimshitong/ip.git... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [155/480] Analyzing https://github.com/redtailedfox/ip.git (master)... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lordidiot/ip.git completed! +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/redtailedfox/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/redtailedfox/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/H1410101/ip.git to complete... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kimshitong/ip.git to complete... -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhonghan721/ip.git... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhonghan721/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/chew01/ip.git completed! +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/WZWren/ip.git... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/WZWren/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/juliusgambe/ip.git completed! +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/inezkok/ip.git... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/inezkok/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhonghan721/ip.git completed! +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wasjoe1/ip.git... +Aug 30, 2023 1:26:16 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wasjoe1/ip.git to complete... +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/redtailedfox/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/redtailedfox/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/redtailedfox/ip.git (master) completed! -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [157/480] Analyzing https://github.com/Heran9/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:16 AM reposense.report.ReportGenerator analyzeRepos +INFO: [156/480] Analyzing https://github.com/darrentfy/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/WZWren/ip.git completed! +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/darrentfy/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/darrentfy/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kokrui/ip.git... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leezhanpeng/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kokrui/ip.git to complete... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leezhanpeng/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leezhanpeng/ip.git (master) completed! +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [157/480] Analyzing https://github.com/Fallman2/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Fallman2/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Fallman2/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Fallman2/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Fallman2/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Fallman2/ip.git (master) completed! +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [158/480] Analyzing https://github.com/Heran9/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Heran9/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Heran9/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wasjoe1/ip.git completed! +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jinyang628/ip.git... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jinyang628/ip.git to complete... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/darrentfy/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/darrentfy/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/darrentfy/ip.git (master) completed! -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [158/480] Analyzing https://github.com/Fallman2/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Fallman2/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Fallman2/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [159/480] Analyzing https://github.com/jingjie88/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Heran9/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jingjie88/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jingjie88/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Heran9/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Heran9/ip.git (master) completed! -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Fallman2/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Fallman2/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Fallman2/ip.git (master) completed! -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/VN-Hao/ip.git completed! -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [159/480] Analyzing https://github.com/VN-Hao/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ivanleekk/ip.git... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ivanleekk/ip.git to complete... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/VN-Hao/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/VN-Hao/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kimshitong/ip.git completed! -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/H1410101/ip.git completed! -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/VN-Hao/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lamchenghou/ip.git... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepos INFO: [160/480] Analyzing https://github.com/H1410101/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tayruxin/ip.git... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lamchenghou/ip.git to complete... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jingjie88/ip.git completed! -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tayruxin/ip.git to complete... -Aug 30, 2023 1:13:12 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/VN-Hao/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/VN-Hao/ip.git (master) completed! -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator analyzeRepos -INFO: [161/480] Analyzing https://github.com/kimshitong/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/raynertjx/ip.git... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/inezkok/ip.git completed! +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/H1410101/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/H1410101/ip.git (master)... -Aug 30, 2023 1:13:12 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/raynertjx/ip.git to complete... -Aug 30, 2023 1:13:12 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kimshitong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:12 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kimshitong/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nananakx-x/ip.git... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nananakx-x/ip.git to complete... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kokrui/ip.git completed! +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ylyma/ip.git... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ylyma/ip.git to complete... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jinyang628/ip.git completed! +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AnnabelTing/ip.git... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AnnabelTing/ip.git to complete... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/H1410101/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jingjie88/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/H1410101/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jingjie88/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/H1410101/ip.git (master) completed! -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [162/480] Analyzing https://github.com/jingjie88/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jingjie88/ip.git (master) completed! +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [161/480] Analyzing https://github.com/kimshitong/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepos +INFO: [162/480] Analyzing https://github.com/VN-Hao/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/RSXIX/ip.git completed! +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/timetraveller-123/ip.git... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kimshitong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kimshitong/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/timetraveller-123/ip.git to complete... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/VN-Hao/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/VN-Hao/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nananakx-x/ip.git completed! +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LicongHuang/ip.git... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LicongHuang/ip.git to complete... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ylyma/ip.git completed! +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jweng88/ip.git... +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jweng88/ip.git to complete... +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kimshitong/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kimshitong/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jingjie88/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jingjie88/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kimshitong/ip.git (master) completed! -Aug 30, 2023 1:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jingjie88/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jingjie88/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jingjie88/ip.git (master) completed! -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ivanleekk/ip.git completed! -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhengyup/ip.git... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepos INFO: [163/480] Analyzing https://github.com/ivanleekk/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhengyup/ip.git to complete... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/VN-Hao/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ivanleekk/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ivanleekk/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lamchenghou/ip.git completed! -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/larrywang0701/ip.git... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/VN-Hao/ip.git (master)... +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/VN-Hao/ip.git (master) completed! +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator analyzeRepos INFO: [164/480] Analyzing https://github.com/lamchenghou/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tayruxin/ip.git completed! -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/larrywang0701/ip.git to complete... -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Carlintyj/ip.git... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:17 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lamchenghou/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lamchenghou/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Carlintyj/ip.git to complete... -Aug 30, 2023 1:13:13 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:17 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AnnabelTing/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/timetraveller-123/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/EricXiong420/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jovkusuma/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/EricXiong420/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LicongHuang/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jovkusuma/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bhnuka/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jweng88/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ivanleekk/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bhnuka/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/J-hta-n/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/J-hta-n/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ivanleekk/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ivanleekk/ip.git (master) completed! -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator analyzeRepos -INFO: [165/480] Analyzing https://github.com/tayruxin/ip.git (master)... -Aug 30, 2023 1:13:13 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tayruxin/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:13 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tayruxin/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/raynertjx/ip.git completed! -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wxwern/ip.git... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wxwern/ip.git to complete... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tayruxin/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tayruxin/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tayruxin/ip.git (master) completed! -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [166/480] Analyzing https://github.com/raynertjx/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [165/480] Analyzing https://github.com/raynertjx/ip.git (master)... +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/raynertjx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/raynertjx/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhengyup/ip.git completed! -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nubnubyas/ip.git... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nubnubyas/ip.git to complete... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/larrywang0701/ip.git completed! -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aslam341/ip.git... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aslam341/ip.git to complete... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/EricXiong420/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Tim-Siu/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Tim-Siu/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jovkusuma/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/raynertjx/ip.git (master)... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/J-hta-n/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yarnmengnus/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bhnuka/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yarnmengnus/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sopa301/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sopa301/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ngeeyonglim/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ngeeyonglim/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/raynertjx/ip.git (master)... +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/raynertjx/ip.git (master) completed! +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator analyzeRepos +INFO: [166/480] Analyzing https://github.com/tayruxin/ip.git (master)... +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tayruxin/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tayruxin/ip.git (master)... +Aug 30, 2023 1:26:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lamchenghou/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Carlintyj/ip.git completed! -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LWZ19/ip.git... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lamchenghou/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LWZ19/ip.git to complete... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lamchenghou/ip.git (master) completed! -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator analyzeRepos INFO: [167/480] Analyzing https://github.com/zhengyup/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Tim-Siu/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zhengyup/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zhengyup/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/raynertjx/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/raynertjx/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/raynertjx/ip.git (master) completed! -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [168/480] Analyzing https://github.com/larrywang0701/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/larrywang0701/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/larrywang0701/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/flexibo/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/flexibo/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yarnmengnus/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ngeeyonglim/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ItsTYtan/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sopa301/ip.git completed! +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/javinchua/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/amosting/ip.git... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ItsTYtan/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/amosting/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/javinchua/ip.git to complete... +Aug 30, 2023 1:26:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tayruxin/ip.git (master)... +Aug 30, 2023 1:26:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tayruxin/ip.git (master)... +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tayruxin/ip.git (master) completed! +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [168/480] Analyzing https://github.com/wxwern/ip.git (master)... +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wxwern/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wxwern/ip.git (master)... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/flexibo/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Cleon2/ip.git... +Aug 30, 2023 1:26:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/zhengyup/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wxwern/ip.git completed! -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/timleow/ip.git... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/timleow/ip.git to complete... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Cleon2/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zhengyup/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zhengyup/ip.git (master) completed! -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [169/480] Analyzing https://github.com/Carlintyj/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [169/480] Analyzing https://github.com/larrywang0701/ip.git (master)... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/amosting/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/javinchua/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ketweeen/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sudarshan2401/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ItsTYtan/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/larrywang0701/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/larrywang0701/ip.git (master)... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ketweeen/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wui-hong/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sudarshan2401/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wui-hong/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Cleon2/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Respirayson/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Respirayson/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ketweeen/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sudarshan2401/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wxwern/ip.git (master)... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Chrainx/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wui-hong/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/shishirbychapur/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/sunzihan23/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/shishirbychapur/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wxwern/ip.git (master)... +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wxwern/ip.git (master) completed! +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator analyzeRepos +INFO: [170/480] Analyzing https://github.com/Carlintyj/ip.git (master)... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Chrainx/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/sunzihan23/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Carlintyj/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Carlintyj/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/larrywang0701/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/larrywang0701/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/larrywang0701/ip.git (master) completed! -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator analyzeRepos -INFO: [170/480] Analyzing https://github.com/wxwern/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wxwern/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:14 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wxwern/ip.git (master)... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nubnubyas/ip.git completed! -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rayshawntan/ip.git... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aslam341/ip.git completed! -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LWZ19/ip.git completed! -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rayshawntan/ip.git to complete... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aexolate/ip.git... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Sheeepen/ip.git... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aexolate/ip.git to complete... -Aug 30, 2023 1:13:14 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Sheeepen/ip.git to complete... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Carlintyj/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Carlintyj/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Carlintyj/ip.git (master) completed! -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator analyzeRepos INFO: [171/480] Analyzing https://github.com/nubnubyas/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:19 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nubnubyas/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nubnubyas/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/timleow/ip.git completed! -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shuyangk/ip.git... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shuyangk/ip.git to complete... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wxwern/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wxwern/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wxwern/ip.git (master) completed! -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [172/480] Analyzing https://github.com/LWZ19/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/LWZ19/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/LWZ19/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Respirayson/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wj331/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wj331/ip.git to complete... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/shishirbychapur/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Chrainx/ip.git completed! +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tjch-o/ip.git... +Aug 30, 2023 1:26:19 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/licongshen12/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/sunzihan23/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tjch-o/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mamayuan/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/licongshen12/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mamayuan/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nubnubyas/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nubnubyas/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nubnubyas/ip.git (master) completed! -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [172/480] Analyzing https://github.com/LWZ19/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/LWZ19/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/LWZ19/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wj331/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ong-wei-hong/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ong-wei-hong/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Carlintyj/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Carlintyj/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Carlintyj/ip.git (master) completed! +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepos INFO: [173/480] Analyzing https://github.com/aslam341/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/aslam341/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/aslam341/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Sheeepen/ip.git completed! -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rayshawntan/ip.git completed! -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ncmathan/ip.git... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/iyioon/ip.git... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aexolate/ip.git completed! -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ncmathan/ip.git to complete... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kiwibang/ip.git... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/iyioon/ip.git to complete... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kiwibang/ip.git to complete... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/aslam341/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/aslam341/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/aslam341/ip.git (master) completed! -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [174/480] Analyzing https://github.com/timleow/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tjch-o/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LWZ19/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mamayuan/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/licongshen12/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tanboonkhong/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cbj252/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AlfredBeNoel/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AlfredBeNoel/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ong-wei-hong/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cbj252/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tanboonkhong/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/keaganpzh/ip.git... +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LWZ19/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LWZ19/ip.git (master) completed! -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [174/480] Analyzing https://github.com/rayshawntan/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/keaganpzh/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rayshawntan/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rayshawntan/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/aslam341/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/aslam341/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/aslam341/ip.git (master) completed! +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [175/480] Analyzing https://github.com/timleow/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/timleow/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/timleow/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [175/480] Analyzing https://github.com/Sheeepen/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Sheeepen/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Sheeepen/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/timleow/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/timleow/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/timleow/ip.git (master) completed! -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepos -INFO: [176/480] Analyzing https://github.com/rayshawntan/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator analyzeRepos +INFO: [176/480] Analyzing https://github.com/Sheeepen/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Sheeepen/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Sheeepen/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tanboonkhong/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cbj252/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ElginTZM/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ElginTZM/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AlfredBeNoel/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LimJH2002/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/keaganpzh/ip.git completed! +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LimJH2002/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cmHuang777/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cmHuang777/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/WeeeHung/ip.git... +Aug 30, 2023 1:26:20 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/WeeeHung/ip.git to complete... +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Sheeepen/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shuyangk/ip.git completed! -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rayshawntan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rayshawntan/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rayshawntan/ip.git (master)... +Aug 30, 2023 1:26:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Sheeepen/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Sheeepen/ip.git (master) completed! -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [177/480] Analyzing https://github.com/aexolate/ip.git (master)... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mingyu-wan/ip.git... -Aug 30, 2023 1:13:15 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mingyu-wan/ip.git to complete... -Aug 30, 2023 1:13:15 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rayshawntan/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rayshawntan/ip.git (master) completed! +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/aexolate/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:15 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/aexolate/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/iyioon/ip.git completed! -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LuoZYi/ip.git... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LuoZYi/ip.git to complete... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kiwibang/ip.git completed! -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ncmathan/ip.git completed! -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/asdfghjkxd/ip.git... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/asdfghjkxd/ip.git to complete... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sushiyade/ip.git... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sushiyade/ip.git to complete... -Aug 30, 2023 1:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rayshawntan/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [178/480] Analyzing https://github.com/shuyangk/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/shuyangk/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/shuyangk/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shuyangk/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shuyangk/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shuyangk/ip.git (master) completed! +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [179/480] Analyzing https://github.com/ncmathan/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/WeeeHung/ip.git completed! +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cmHuang777/ip.git completed! +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LimJH2002/ip.git completed! +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xxiaoweii/ip.git... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xxiaoweii/ip.git to complete... +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ncmathan/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ncmathan/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rayyan35p/ip.git... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dhruvir29/ip.git... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rayyan35p/ip.git to complete... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dhruvir29/ip.git to complete... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ElginTZM/ip.git completed! +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/LinWanLeii/ip.git... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/LinWanLeii/ip.git to complete... +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/aexolate/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rayshawntan/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rayshawntan/ip.git (master) completed! -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [178/480] Analyzing https://github.com/shuyangk/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ncmathan/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ncmathan/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ncmathan/ip.git (master) completed! +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [180/480] Analyzing https://github.com/iyioon/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/aexolate/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/aexolate/ip.git (master) completed! -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/shuyangk/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/shuyangk/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [179/480] Analyzing https://github.com/iyioon/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mingyu-wan/ip.git completed! -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepos +INFO: [181/480] Analyzing https://github.com/kiwibang/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/iyioon/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/iyioon/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Nid21cs/ip.git... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Nid21cs/ip.git to complete... -Aug 30, 2023 1:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shuyangk/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shuyangk/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shuyangk/ip.git (master) completed! -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [180/480] Analyzing https://github.com/kiwibang/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kiwibang/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:16 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kiwibang/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LuoZYi/ip.git completed! -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/McNaBry/ip.git... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/McNaBry/ip.git to complete... -Aug 30, 2023 1:13:16 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/iyioon/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sushiyade/ip.git completed! -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/miljyy/ip.git... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/asdfghjkxd/ip.git completed! -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/miljyy/ip.git to complete... -Aug 30, 2023 1:13:16 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/iyioon/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/iyioon/ip.git (master) completed! -Aug 30, 2023 1:13:16 AM reposense.report.ReportGenerator analyzeRepos -INFO: [181/480] Analyzing https://github.com/ncmathan/ip.git (master)... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ncduy0303/ip.git... -Aug 30, 2023 1:13:16 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ncduy0303/ip.git to complete... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ncmathan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ncmathan/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rayyan35p/ip.git completed! +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dhruvir29/ip.git completed! +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xxiaoweii/ip.git completed! +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Song-Mengfei/ip.git... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jinyuan0425/ip.git... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tiif/ip.git... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Song-Mengfei/ip.git to complete... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tiif/ip.git to complete... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jinyuan0425/ip.git to complete... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/LinWanLeii/ip.git completed! +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nicholascher/ip.git... +Aug 30, 2023 1:26:21 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nicholascher/ip.git to complete... +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kiwibang/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kiwibang/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kiwibang/ip.git (master) completed! -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Nid21cs/ip.git completed! -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [182/480] Analyzing https://github.com/mingyu-wan/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/eyelessrhyme7/ip.git... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/eyelessrhyme7/ip.git to complete... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mingyu-wan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mingyu-wan/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ncmathan/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ncmathan/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ncmathan/ip.git (master) completed! -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/iyioon/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/iyioon/ip.git (master)... +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/iyioon/ip.git (master) completed! +Aug 30, 2023 1:26:21 AM reposense.report.ReportGenerator analyzeRepos INFO: [183/480] Analyzing https://github.com/LuoZYi/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tiif/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Song-Mengfei/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/hcs1203/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/papataco14/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/papataco14/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jinyuan0425/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/hcs1203/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LuoZYi/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LuoZYi/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicholascher/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KamJiaYue/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KamJiaYue/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/NereusWB922/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/NereusWB922/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/mingyu-wan/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mingyu-wan/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mingyu-wan/ip.git (master) completed! -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [184/480] Analyzing https://github.com/sushiyade/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sushiyade/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sushiyade/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [184/480] Analyzing https://github.com/asdfghjkxd/ip.git (master)... +Aug 30, 2023 1:26:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LuoZYi/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LuoZYi/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LuoZYi/ip.git (master) completed! -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [185/480] Analyzing https://github.com/asdfghjkxd/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator analyzeRepos +INFO: [185/480] Analyzing https://github.com/sushiyade/ip.git (master)... +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/asdfghjkxd/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/asdfghjkxd/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sushiyade/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sushiyade/ip.git (master)... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/papataco14/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/PohSayKeong/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KamJiaYue/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PohSayKeong/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ivyy-poison/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/hcs1203/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sushiyade/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/NereusWB922/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jacobcuison/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ivyy-poison/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ji-just-ji/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jacobcuison/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sushiyade/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sushiyade/ip.git (master) completed! -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator analyzeRepos INFO: [186/480] Analyzing https://github.com/Nid21cs/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ji-just-ji/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Nid21cs/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Nid21cs/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/McNaBry/ip.git completed! -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ruishanteo/ip.git... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ruishanteo/ip.git to complete... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Nid21cs/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Nid21cs/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Nid21cs/ip.git (master) completed! -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator analyzeRepos INFO: [187/480] Analyzing https://github.com/McNaBry/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ncduy0303/ip.git completed! -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:22 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/McNaBry/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/McNaBry/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/m1oojv/ip.git... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/miljyy/ip.git completed! -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/m1oojv/ip.git to complete... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Nixx162/ip.git... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/eyelessrhyme7/ip.git completed! -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Nixx162/ip.git to complete... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Gabriel4357/ip.git... -Aug 30, 2023 1:13:17 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Gabriel4357/ip.git to complete... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/McNaBry/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/McNaBry/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/McNaBry/ip.git (master) completed! -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator analyzeRepos -INFO: [188/480] Analyzing https://github.com/ncduy0303/ip.git (master)... -Aug 30, 2023 1:13:17 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ncduy0303/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:17 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ncduy0303/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PohSayKeong/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kohkaijie/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kohkaijie/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ivyy-poison/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ji-just-ji/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rocketninja7/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jacobcuison/ip.git completed! +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zekone/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rocketninja7/ip.git to complete... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/markgcera/ip.git... +Aug 30, 2023 1:26:22 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zekone/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/markgcera/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/asdfghjkxd/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/McNaBry/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/asdfghjkxd/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/asdfghjkxd/ip.git (master) completed! -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [189/480] Analyzing https://github.com/miljyy/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [188/480] Analyzing https://github.com/miljyy/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/McNaBry/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/McNaBry/ip.git (master) completed! +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [189/480] Analyzing https://github.com/eyelessrhyme7/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kohkaijie/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/PearlynnT/ip.git... +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/miljyy/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/miljyy/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ruishanteo/ip.git completed! -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mfjkri/ip.git... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mfjkri/ip.git to complete... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ncduy0303/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/PearlynnT/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/eyelessrhyme7/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/eyelessrhyme7/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/eyelessrhyme7/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/miljyy/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ncduy0303/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ncduy0303/ip.git (master) completed! -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/eyelessrhyme7/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/eyelessrhyme7/ip.git (master) completed! +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [190/480] Analyzing https://github.com/ncduy0303/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/miljyy/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/miljyy/ip.git (master) completed! -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [190/480] Analyzing https://github.com/eyelessrhyme7/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/markgcera/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepos INFO: [191/480] Analyzing https://github.com/ruishanteo/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/m1oojv/ip.git completed! -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/junhonglow/ip.git... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/junhonglow/ip.git to complete... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/StevenLiudw/ip.git... +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ruishanteo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ruishanteo/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Nixx162/ip.git completed! -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/eyelessrhyme7/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/eyelessrhyme7/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Gabriel4357/ip.git completed! -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RoeReRe/ip.git... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Badatprogrammiing/ip.git... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RoeReRe/ip.git to complete... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Badatprogrammiing/ip.git to complete... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/eyelessrhyme7/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/eyelessrhyme7/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/eyelessrhyme7/ip.git (master) completed! -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [192/480] Analyzing https://github.com/m1oojv/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/m1oojv/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/m1oojv/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/StevenLiudw/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ncduy0303/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ncduy0303/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rocketninja7/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zekone/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/TeeRenJing/ip.git... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/mounilsankar/ip.git... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/TeeRenJing/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/mounilsankar/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/PearlynnT/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dloh2236/ip.git... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dloh2236/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/StevenLiudw/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ncduy0303/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/TeeRenJing/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ruishanteo/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/m1oojv/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zannloo/ip.git... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/mounilsankar/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ncduy0303/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dloh2236/ip.git completed! +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ncduy0303/ip.git (master) completed! +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/junnengsoo/ip.git... +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [192/480] Analyzing https://github.com/m1oojv/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/freshcabbage123/ip.git... +Aug 30, 2023 1:26:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ruishanteo/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ruishanteo/ip.git (master) completed! -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [193/480] Analyzing https://github.com/Gabriel4357/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/m1oojv/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/m1oojv/ip.git (master) completed! -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator analyzeRepos -INFO: [194/480] Analyzing https://github.com/Nixx162/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Gabriel4357/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Gabriel4357/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator analyzeRepos +INFO: [193/480] Analyzing https://github.com/Nixx162/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kokseng1/ip.git... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zannloo/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/freshcabbage123/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/junnengsoo/ip.git to complete... +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Nixx162/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:18 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Nixx162/ip.git (master)... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mfjkri/ip.git completed! -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nknguyenhc/ip.git... -Aug 30, 2023 1:13:18 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nknguyenhc/ip.git to complete... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Badatprogrammiing/ip.git completed! -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RoeReRe/ip.git completed! -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/junhonglow/ip.git completed! -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/winson8222/ip.git... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wujy28/ip.git... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/winson8222/ip.git to complete... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SimWPEric/ip.git... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wujy28/ip.git to complete... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SimWPEric/ip.git to complete... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:23 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/m1oojv/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/m1oojv/ip.git (master)... +Aug 30, 2023 1:26:23 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kokseng1/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/m1oojv/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Nixx162/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/m1oojv/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/m1oojv/ip.git (master) completed! +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [194/480] Analyzing https://github.com/Gabriel4357/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Nixx162/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Nixx162/ip.git (master) completed! -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepos INFO: [195/480] Analyzing https://github.com/mfjkri/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Gabriel4357/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Gabriel4357/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mfjkri/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mfjkri/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zannloo/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/junnengsoo/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/itsNatTan/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kokseng1/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/freshcabbage123/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tjingsheng/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/itsNatTan/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tjingsheng/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ZD292/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alientian/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ZD292/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alientian/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Gabriel4357/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Gabriel4357/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Gabriel4357/ip.git (master) completed! -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [196/480] Analyzing https://github.com/RoeReRe/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/RoeReRe/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/RoeReRe/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RoeReRe/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RoeReRe/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RoeReRe/ip.git (master) completed! -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [197/480] Analyzing https://github.com/Badatprogrammiing/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [196/480] Analyzing https://github.com/junhonglow/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/itsNatTan/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/junhonglow/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/junhonglow/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/frrrrry/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alientian/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/frrrrry/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wanghejin/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wanghejin/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ZD292/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/MagnificentCreature/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tjingsheng/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/MagnificentCreature/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/SungMatt/ip.git... +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/mfjkri/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Badatprogrammiing/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Badatprogrammiing/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/SungMatt/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mfjkri/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mfjkri/ip.git (master) completed! -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [198/480] Analyzing https://github.com/junhonglow/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/junhonglow/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/junhonglow/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wujy28/ip.git completed! -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nknguyenhc/ip.git completed! -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lerxuann/ip.git... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HugeNoob/ip.git... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SimWPEric/ip.git completed! -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/winson8222/ip.git completed! -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HugeNoob/ip.git to complete... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lerxuann/ip.git to complete... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Weiennn/ip.git... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/maj0-0/ip.git... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Weiennn/ip.git to complete... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [197/480] Analyzing https://github.com/Badatprogrammiing/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Badatprogrammiing/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Badatprogrammiing/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/junhonglow/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/maj0-0/ip.git to complete... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/junhonglow/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/junhonglow/ip.git (master) completed! -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepos -INFO: [199/480] Analyzing https://github.com/nknguyenhc/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator analyzeRepos +INFO: [198/480] Analyzing https://github.com/RoeReRe/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/frrrrry/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/RoeReRe/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/RoeReRe/ip.git (master)... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/andrefoo/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wanghejin/ip.git completed! +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/andrefoo/ip.git to complete... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tohpinren/ip.git... +Aug 30, 2023 1:26:24 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tohpinren/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/SungMatt/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/XihuaZ/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/XihuaZ/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/MagnificentCreature/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xavierpok/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xavierpok/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Badatprogrammiing/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nknguyenhc/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:19 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nknguyenhc/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RoeReRe/ip.git (master)... +Aug 30, 2023 1:26:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Badatprogrammiing/ip.git (master)... -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Badatprogrammiing/ip.git (master) completed! -Aug 30, 2023 1:13:19 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator analyzeRepos +INFO: [199/480] Analyzing https://github.com/nknguyenhc/ip.git (master)... +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nknguyenhc/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nknguyenhc/ip.git (master)... +Aug 30, 2023 1:26:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RoeReRe/ip.git (master)... +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RoeReRe/ip.git (master) completed! +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [200/480] Analyzing https://github.com/wujy28/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/andrefoo/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wujy28/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wujy28/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/bkjwjason/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/bkjwjason/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/XihuaZ/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xavierpok/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Choonyan02/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tohpinren/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/aarontxz/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jianyangg/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Choonyan02/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jianyangg/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wujy28/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nknguyenhc/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/aarontxz/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wujy28/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wujy28/ip.git (master) completed! -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [201/480] Analyzing https://github.com/SimWPEric/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SimWPEric/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SimWPEric/ip.git (master)... +Aug 30, 2023 1:26:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nknguyenhc/ip.git (master)... +Aug 30, 2023 1:26:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nknguyenhc/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nknguyenhc/ip.git (master) completed! -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator analyzeRepos INFO: [202/480] Analyzing https://github.com/winson8222/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SimWPEric/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SimWPEric/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/bkjwjason/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tayian/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/winson8222/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/winson8222/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lerxuann/ip.git completed! -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/qyaner/ip.git... -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/qyaner/ip.git to complete... -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HugeNoob/ip.git completed! -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/maj0-0/ip.git completed! -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ruiyangzh/ip.git... -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Weiennn/ip.git completed! -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Bombbird2001/ip.git... -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hyc17003/ip.git... -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ruiyangzh/ip.git to complete... -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hyc17003/ip.git to complete... -Aug 30, 2023 1:13:20 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Bombbird2001/ip.git to complete... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tayian/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Choonyan02/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jianyangg/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wnchan/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Jweewee/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/aarontxz/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wnchan/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/cyaoxuan/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Jweewee/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/cyaoxuan/ip.git to complete... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tayian/ip.git completed! +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/anthonytamzil/ip.git... +Aug 30, 2023 1:26:25 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/anthonytamzil/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SimWPEric/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/winson8222/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SimWPEric/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SimWPEric/ip.git (master) completed! -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [203/480] Analyzing https://github.com/lerxuann/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/winson8222/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lerxuann/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lerxuann/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [203/480] Analyzing https://github.com/HugeNoob/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/winson8222/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/winson8222/ip.git (master) completed! -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [204/480] Analyzing https://github.com/maj0-0/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/maj0-0/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/maj0-0/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [204/480] Analyzing https://github.com/lerxuann/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wnchan/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/HugeNoob/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/HugeNoob/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lerxuann/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lerxuann/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/CelestineTan03/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Jweewee/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/cyaoxuan/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/CelestineTan03/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/saltedfishxx/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/euchangxian/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/saltedfishxx/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/euchangxian/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lerxuann/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lerxuann/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lerxuann/ip.git (master) completed! -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [205/480] Analyzing https://github.com/HugeNoob/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [205/480] Analyzing https://github.com/maj0-0/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/maj0-0/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/maj0-0/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/anthonytamzil/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/AlagappanRa/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/AlagappanRa/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/CelestineTan03/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ken-Lai/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/saltedfishxx/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ken-Lai/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/euchangxian/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/felibunnyy/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/itssisi/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/felibunnyy/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/itssisi/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/maj0-0/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/HugeNoob/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/HugeNoob/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/HugeNoob/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/maj0-0/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/maj0-0/ip.git (master) completed! -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator analyzeRepos -INFO: [206/480] Analyzing https://github.com/Weiennn/ip.git (master)... -Aug 30, 2023 1:13:20 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Weiennn/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:20 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Weiennn/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/HugeNoob/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hyc17003/ip.git completed! -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [206/480] Analyzing https://github.com/qyaner/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HugeNoob/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HugeNoob/ip.git (master) completed! -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [207/480] Analyzing https://github.com/hyc17003/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/adammangzijun/ip.git... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/qyaner/ip.git completed! -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/adammangzijun/ip.git to complete... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ruiyangzh/ip.git completed! -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/andytoh1/ip.git... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Originalidk/ip.git... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Bombbird2001/ip.git completed! -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/andytoh1/ip.git to complete... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Originalidk/ip.git to complete... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hyc17003/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hyc17003/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/quzhetao01/ip.git... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/quzhetao01/ip.git to complete... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Weiennn/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Weiennn/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Weiennn/ip.git (master) completed! -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [208/480] Analyzing https://github.com/qyaner/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hyc17003/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hyc17003/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator analyzeRepos +INFO: [207/480] Analyzing https://github.com/Weiennn/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/qyaner/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/qyaner/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hyc17003/ip.git (master) completed! -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [209/480] Analyzing https://github.com/ruiyangzh/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:26 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Weiennn/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Weiennn/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/AlagappanRa/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jamz903/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jamz903/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ken-Lai/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/felibunnyy/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Kevin-Liusx/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Propene-Dan/ip.git... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Kevin-Liusx/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Propene-Dan/ip.git to complete... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/itssisi/ip.git completed! +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChuanXinNg/ip.git... +Aug 30, 2023 1:26:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/qyaner/ip.git (master)... +Aug 30, 2023 1:26:26 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChuanXinNg/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/qyaner/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/qyaner/ip.git (master) completed! +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [208/480] Analyzing https://github.com/ruiyangzh/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +WARNING: Exception met while trying to clone the repo "Propene-Dan/ip[master]", will skip this repo. +reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Propene-Dan/ip.git' 'repos/Propene-Dan_ip/ip_bare' on path . : +Cloning into bare repository 'repos/Propene-Dan_ip/ip_bare'... +fatal: could not read Username for 'https://github.com': No such device or address + + at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) + at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) + at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) + at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) + at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) + at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) + at java.base/java.lang.Thread.run(Thread.java:829) + +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kenvynKwek/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kenvynKwek/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ruiyangzh/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ruiyangzh/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jamz903/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Ruizhi2001/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Ruizhi2001/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Kevin-Liusx/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/prawnzyy/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/prawnzyy/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ruiyangzh/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Weiennn/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ruiyangzh/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ruiyangzh/ip.git (master) completed! -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [210/480] Analyzing https://github.com/Bombbird2001/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/qyaner/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [209/480] Analyzing https://github.com/Bombbird2001/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Weiennn/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Weiennn/ip.git (master) completed! +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [210/480] Analyzing https://github.com/adammangzijun/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Bombbird2001/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Bombbird2001/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/qyaner/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/qyaner/ip.git (master) completed! -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/adammangzijun/ip.git completed! -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/quzhetao01/ip.git completed! -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator analyzeRepos -INFO: [211/480] Analyzing https://github.com/adammangzijun/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/InfiBeyond/ip.git... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Bearypop/ip.git... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Originalidk/ip.git completed! -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/InfiBeyond/ip.git to complete... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/andytoh1/ip.git completed! -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sp4ce-cowboy/ip.git... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JasonLCY-Temp/ip.git... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Bearypop/ip.git to complete... -Aug 30, 2023 1:13:21 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/adammangzijun/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:21 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/adammangzijun/ip.git (master)... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JasonLCY-Temp/ip.git to complete... -Aug 30, 2023 1:13:21 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sp4ce-cowboy/ip.git to complete... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Bombbird2001/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChuanXinNg/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/saraozn/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kenvynKwek/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nicholastng010601/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/saraozn/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nicholastng010601/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Ruizhi2001/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/prawnzyy/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DistractedCat/ip.git... +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/adammangzijun/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yezkez10/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DistractedCat/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yezkez10/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/adammangzijun/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/adammangzijun/ip.git (master) completed! -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [212/480] Analyzing https://github.com/quzhetao01/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [211/480] Analyzing https://github.com/hyc17003/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hyc17003/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hyc17003/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/saraozn/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/revdrag/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/revdrag/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicholastng010601/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hyc17003/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/alvinlim277/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DistractedCat/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/alvinlim277/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/JasonRay168/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yezkez10/ip.git completed! +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hyc17003/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hyc17003/ip.git (master) completed! +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [212/480] Analyzing https://github.com/andytoh1/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/billieboy7/ip.git... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/JasonRay168/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/billieboy7/ip.git to complete... +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/andytoh1/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/andytoh1/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Bombbird2001/ip.git (master)... +Aug 30, 2023 1:26:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Bombbird2001/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Bombbird2001/ip.git (master) completed! -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [213/480] Analyzing https://github.com/andytoh1/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:27 AM reposense.report.ReportGenerator analyzeRepos +INFO: [213/480] Analyzing https://github.com/quzhetao01/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/quzhetao01/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/quzhetao01/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/andytoh1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/andytoh1/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/revdrag/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jannnice/ip.git... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/andytoh1/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/quzhetao01/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jannnice/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/andytoh1/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/andytoh1/ip.git (master) completed! -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepos INFO: [214/480] Analyzing https://github.com/Originalidk/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/quzhetao01/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/quzhetao01/ip.git (master) completed! -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Originalidk/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Originalidk/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Originalidk/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Originalidk/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Originalidk/ip.git (master) completed! -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JasonLCY-Temp/ip.git completed! -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/InfiBeyond/ip.git completed! -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [215/480] Analyzing https://github.com/JasonLCY-Temp/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wjayee/ip.git... -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wjayee/ip.git to complete... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [216/480] Analyzing https://github.com/InfiBeyond/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vivienherq/ip.git... -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vivienherq/ip.git to complete... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/JasonRay168/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/alvinlim277/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/quzhetao01/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/billieboy7/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/evanyan13/ip.git... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/samuelim01/ip.git... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dinde2004/ip.git... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/quzhetao01/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/quzhetao01/ip.git (master) completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/samuelim01/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [215/480] Analyzing https://github.com/InfiBeyond/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/evanyan13/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dinde2004/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/InfiBeyond/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/InfiBeyond/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sp4ce-cowboy/ip.git completed! -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jamesebond/ip.git... -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jamesebond/ip.git to complete... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/JasonLCY-Temp/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/JasonLCY-Temp/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Bearypop/ip.git completed! -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jonyeokj/ip.git... -Aug 30, 2023 1:13:22 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jonyeokj/ip.git to complete... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jannnice/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/seanpzk/ip.git... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/seanpzk/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Originalidk/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Originalidk/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Originalidk/ip.git (master) completed! +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [216/480] Analyzing https://github.com/sp4ce-cowboy/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/InfiBeyond/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/InfiBeyond/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/InfiBeyond/ip.git (master) completed! -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [217/480] Analyzing https://github.com/sp4ce-cowboy/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/sp4ce-cowboy/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/sp4ce-cowboy/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/JasonLCY-Temp/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/InfiBeyond/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/InfiBeyond/ip.git (master) completed! +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [217/480] Analyzing https://github.com/Bearypop/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Bearypop/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Bearypop/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/samuelim01/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/KumChaiYin/ip.git... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/evanyan13/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/KumChaiYin/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dinde2004/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lsyurea/ip.git... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Sasmik23/ip.git... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sp4ce-cowboy/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/JasonLCY-Temp/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/JasonLCY-Temp/ip.git (master) completed! -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepos -INFO: [218/480] Analyzing https://github.com/Bearypop/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lsyurea/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Sasmik23/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sp4ce-cowboy/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sp4ce-cowboy/ip.git (master) completed! -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Bearypop/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:22 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Bearypop/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [218/480] Analyzing https://github.com/JasonLCY-Temp/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/seanpzk/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/JasonLCY-Temp/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/JasonLCY-Temp/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/geraldngjx/ip.git... +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/geraldngjx/ip.git to complete... +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Bearypop/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Bearypop/ip.git (master)... -Aug 30, 2023 1:13:22 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Bearypop/ip.git (master) completed! -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vivienherq/ip.git completed! -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/victorlaiyeeteng/ip.git... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [219/480] Analyzing https://github.com/vivienherq/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/victorlaiyeeteng/ip.git to complete... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/vivienherq/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/vivienherq/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wjayee/ip.git completed! -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [220/480] Analyzing https://github.com/wjayee/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lyuanww/ip.git... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jamesebond/ip.git completed! -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lyuanww/ip.git to complete... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yongning0310/ip.git... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator analyzeRepos +INFO: [219/480] Analyzing https://github.com/wjayee/ip.git (master)... +Aug 30, 2023 1:26:28 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wjayee/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wjayee/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yongning0310/ip.git to complete... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jonyeokj/ip.git completed! -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Cloud7050/ip.git... -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/vivienherq/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Cloud7050/ip.git to complete... -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/vivienherq/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/vivienherq/ip.git (master) completed! -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepos -INFO: [221/480] Analyzing https://github.com/jamesebond/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jamesebond/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jamesebond/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Sasmik23/ip.git completed! +Aug 30, 2023 1:26:28 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lululwtv/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/KumChaiYin/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lululwtv/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lsyurea/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/garylow2001/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/geraldngjx/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/leontan2/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/garylow2001/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/leontan2/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wamps-jp/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wamps-jp/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/JasonLCY-Temp/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/JasonLCY-Temp/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/JasonLCY-Temp/ip.git (master) completed! +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [220/480] Analyzing https://github.com/vivienherq/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/vivienherq/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/vivienherq/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lululwtv/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dickongwd/ip.git... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wjayee/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jamesebond/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dickongwd/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/garylow2001/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jacksonyuan256/ip.git... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wjayee/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/leontan2/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wjayee/ip.git (master) completed! -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jamesebond/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jamesebond/ip.git (master) completed! -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepos +INFO: [221/480] Analyzing https://github.com/jamesebond/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jacksonyuan256/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/suryanshkushwaha/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/suryanshkushwaha/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jamesebond/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jamesebond/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wamps-jp/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wr1159/ip.git... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/vivienherq/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wr1159/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/vivienherq/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/vivienherq/ip.git (master) completed! +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [222/480] Analyzing https://github.com/jonyeokj/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "Cloud7050/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Cloud7050/ip.git' 'repos/Cloud7050_ip/ip_bare' on path . : -Cloning into bare repository 'repos/Cloud7050_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LoMaply/ip.git... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LoMaply/ip.git to complete... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jonyeokj/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jonyeokj/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jonyeokj/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jonyeokj/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jonyeokj/ip.git (master) completed! -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/victorlaiyeeteng/ip.git completed! -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tllshan/ip.git... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jamesebond/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jamesebond/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jamesebond/ip.git (master) completed! +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [223/480] Analyzing https://github.com/victorlaiyeeteng/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tllshan/ip.git to complete... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/victorlaiyeeteng/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/victorlaiyeeteng/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lyuanww/ip.git completed! -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Gavino3o/ip.git... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dickongwd/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jacksonyuan256/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Nauxe/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/suryanshkushwaha/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/yyyaohhh/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/yyyaohhh/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Nauxe/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/zhanyang01/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/zhanyang01/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wr1159/ip.git completed! +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/czhiruo/ip.git... +Aug 30, 2023 1:26:29 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/czhiruo/ip.git to complete... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jonyeokj/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jonyeokj/ip.git (master)... +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jonyeokj/ip.git (master) completed! +Aug 30, 2023 1:26:29 AM reposense.report.ReportGenerator analyzeRepos INFO: [224/480] Analyzing https://github.com/lyuanww/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Gavino3o/ip.git to complete... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yongning0310/ip.git completed! -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/HollaG/ip.git... -Aug 30, 2023 1:13:23 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/HollaG/ip.git to complete... -Aug 30, 2023 1:13:23 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lyuanww/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:23 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lyuanww/ip.git (master)... -Aug 30, 2023 1:13:23 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Nauxe/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/victorpengmx/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/victorpengmx/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/yyyaohhh/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/longnguyentan/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/longnguyentan/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/victorlaiyeeteng/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/czhiruo/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/zhanyang01/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/victorlaiyeeteng/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/victorlaiyeeteng/ip.git (master) completed! -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepos INFO: [225/480] Analyzing https://github.com/yongning0310/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Cikguseven/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Eola-Z/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Eola-Z/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Cikguseven/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yongning0310/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yongning0310/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lyuanww/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lyuanww/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lyuanww/ip.git (master) completed! -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LoMaply/ip.git completed! -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepos INFO: [226/480] Analyzing https://github.com/LoMaply/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cheeggered/ip.git... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cheeggered/ip.git to complete... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LoMaply/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LoMaply/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yongning0310/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yongning0310/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yongning0310/ip.git (master) completed! -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tllshan/ip.git completed! -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xenosf/ip.git... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepos INFO: [227/480] Analyzing https://github.com/tllshan/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xenosf/ip.git to complete... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/victorpengmx/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/longnguyentan/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jibtaf/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tllshan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tllshan/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Gavino3o/ip.git completed! -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TehOPanas/ip.git... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/HollaG/ip.git completed! -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/neyapraveen/ip.git... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TehOPanas/ip.git to complete... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/neyapraveen/ip.git to complete... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/lipwei1808/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jibtaf/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/lipwei1808/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Cikguseven/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Eola-Z/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Mohammed-Faizzzz/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/dylkaw/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Mohammed-Faizzzz/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/dylkaw/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LoMaply/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tllshan/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LoMaply/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LoMaply/ip.git (master) completed! -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepos +INFO: [228/480] Analyzing https://github.com/Gavino3o/ip.git (master)... +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Gavino3o/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Gavino3o/ip.git (master)... +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tllshan/ip.git (master)... +Aug 30, 2023 1:26:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tllshan/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tllshan/ip.git (master) completed! -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepos -INFO: [228/480] Analyzing https://github.com/Gavino3o/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator analyzeRepos INFO: [229/480] Analyzing https://github.com/HollaG/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jibtaf/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/lipwei1808/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/HollaG/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/HollaG/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Gavino3o/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Gavino3o/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cheeggered/ip.git completed! -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/richiehx/ip.git... -Aug 30, 2023 1:13:24 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/richiehx/ip.git to complete... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nikele2001/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nikele2001/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DeltonCheng/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Mohammed-Faizzzz/ip.git completed! +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DeltonCheng/ip.git to complete... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ChangruHenryQian/ip.git... +Aug 30, 2023 1:26:30 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/dylkaw/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/craigtonlian/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ChangruHenryQian/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/craigtonlian/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/HollaG/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/HollaG/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/HollaG/ip.git (master) completed! -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [230/480] Analyzing https://github.com/cheeggered/ip.git (master)... -Aug 30, 2023 1:13:24 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/cheeggered/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:24 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/cheeggered/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xenosf/ip.git completed! -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cheeggered/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cheeggered/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cheeggered/ip.git (master) completed! -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AlyssaPng/ip.git... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [231/480] Analyzing https://github.com/xenosf/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AlyssaPng/ip.git to complete... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xenosf/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xenosf/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ChangruHenryQian/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Gavino3o/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/neyapraveen/ip.git completed! -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TehOPanas/ip.git completed! -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/leezhengjing/ip.git... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/seantehds/ip.git... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/leezhengjing/ip.git to complete... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/ruo-x/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/ruo-x/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Gavino3o/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Gavino3o/ip.git (master) completed! -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/seantehds/ip.git to complete... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator analyzeRepos +INFO: [231/480] Analyzing https://github.com/xenosf/ip.git (master)... +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xenosf/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xenosf/ip.git (master)... +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cheeggered/ip.git (master)... +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cheeggered/ip.git (master)... +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cheeggered/ip.git (master) completed! +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [232/480] Analyzing https://github.com/TehOPanas/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DeltonCheng/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nikele2001/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/craigtonlian/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/iantsaii/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/iantsaii/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/wjacobw/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/angkyakdifp/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TehOPanas/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TehOPanas/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/richiehx/ip.git completed! -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ceilingFan456/ip.git... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ceilingFan456/ip.git to complete... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/wjacobw/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/angkyakdifp/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/ruo-x/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/brein62/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/brein62/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/xenosf/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/xenosf/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/xenosf/ip.git (master) completed! -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator analyzeRepos INFO: [233/480] Analyzing https://github.com/neyapraveen/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:31 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/neyapraveen/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/neyapraveen/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/iantsaii/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nicrandomlee/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nicrandomlee/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/wjacobw/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/angkyakdifp/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Bryan-Goh/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/kiatkat/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Bryan-Goh/ip.git to complete... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/brein62/ip.git completed! +Aug 30, 2023 1:26:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TehOPanas/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/MadLamprey/ip.git... +Aug 30, 2023 1:26:31 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/kiatkat/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/MadLamprey/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TehOPanas/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TehOPanas/ip.git (master) completed! -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepos INFO: [234/480] Analyzing https://github.com/richiehx/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/neyapraveen/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/richiehx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/richiehx/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/neyapraveen/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/neyapraveen/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/neyapraveen/ip.git (master) completed! -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [235/480] Analyzing https://github.com/AlyssaPng/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AlyssaPng/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AlyssaPng/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nicrandomlee/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/xyT-T/ip.git... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/xyT-T/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/kiatkat/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jiakai-17/ip.git... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jiakai-17/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Bryan-Goh/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/MadLamprey/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nreHieW/ip.git... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/nathanielcalimag/ip.git... +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/richiehx/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nreHieW/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/nathanielcalimag/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/richiehx/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/richiehx/ip.git (master) completed! -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/seantehds/ip.git completed! -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [235/480] Analyzing https://github.com/seantehds/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lihongguang00/ip.git... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/leezhengjing/ip.git completed! -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AlyssaPng/ip.git completed! -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lihongguang00/ip.git to complete... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Singa-pirate/ip.git... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/songfangyl/ip.git... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator analyzeRepos -INFO: [236/480] Analyzing https://github.com/AlyssaPng/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/songfangyl/ip.git to complete... -Aug 30, 2023 1:13:25 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Singa-pirate/ip.git to complete... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AlyssaPng/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AlyssaPng/ip.git (master)... -Aug 30, 2023 1:13:25 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/seantehds/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:25 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/seantehds/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ceilingFan456/ip.git completed! -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/vansh284/ip.git... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/vansh284/ip.git to complete... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/xyT-T/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [236/480] Analyzing https://github.com/leezhengjing/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Saezenn/ip.git... +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/leezhengjing/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/leezhengjing/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Saezenn/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AlyssaPng/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AlyssaPng/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AlyssaPng/ip.git (master) completed! -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [237/480] Analyzing https://github.com/leezhengjing/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/seantehds/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/leezhengjing/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/leezhengjing/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/seantehds/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/seantehds/ip.git (master) completed! -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [238/480] Analyzing https://github.com/ceilingFan456/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [237/480] Analyzing https://github.com/ceilingFan456/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ceilingFan456/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ceilingFan456/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jiakai-17/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/jellywaiyan/ip.git... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/jellywaiyan/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/leezhengjing/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nreHieW/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/marquestye/ip.git... +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/leezhengjing/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/leezhengjing/ip.git (master) completed! -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/marquestye/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/nathanielcalimag/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [238/480] Analyzing https://github.com/seantehds/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ceilingFan456/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Tang-Moyan/ip.git... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Tang-Moyan/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ceilingFan456/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ceilingFan456/ip.git (master) completed! -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/songfangyl/ip.git completed! -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/YeoBohShin/ip.git... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [239/480] Analyzing https://github.com/songfangyl/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/YeoBohShin/ip.git to complete... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Singa-pirate/ip.git completed! -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/songfangyl/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/songfangyl/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [240/480] Analyzing https://github.com/Singa-pirate/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shuenj/ip.git... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shuenj/ip.git to complete... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lihongguang00/ip.git completed! -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lunaroddity/ip.git... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lunaroddity/ip.git to complete... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Singa-pirate/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Singa-pirate/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/vansh284/ip.git completed! -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/andrechuakj/ip.git... -Aug 30, 2023 1:13:26 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/andrechuakj/ip.git to complete... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/songfangyl/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/songfangyl/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/songfangyl/ip.git (master) completed! -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [241/480] Analyzing https://github.com/lihongguang00/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator analyzeRepos +INFO: [239/480] Analyzing https://github.com/lihongguang00/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Saezenn/ip.git completed! +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/DonovanJJ/ip.git... +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/seantehds/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/seantehds/ip.git (master)... +Aug 30, 2023 1:26:32 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/DonovanJJ/ip.git to complete... +Aug 30, 2023 1:26:32 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lihongguang00/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lihongguang00/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Singa-pirate/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Singa-pirate/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Singa-pirate/ip.git (master) completed! -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepos -INFO: [242/480] Analyzing https://github.com/vansh284/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/jellywaiyan/ip.git completed! +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Sebtey/ip.git... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Sebtey/ip.git to complete... +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lihongguang00/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/vansh284/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:26 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/vansh284/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lihongguang00/ip.git (master)... -Aug 30, 2023 1:13:26 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lihongguang00/ip.git (master) completed! -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/YeoBohShin/ip.git completed! -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [243/480] Analyzing https://github.com/YeoBohShin/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/WeeMingQing/ip.git... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/WeeMingQing/ip.git to complete... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/YeoBohShin/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/YeoBohShin/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [240/480] Analyzing https://github.com/vansh284/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/marquestye/ip.git completed! +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/vansh284/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/vansh284/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/rionshocker/ip.git... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Tang-Moyan/ip.git completed! +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/rionshocker/ip.git to complete... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/tyouwei/ip.git... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/DonovanJJ/ip.git completed! +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/tyouwei/ip.git to complete... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner spawnCloneProcess +INFO: Cloning in parallel from https://github.com/Blizzeracz/ip.git... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Waiting for cloning of https://github.com/Blizzeracz/ip.git to complete... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Sebtey/ip.git completed! +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/seantehds/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/seantehds/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/seantehds/ip.git (master) completed! +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [241/480] Analyzing https://github.com/songfangyl/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/songfangyl/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/songfangyl/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/songfangyl/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/songfangyl/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/songfangyl/ip.git (master) completed! +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [242/480] Analyzing https://github.com/Singa-pirate/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/rionshocker/ip.git completed! +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Singa-pirate/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Singa-pirate/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/Blizzeracz/ip.git completed! +Aug 30, 2023 1:26:33 AM reposense.report.RepoCloner waitForCloneProcess +INFO: Cloning of https://github.com/tyouwei/ip.git completed! +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/vansh284/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lunaroddity/ip.git completed! -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shuenj/ip.git completed! -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aliciamichellew/ip.git... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/samuelmui8/ip.git... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/vansh284/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/vansh284/ip.git (master) completed! -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [243/480] Analyzing https://github.com/YeoBohShin/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Singa-pirate/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/YeoBohShin/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/YeoBohShin/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Singa-pirate/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Singa-pirate/ip.git (master) completed! +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepos INFO: [244/480] Analyzing https://github.com/lunaroddity/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/samuelmui8/ip.git to complete... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aliciamichellew/ip.git to complete... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lunaroddity/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lunaroddity/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/YeoBohShin/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/YeoBohShin/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/YeoBohShin/ip.git (master) completed! -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepos INFO: [245/480] Analyzing https://github.com/shuenj/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lunaroddity/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shuenj/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shuenj/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/andrechuakj/ip.git completed! -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/antonTan96/ip.git... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lunaroddity/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/antonTan96/ip.git to complete... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lunaroddity/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lunaroddity/ip.git (master) completed! -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [246/480] Analyzing https://github.com/andrechuakj/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/andrechuakj/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/andrechuakj/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/andrechuakj/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/andrechuakj/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/andrechuakj/ip.git (master) completed! -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/WeeMingQing/ip.git completed! -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/owenyeo/ip.git... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepos -INFO: [247/480] Analyzing https://github.com/WeeMingQing/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/owenyeo/ip.git to complete... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator analyzeRepos +INFO: [246/480] Analyzing https://github.com/WeeMingQing/ip.git (master)... +Aug 30, 2023 1:26:33 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/WeeMingQing/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:27 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/WeeMingQing/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aliciamichellew/ip.git completed! -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/gongg21/ip.git... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/gongg21/ip.git to complete... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/shuenj/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/samuelmui8/ip.git completed! -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nabonitasen/ip.git... -Aug 30, 2023 1:13:27 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nabonitasen/ip.git to complete... -Aug 30, 2023 1:13:27 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/shuenj/ip.git (master)... -Aug 30, 2023 1:13:27 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/shuenj/ip.git (master) completed! -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [248/480] Analyzing https://github.com/aliciamichellew/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/aliciamichellew/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/aliciamichellew/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/WeeMingQing/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/WeeMingQing/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/WeeMingQing/ip.git (master) completed! -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [249/480] Analyzing https://github.com/samuelmui8/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [247/480] Analyzing https://github.com/aliciamichellew/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/aliciamichellew/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/aliciamichellew/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/shuenj/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/shuenj/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/shuenj/ip.git (master) completed! +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [248/480] Analyzing https://github.com/samuelmui8/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/samuelmui8/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/samuelmui8/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/antonTan96/ip.git completed! -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/erohsikivar/ip.git... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/erohsikivar/ip.git to complete... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/samuelmui8/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/samuelmui8/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/samuelmui8/ip.git (master) completed! -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [250/480] Analyzing https://github.com/antonTan96/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/antonTan96/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/antonTan96/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/aliciamichellew/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/aliciamichellew/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/aliciamichellew/ip.git (master) completed! -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [249/480] Analyzing https://github.com/antonTan96/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/antonTan96/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/antonTan96/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/samuelmui8/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/samuelmui8/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/samuelmui8/ip.git (master) completed! +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [250/480] Analyzing https://github.com/gongg21/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/gongg21/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/gongg21/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/antonTan96/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/antonTan96/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/antonTan96/ip.git (master) completed! -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/owenyeo/ip.git completed! -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos INFO: [251/480] Analyzing https://github.com/owenyeo/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/pzl111/ip.git... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/pzl111/ip.git to complete... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/owenyeo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/owenyeo/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nabonitasen/ip.git completed! -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/gongg21/ip.git completed! -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/teozern1/ip.git... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/gongg21/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/gongg21/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/gongg21/ip.git (master) completed! +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos INFO: [252/480] Analyzing https://github.com/nabonitasen/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Elijah5399/ip.git... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Elijah5399/ip.git to complete... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/teozern1/ip.git to complete... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nabonitasen/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nabonitasen/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/owenyeo/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/owenyeo/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/owenyeo/ip.git (master) completed! -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [253/480] Analyzing https://github.com/gongg21/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/gongg21/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/gongg21/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [253/480] Analyzing https://github.com/andrechuakj/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/andrechuakj/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/andrechuakj/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nabonitasen/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/erohsikivar/ip.git completed! -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nicleongyj/ip.git... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nabonitasen/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nabonitasen/ip.git (master) completed! -Aug 30, 2023 1:13:28 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nicleongyj/ip.git to complete... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepos -INFO: [254/480] Analyzing https://github.com/erohsikivar/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [254/480] Analyzing https://github.com/pzl111/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/andrechuakj/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/pzl111/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/pzl111/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/andrechuakj/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/andrechuakj/ip.git (master) completed! +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [255/480] Analyzing https://github.com/erohsikivar/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/erohsikivar/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:28 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/erohsikivar/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/gongg21/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/erohsikivar/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/pzl111/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/erohsikivar/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/erohsikivar/ip.git (master) completed! -Aug 30, 2023 1:13:28 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/gongg21/ip.git (master)... -Aug 30, 2023 1:13:28 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/gongg21/ip.git (master) completed! -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/pzl111/ip.git completed! -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [255/480] Analyzing https://github.com/pzl111/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/WinSheng1/ip.git... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/WinSheng1/ip.git to complete... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/pzl111/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/pzl111/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/pzl111/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/pzl111/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [256/480] Analyzing https://github.com/Elijah5399/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/pzl111/ip.git (master) completed! -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/teozern1/ip.git completed! -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ryamgoh/ip.git... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [256/480] Analyzing https://github.com/teozern1/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ryamgoh/ip.git to complete... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/teozern1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/teozern1/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Elijah5399/ip.git completed! -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [257/480] Analyzing https://github.com/Elijah5399/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yucongkoo/ip.git... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yucongkoo/ip.git to complete... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [257/480] Analyzing https://github.com/teozern1/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Elijah5399/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Elijah5399/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicleongyj/ip.git completed! -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Chen-Kuei/ip.git... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Chen-Kuei/ip.git to complete... -Aug 30, 2023 1:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/teozern1/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/teozern1/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Elijah5399/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/teozern1/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Elijah5399/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Elijah5399/ip.git (master) completed! -Aug 30, 2023 1:13:29 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos +INFO: [258/480] Analyzing https://github.com/nicleongyj/ip.git (master)... +Aug 30, 2023 1:26:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/teozern1/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/teozern1/ip.git (master) completed! -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator analyzeRepos -INFO: [258/480] Analyzing https://github.com/nicleongyj/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/WinSheng1/ip.git completed! -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator analyzeRepos INFO: [259/480] Analyzing https://github.com/WinSheng1/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/conradsoon/ip.git... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nicleongyj/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nicleongyj/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/conradsoon/ip.git to complete... -Aug 30, 2023 1:13:29 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:34 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/WinSheng1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:29 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/WinSheng1/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ryamgoh/ip.git completed! -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/GSgiansen/ip.git... -Aug 30, 2023 1:13:29 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/GSgiansen/ip.git to complete... -Aug 30, 2023 1:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nicleongyj/ip.git (master)... -Aug 30, 2023 1:13:29 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/WinSheng1/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nicleongyj/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nicleongyj/ip.git (master) completed! -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [260/480] Analyzing https://github.com/ryamgoh/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yucongkoo/ip.git completed! -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/et-irl/ip.git... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/et-irl/ip.git to complete... -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [260/480] Analyzing https://github.com/Chen-Kuei/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/WinSheng1/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/WinSheng1/ip.git (master) completed! -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [261/480] Analyzing https://github.com/yucongkoo/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Chen-Kuei/ip.git completed! -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/marioalvaro/ip.git... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/yucongkoo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/yucongkoo/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ryamgoh/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ryamgoh/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/marioalvaro/ip.git to complete... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/conradsoon/ip.git completed! -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Seonlo99/ip.git... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Seonlo99/ip.git to complete... -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ryamgoh/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ryamgoh/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ryamgoh/ip.git (master) completed! -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [262/480] Analyzing https://github.com/Chen-Kuei/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Chen-Kuei/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Chen-Kuei/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/yucongkoo/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/yucongkoo/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Chen-Kuei/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Chen-Kuei/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Chen-Kuei/ip.git (master) completed! -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/yucongkoo/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [263/480] Analyzing https://github.com/conradsoon/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/yucongkoo/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/yucongkoo/ip.git (master) completed! -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [262/480] Analyzing https://github.com/conradsoon/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/conradsoon/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/conradsoon/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/conradsoon/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/GSgiansen/ip.git completed! -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/et-irl/ip.git completed! -Aug 30, 2023 1:13:30 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/conradsoon/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/conradsoon/ip.git (master) completed! -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/joel-foo/ip.git... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [264/480] Analyzing https://github.com/GSgiansen/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator analyzeRepos -INFO: [265/480] Analyzing https://github.com/et-irl/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tim-pipi/ip.git... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/joel-foo/ip.git to complete... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/marioalvaro/ip.git completed! -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tim-pipi/ip.git to complete... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/marcellaantania/ip.git... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/GSgiansen/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/GSgiansen/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/marcellaantania/ip.git to complete... -Aug 30, 2023 1:13:30 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/et-irl/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:30 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/et-irl/ip.git (master)... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Seonlo99/ip.git completed! -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/brendanneojw/ip.git... -Aug 30, 2023 1:13:30 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/brendanneojw/ip.git to complete... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/et-irl/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/et-irl/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/et-irl/ip.git (master) completed! -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [266/480] Analyzing https://github.com/marioalvaro/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/GSgiansen/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/conradsoon/ip.git (master) completed! +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [263/480] Analyzing https://github.com/ryamgoh/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ryamgoh/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ryamgoh/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/yucongkoo/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/yucongkoo/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/yucongkoo/ip.git (master) completed! +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [264/480] Analyzing https://github.com/GSgiansen/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/GSgiansen/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/GSgiansen/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ryamgoh/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ryamgoh/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ryamgoh/ip.git (master) completed! +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [265/480] Analyzing https://github.com/marioalvaro/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/marioalvaro/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/marioalvaro/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/marioalvaro/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/marioalvaro/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/marioalvaro/ip.git (master) completed! +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [266/480] Analyzing https://github.com/et-irl/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/GSgiansen/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/GSgiansen/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/GSgiansen/ip.git (master) completed! -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos INFO: [267/480] Analyzing https://github.com/Seonlo99/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/et-irl/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/et-irl/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Seonlo99/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Seonlo99/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/marioalvaro/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/marioalvaro/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/marioalvaro/ip.git (master) completed! -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Seonlo99/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/joel-foo/ip.git completed! -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/marcellaantania/ip.git completed! -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/li-rongzhi/ip.git... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [268/480] Analyzing https://github.com/joel-foo/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Seonlo99/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Seonlo99/ip.git (master) completed! -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KamiliArsyad/ip.git... -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KamiliArsyad/ip.git to complete... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [269/480] Analyzing https://github.com/marcellaantania/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tim-pipi/ip.git completed! -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/seraphimstreets/ip.git... -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/seraphimstreets/ip.git to complete... -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/li-rongzhi/ip.git to complete... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/marcellaantania/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/marcellaantania/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [268/480] Analyzing https://github.com/joel-foo/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/joel-foo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/joel-foo/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/et-irl/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/et-irl/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/et-irl/ip.git (master) completed! +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [269/480] Analyzing https://github.com/brendanneojw/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/brendanneojw/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/brendanneojw/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/brendanneojw/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/brendanneojw/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/brendanneojw/ip.git (master) completed! +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [270/480] Analyzing https://github.com/marcellaantania/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/joel-foo/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/marcellaantania/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/marcellaantania/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/joel-foo/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/joel-foo/ip.git (master) completed! +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [271/480] Analyzing https://github.com/tim-pipi/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tim-pipi/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tim-pipi/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/marcellaantania/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/brendanneojw/ip.git completed! -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/trgao/ip.git... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/marcellaantania/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/marcellaantania/ip.git (master) completed! -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [270/480] Analyzing https://github.com/tim-pipi/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/trgao/ip.git to complete... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tim-pipi/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tim-pipi/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator analyzeRepos +INFO: [272/480] Analyzing https://github.com/li-rongzhi/ip.git (master)... +Aug 30, 2023 1:26:35 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/li-rongzhi/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/li-rongzhi/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tim-pipi/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/joel-foo/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tim-pipi/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tim-pipi/ip.git (master) completed! -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepos -INFO: [271/480] Analyzing https://github.com/brendanneojw/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/brendanneojw/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:31 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/brendanneojw/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/joel-foo/ip.git (master)... -Aug 30, 2023 1:13:31 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/joel-foo/ip.git (master) completed! -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KamiliArsyad/ip.git completed! -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lilozz2/ip.git... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [272/480] Analyzing https://github.com/KamiliArsyad/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/seraphimstreets/ip.git completed! -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/li-rongzhi/ip.git completed! -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lilozz2/ip.git to complete... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jean-cq/ip.git... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jedkohjk/ip.git... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/KamiliArsyad/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/KamiliArsyad/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jedkohjk/ip.git to complete... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jean-cq/ip.git to complete... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/brendanneojw/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/brendanneojw/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/brendanneojw/ip.git (master) completed! -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [273/480] Analyzing https://github.com/seraphimstreets/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/seraphimstreets/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/seraphimstreets/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KamiliArsyad/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/trgao/ip.git completed! -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KamiliArsyad/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yytan25/ip.git... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KamiliArsyad/ip.git (master) completed! -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [274/480] Analyzing https://github.com/li-rongzhi/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yytan25/ip.git to complete... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/li-rongzhi/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/li-rongzhi/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/seraphimstreets/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/seraphimstreets/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/seraphimstreets/ip.git (master) completed! -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [274/480] Analyzing https://github.com/KamiliArsyad/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/KamiliArsyad/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/KamiliArsyad/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KamiliArsyad/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KamiliArsyad/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/li-rongzhi/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KamiliArsyad/ip.git (master) completed! +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [275/480] Analyzing https://github.com/trgao/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/trgao/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/trgao/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lilozz2/ip.git completed! -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ryantzr1/ip.git... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jean-cq/ip.git completed! -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/maypfv/ip.git... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ryantzr1/ip.git to complete... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/maypfv/ip.git to complete... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/li-rongzhi/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/li-rongzhi/ip.git (master) completed! +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [276/480] Analyzing https://github.com/jean-cq/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jean-cq/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jean-cq/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jean-cq/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jean-cq/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jean-cq/ip.git (master) completed! +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [277/480] Analyzing https://github.com/jedkohjk/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jedkohjk/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jedkohjk/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/trgao/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jedkohjk/ip.git completed! -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TohLiYuan/ip.git... -Aug 30, 2023 1:13:32 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TohLiYuan/ip.git to complete... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/trgao/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/trgao/ip.git (master) completed! -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator analyzeRepos -INFO: [276/480] Analyzing https://github.com/lilozz2/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [278/480] Analyzing https://github.com/lilozz2/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lilozz2/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:32 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lilozz2/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/li-rongzhi/ip.git (master)... -Aug 30, 2023 1:13:32 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/li-rongzhi/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/li-rongzhi/ip.git (master) completed! -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [277/480] Analyzing https://github.com/jean-cq/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lilozz2/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yytan25/ip.git completed! -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jean-cq/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jean-cq/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lilozz2/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lilozz2/ip.git (master) completed! -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JizhuoChen/ip.git... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [278/480] Analyzing https://github.com/jedkohjk/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JizhuoChen/ip.git to complete... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jedkohjk/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jedkohjk/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jean-cq/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jean-cq/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jean-cq/ip.git (master) completed! -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos INFO: [279/480] Analyzing https://github.com/yytan25/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yytan25/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yytan25/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yytan25/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yytan25/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yytan25/ip.git (master) completed! -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ryantzr1/ip.git completed! -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChongWeiJie29/ip.git... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [280/480] Analyzing https://github.com/ryantzr1/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChongWeiJie29/ip.git to complete... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ryantzr1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ryantzr1/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TohLiYuan/ip.git completed! -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/maypfv/ip.git completed! -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Goh-Li-Ting/ip.git... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kristayeo/ip.git... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kristayeo/ip.git to complete... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Goh-Li-Ting/ip.git to complete... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jedkohjk/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jedkohjk/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jedkohjk/ip.git (master) completed! -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [281/480] Analyzing https://github.com/maypfv/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JizhuoChen/ip.git completed! -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/derekjxtan/ip.git... -Aug 30, 2023 1:13:33 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/derekjxtan/ip.git to complete... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [280/480] Analyzing https://github.com/maypfv/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/maypfv/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/maypfv/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ryantzr1/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ryantzr1/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ryantzr1/ip.git (master) completed! -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [282/480] Analyzing https://github.com/TohLiYuan/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/TohLiYuan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/TohLiYuan/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jedkohjk/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jedkohjk/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/maypfv/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jedkohjk/ip.git (master) completed! +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [281/480] Analyzing https://github.com/TohLiYuan/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/maypfv/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/maypfv/ip.git (master) completed! -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator analyzeRepos -INFO: [283/480] Analyzing https://github.com/JizhuoChen/ip.git (master)... -Aug 30, 2023 1:13:33 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepos +INFO: [282/480] Analyzing https://github.com/JizhuoChen/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/TohLiYuan/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/TohLiYuan/ip.git (master)... +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JizhuoChen/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:33 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JizhuoChen/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChongWeiJie29/ip.git completed! -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/TohLiYuan/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shashahchk/ip.git... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shashahchk/ip.git to complete... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TohLiYuan/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:36 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TohLiYuan/ip.git (master) completed! -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [284/480] Analyzing https://github.com/ChongWeiJie29/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChongWeiJie29/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChongWeiJie29/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kristayeo/ip.git completed! -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Goh-Li-Ting/ip.git completed! -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Chandan8186/ip.git... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alyssaongyx/ip.git... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Chandan8186/ip.git to complete... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alyssaongyx/ip.git to complete... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [283/480] Analyzing https://github.com/ryantzr1/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/JizhuoChen/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ryantzr1/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ryantzr1/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JizhuoChen/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JizhuoChen/ip.git (master) completed! -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [285/480] Analyzing https://github.com/kristayeo/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/kristayeo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/kristayeo/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [284/480] Analyzing https://github.com/ChongWeiJie29/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChongWeiJie29/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChongWeiJie29/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ChongWeiJie29/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ryantzr1/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ChongWeiJie29/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ChongWeiJie29/ip.git (master) completed! -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [285/480] Analyzing https://github.com/kristayeo/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ryantzr1/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ryantzr1/ip.git (master) completed! +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [286/480] Analyzing https://github.com/Goh-Li-Ting/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/derekjxtan/ip.git completed! -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/kristayeo/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/kristayeo/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Goh-Li-Ting/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Goh-Li-Ting/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AndrewJanong/ip.git... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AndrewJanong/ip.git to complete... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kristayeo/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kristayeo/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kristayeo/ip.git (master) completed! -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [287/480] Analyzing https://github.com/derekjxtan/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Goh-Li-Ting/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/derekjxtan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/derekjxtan/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Goh-Li-Ting/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Goh-Li-Ting/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Goh-Li-Ting/ip.git (master) completed! -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shashahchk/ip.git completed! -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [288/480] Analyzing https://github.com/shashahchk/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kailash201/ip.git... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kailash201/ip.git to complete... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shashahchk/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shashahchk/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/derekjxtan/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/derekjxtan/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/derekjxtan/ip.git (master) completed! -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alyssaongyx/ip.git completed! -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Chandan8186/ip.git completed! -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/laurenlim2112/ip.git... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepos -INFO: [289/480] Analyzing https://github.com/alyssaongyx/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lambraydon/ip.git... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/laurenlim2112/ip.git to complete... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [289/480] Analyzing https://github.com/AndrewJanong/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AndrewJanong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AndrewJanong/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shashahchk/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lambraydon/ip.git to complete... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alyssaongyx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alyssaongyx/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shashahchk/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shashahchk/ip.git (master) completed! -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos INFO: [290/480] Analyzing https://github.com/Chandan8186/ip.git (master)... -Aug 30, 2023 1:13:34 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Chandan8186/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:34 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Chandan8186/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AndrewJanong/ip.git completed! -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sk2001git/ip.git... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sk2001git/ip.git to complete... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AndrewJanong/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AndrewJanong/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AndrewJanong/ip.git (master) completed! +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [291/480] Analyzing https://github.com/alyssaongyx/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alyssaongyx/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alyssaongyx/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/alyssaongyx/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/alyssaongyx/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/alyssaongyx/ip.git (master) completed! -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [291/480] Analyzing https://github.com/AndrewJanong/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AndrewJanong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AndrewJanong/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kailash201/ip.git completed! -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [292/480] Analyzing https://github.com/laurenlim2112/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/laurenlim2112/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/laurenlim2112/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Chandan8186/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chonguschonguschongus/ip.git... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chonguschonguschongus/ip.git to complete... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Chandan8186/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Chandan8186/ip.git (master) completed! -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [292/480] Analyzing https://github.com/Kailash201/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AndrewJanong/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [293/480] Analyzing https://github.com/Kailash201/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kailash201/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kailash201/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AndrewJanong/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AndrewJanong/ip.git (master) completed! -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lambraydon/ip.git completed! -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [293/480] Analyzing https://github.com/lambraydon/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lshaoqin/ip.git... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lshaoqin/ip.git to complete... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/laurenlim2112/ip.git completed! -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/lambraydon/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/lambraydon/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/peasantbird/ip.git... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/peasantbird/ip.git to complete... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sk2001git/ip.git completed! -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/WangCheng0116/ip.git... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/WangCheng0116/ip.git to complete... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Kailash201/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Kailash201/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Kailash201/ip.git (master) completed! -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [294/480] Analyzing https://github.com/laurenlim2112/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/laurenlim2112/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/laurenlim2112/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lambraydon/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lambraydon/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lambraydon/ip.git (master) completed! -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator analyzeRepos -INFO: [295/480] Analyzing https://github.com/sk2001git/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sk2001git/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:35 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sk2001git/ip.git (master)... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chonguschonguschongus/ip.git completed! -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/teozhengyang/ip.git... -Aug 30, 2023 1:13:35 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/teozhengyang/ip.git to complete... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lshaoqin/ip.git completed! -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chewjh1234/ip.git... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chewjh1234/ip.git to complete... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [294/480] Analyzing https://github.com/lambraydon/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/lambraydon/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/lambraydon/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/laurenlim2112/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/peasantbird/ip.git completed! -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/laurenlim2112/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/elaineshijie/ip.git... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/laurenlim2112/ip.git (master) completed! -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [296/480] Analyzing https://github.com/chonguschonguschongus/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/elaineshijie/ip.git to complete... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sk2001git/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/WangCheng0116/ip.git completed! -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [295/480] Analyzing https://github.com/sk2001git/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sk2001git/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sk2001git/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lambraydon/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lambraydon/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lambraydon/ip.git (master) completed! +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator analyzeRepos +INFO: [296/480] Analyzing https://github.com/peasantbird/ip.git (master)... +Aug 30, 2023 1:26:37 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/peasantbird/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/peasantbird/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/peasantbird/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/peasantbird/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/peasantbird/ip.git (master) completed! +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [297/480] Analyzing https://github.com/chonguschonguschongus/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chonguschonguschongus/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chonguschonguschongus/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sk2001git/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sk2001git/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sk2001git/ip.git (master) completed! -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lynnlow175/ip.git... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [297/480] Analyzing https://github.com/lshaoqin/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lynnlow175/ip.git to complete... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [298/480] Analyzing https://github.com/lshaoqin/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lshaoqin/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lshaoqin/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chonguschonguschongus/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lshaoqin/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chonguschonguschongus/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chonguschonguschongus/ip.git (master) completed! -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepos -INFO: [298/480] Analyzing https://github.com/peasantbird/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lshaoqin/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lshaoqin/ip.git (master) completed! -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [299/480] Analyzing https://github.com/WangCheng0116/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/peasantbird/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/peasantbird/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lshaoqin/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/WangCheng0116/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/WangCheng0116/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/WangCheng0116/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/WangCheng0116/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/WangCheng0116/ip.git (master) completed! -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/peasantbird/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/peasantbird/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/peasantbird/ip.git (master) completed! -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/teozhengyang/ip.git completed! -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lshaoqin/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lshaoqin/ip.git (master) completed! +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [300/480] Analyzing https://github.com/teozhengyang/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lordidiot/ip.git... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lordidiot/ip.git to complete... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/teozhengyang/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/teozhengyang/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chewjh1234/ip.git completed! -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/WangCheng0116/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/WangCheng0116/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/WangCheng0116/ip.git (master) completed! +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [301/480] Analyzing https://github.com/chewjh1234/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/chew01/ip.git... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/chew01/ip.git to complete... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/teozhengyang/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chewjh1234/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chewjh1234/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/elaineshijie/ip.git completed! -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lynnlow175/ip.git completed! -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/RSXIX/ip.git... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/juliusgambe/ip.git... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/teozhengyang/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/juliusgambe/ip.git to complete... -Aug 30, 2023 1:13:36 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/RSXIX/ip.git to complete... -Aug 30, 2023 1:13:36 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/teozhengyang/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/teozhengyang/ip.git (master) completed! -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [302/480] Analyzing https://github.com/elaineshijie/ip.git (master)... -Aug 30, 2023 1:13:36 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/elaineshijie/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:36 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/elaineshijie/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chewjh1234/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chewjh1234/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chewjh1234/ip.git (master) completed! -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [303/480] Analyzing https://github.com/lynnlow175/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lynnlow175/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lynnlow175/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/elaineshijie/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/elaineshijie/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/elaineshijie/ip.git (master) completed! -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lynnlow175/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/lynnlow175/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/lynnlow175/ip.git (master) completed! -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lordidiot/ip.git completed! -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [304/480] Analyzing https://github.com/lordidiot/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhonghan721/ip.git... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhonghan721/ip.git to complete... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lordidiot/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lordidiot/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/chew01/ip.git completed! -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lynnlow175/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/lynnlow175/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/lynnlow175/ip.git (master) completed! +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos INFO: [305/480] Analyzing https://github.com/chew01/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/WZWren/ip.git... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/WZWren/ip.git to complete... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/lordidiot/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/chew01/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/chew01/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/lordidiot/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lordidiot/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lordidiot/ip.git (master) completed! -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/RSXIX/ip.git completed! -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [306/480] Analyzing https://github.com/RSXIX/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/inezkok/ip.git... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/inezkok/ip.git to complete... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/RSXIX/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/RSXIX/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/juliusgambe/ip.git completed! -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wasjoe1/ip.git... -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wasjoe1/ip.git to complete... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/RSXIX/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/RSXIX/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/RSXIX/ip.git (master) completed! -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [307/480] Analyzing https://github.com/juliusgambe/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [306/480] Analyzing https://github.com/juliusgambe/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/juliusgambe/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:37 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/juliusgambe/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/chew01/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/chew01/ip.git (master)... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/chew01/ip.git (master) completed! -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhonghan721/ip.git completed! -Aug 30, 2023 1:13:37 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kokrui/ip.git... -Aug 30, 2023 1:13:37 AM reposense.report.ReportGenerator analyzeRepos -INFO: [308/480] Analyzing https://github.com/zhonghan721/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kokrui/ip.git to complete... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [307/480] Analyzing https://github.com/zhonghan721/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/zhonghan721/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/zhonghan721/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/WZWren/ip.git completed! -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jinyang628/ip.git... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jinyang628/ip.git to complete... -Aug 30, 2023 1:13:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/juliusgambe/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/juliusgambe/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/juliusgambe/ip.git (master) completed! -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [309/480] Analyzing https://github.com/WZWren/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/inezkok/ip.git completed! -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nananakx-x/ip.git... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nananakx-x/ip.git to complete... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator analyzeRepos +INFO: [308/480] Analyzing https://github.com/WZWren/ip.git (master)... +Aug 30, 2023 1:26:38 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/WZWren/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/WZWren/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wasjoe1/ip.git completed! -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ylyma/ip.git... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ylyma/ip.git to complete... -Aug 30, 2023 1:13:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/WZWren/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhonghan721/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/WZWren/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/WZWren/ip.git (master) completed! -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [310/480] Analyzing https://github.com/inezkok/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhonghan721/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kokrui/ip.git completed! -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AnnabelTing/ip.git... -Aug 30, 2023 1:13:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [309/480] Analyzing https://github.com/wasjoe1/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zhonghan721/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/inezkok/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/inezkok/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zhonghan721/ip.git (master) completed! -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AnnabelTing/ip.git to complete... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [311/480] Analyzing https://github.com/wasjoe1/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wasjoe1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wasjoe1/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jinyang628/ip.git completed! -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/timetraveller-123/ip.git... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/timetraveller-123/ip.git to complete... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nananakx-x/ip.git completed! -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LicongHuang/ip.git... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ylyma/ip.git completed! -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LicongHuang/ip.git to complete... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jweng88/ip.git... -Aug 30, 2023 1:13:38 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [310/480] Analyzing https://github.com/inezkok/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/inezkok/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/inezkok/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wasjoe1/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jweng88/ip.git to complete... -Aug 30, 2023 1:13:38 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wasjoe1/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wasjoe1/ip.git (master) completed! -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator analyzeRepos -INFO: [312/480] Analyzing https://github.com/kokrui/ip.git (master)... -Aug 30, 2023 1:13:38 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [311/480] Analyzing https://github.com/kokrui/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kokrui/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:38 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kokrui/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kokrui/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/inezkok/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kokrui/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kokrui/ip.git (master) completed! -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [312/480] Analyzing https://github.com/jinyang628/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jinyang628/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jinyang628/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/inezkok/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/inezkok/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/inezkok/ip.git (master) completed! -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [313/480] Analyzing https://github.com/jinyang628/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [313/480] Analyzing https://github.com/RSXIX/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/RSXIX/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/RSXIX/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/RSXIX/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/RSXIX/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/RSXIX/ip.git (master) completed! +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [314/480] Analyzing https://github.com/nananakx-x/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jinyang628/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nananakx-x/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nananakx-x/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jinyang628/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jinyang628/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AnnabelTing/ip.git completed! -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/EricXiong420/ip.git... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/EricXiong420/ip.git to complete... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nananakx-x/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nananakx-x/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nananakx-x/ip.git (master) completed! -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jinyang628/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jinyang628/ip.git (master) completed! +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [315/480] Analyzing https://github.com/ylyma/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/timetraveller-123/ip.git completed! -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ylyma/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ylyma/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jovkusuma/ip.git... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jovkusuma/ip.git to complete... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jinyang628/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jweng88/ip.git completed! -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LicongHuang/ip.git completed! -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jinyang628/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bhnuka/ip.git... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jinyang628/ip.git (master) completed! -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/J-hta-n/ip.git... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [316/480] Analyzing https://github.com/AnnabelTing/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/J-hta-n/ip.git to complete... -Aug 30, 2023 1:13:39 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bhnuka/ip.git to complete... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AnnabelTing/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AnnabelTing/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nananakx-x/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nananakx-x/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nananakx-x/ip.git (master) completed! +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [316/480] Analyzing https://github.com/timetraveller-123/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ylyma/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ylyma/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ylyma/ip.git (master) completed! -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepos -INFO: [317/480] Analyzing https://github.com/timetraveller-123/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos +INFO: [317/480] Analyzing https://github.com/AnnabelTing/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/timetraveller-123/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/timetraveller-123/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AnnabelTing/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AnnabelTing/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AnnabelTing/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AnnabelTing/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AnnabelTing/ip.git (master) completed! -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [318/480] Analyzing https://github.com/LicongHuang/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LicongHuang/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LicongHuang/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/timetraveller-123/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/timetraveller-123/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/timetraveller-123/ip.git (master) completed! -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [319/480] Analyzing https://github.com/Jweng88/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LicongHuang/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jweng88/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jweng88/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LicongHuang/ip.git (master)... +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LicongHuang/ip.git (master)... -Aug 30, 2023 1:13:39 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LicongHuang/ip.git (master) completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/EricXiong420/ip.git completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Tim-Siu/ip.git... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [320/480] Analyzing https://github.com/EricXiong420/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Tim-Siu/ip.git to complete... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/EricXiong420/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:39 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/EricXiong420/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jovkusuma/ip.git completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yarnmengnus/ip.git... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bhnuka/ip.git completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yarnmengnus/ip.git to complete... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sopa301/ip.git... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sopa301/ip.git to complete... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/J-hta-n/ip.git completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ngeeyonglim/ip.git... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ngeeyonglim/ip.git to complete... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Jweng88/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/EricXiong420/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/EricXiong420/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:39 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Jweng88/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/EricXiong420/ip.git (master) completed! -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Jweng88/ip.git (master) completed! -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:39 AM reposense.report.ReportGenerator analyzeRepos INFO: [321/480] Analyzing https://github.com/jovkusuma/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [322/480] Analyzing https://github.com/bhnuka/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/EricXiong420/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/EricXiong420/ip.git (master) completed! +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [322/480] Analyzing https://github.com/J-hta-n/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jovkusuma/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jovkusuma/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bhnuka/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bhnuka/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/J-hta-n/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/J-hta-n/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jovkusuma/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/bhnuka/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jovkusuma/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jovkusuma/ip.git (master) completed! -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [323/480] Analyzing https://github.com/J-hta-n/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/bhnuka/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/bhnuka/ip.git (master) completed! -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/J-hta-n/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/J-hta-n/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [323/480] Analyzing https://github.com/bhnuka/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bhnuka/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bhnuka/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/J-hta-n/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/J-hta-n/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/J-hta-n/ip.git (master) completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Tim-Siu/ip.git completed! -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [324/480] Analyzing https://github.com/Tim-Siu/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/flexibo/ip.git... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/flexibo/ip.git to complete... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Tim-Siu/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Tim-Siu/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/bhnuka/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/bhnuka/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/bhnuka/ip.git (master) completed! +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [325/480] Analyzing https://github.com/ngeeyonglim/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ngeeyonglim/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ngeeyonglim/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Tim-Siu/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sopa301/ip.git completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ItsTYtan/ip.git... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepos -INFO: [325/480] Analyzing https://github.com/sopa301/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yarnmengnus/ip.git completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ngeeyonglim/ip.git completed! -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ItsTYtan/ip.git to complete... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/javinchua/ip.git... -Aug 30, 2023 1:13:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Tim-Siu/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Tim-Siu/ip.git (master) completed! -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [326/480] Analyzing https://github.com/yarnmengnus/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/amosting/ip.git... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/amosting/ip.git to complete... -Aug 30, 2023 1:13:40 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/javinchua/ip.git to complete... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sopa301/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sopa301/ip.git (master)... -Aug 30, 2023 1:13:40 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yarnmengnus/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yarnmengnus/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/sopa301/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ngeeyonglim/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ngeeyonglim/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ngeeyonglim/ip.git (master) completed! +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [327/480] Analyzing https://github.com/sopa301/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sopa301/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sopa301/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yarnmengnus/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sopa301/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yarnmengnus/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sopa301/ip.git (master) completed! -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yarnmengnus/ip.git (master) completed! -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [327/480] Analyzing https://github.com/ngeeyonglim/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ngeeyonglim/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ngeeyonglim/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/flexibo/ip.git completed! -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [328/480] Analyzing https://github.com/flexibo/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Cleon2/ip.git... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Cleon2/ip.git to complete... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/flexibo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/flexibo/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/javinchua/ip.git completed! -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/amosting/ip.git completed! -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ketweeen/ip.git... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ngeeyonglim/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ItsTYtan/ip.git completed! -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sudarshan2401/ip.git... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wui-hong/ip.git... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ketweeen/ip.git to complete... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wui-hong/ip.git to complete... -Aug 30, 2023 1:13:41 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sudarshan2401/ip.git to complete... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ngeeyonglim/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ngeeyonglim/ip.git (master) completed! -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [329/480] Analyzing https://github.com/javinchua/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/javinchua/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/javinchua/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/sopa301/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sopa301/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sopa301/ip.git (master) completed! +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [329/480] Analyzing https://github.com/amosting/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/amosting/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/amosting/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/flexibo/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/flexibo/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/flexibo/ip.git (master) completed! -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepos -INFO: [330/480] Analyzing https://github.com/amosting/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/amosting/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/amosting/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [330/480] Analyzing https://github.com/javinchua/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/javinchua/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/javinchua/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/amosting/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/amosting/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/amosting/ip.git (master) completed! -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [331/480] Analyzing https://github.com/ItsTYtan/ip.git (master)... -Aug 30, 2023 1:13:41 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ItsTYtan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ItsTYtan/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Cleon2/ip.git completed! -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ketweeen/ip.git completed! -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Respirayson/ip.git... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/javinchua/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Chrainx/ip.git... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Chrainx/ip.git to complete... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wui-hong/ip.git completed! -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Respirayson/ip.git to complete... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/shishirbychapur/ip.git... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/javinchua/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/javinchua/ip.git (master) completed! -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [332/480] Analyzing https://github.com/Cleon2/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/shishirbychapur/ip.git to complete... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sudarshan2401/ip.git completed! -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/sunzihan23/ip.git... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/sunzihan23/ip.git to complete... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Cleon2/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Cleon2/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ItsTYtan/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ItsTYtan/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ItsTYtan/ip.git (master) completed! -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos +INFO: [332/480] Analyzing https://github.com/Cleon2/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Cleon2/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:40 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Cleon2/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/javinchua/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/javinchua/ip.git (master)... +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/javinchua/ip.git (master) completed! +Aug 30, 2023 1:26:40 AM reposense.report.ReportGenerator analyzeRepos INFO: [333/480] Analyzing https://github.com/ketweeen/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ketweeen/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ketweeen/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Cleon2/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Cleon2/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Cleon2/ip.git (master) completed! -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [334/480] Analyzing https://github.com/wui-hong/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [334/480] Analyzing https://github.com/sudarshan2401/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sudarshan2401/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sudarshan2401/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ketweeen/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wui-hong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wui-hong/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ketweeen/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ketweeen/ip.git (master) completed! -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [335/480] Analyzing https://github.com/sudarshan2401/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sudarshan2401/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sudarshan2401/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [335/480] Analyzing https://github.com/wui-hong/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wui-hong/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wui-hong/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wui-hong/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wui-hong/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wui-hong/ip.git (master) completed! -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Chrainx/ip.git completed! -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wj331/ip.git... -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator analyzeRepos -INFO: [336/480] Analyzing https://github.com/Chrainx/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wj331/ip.git to complete... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Respirayson/ip.git completed! -Aug 30, 2023 1:13:42 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Chrainx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Chrainx/ip.git (master)... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tjch-o/ip.git... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tjch-o/ip.git to complete... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/sunzihan23/ip.git completed! -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/shishirbychapur/ip.git completed! -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/licongshen12/ip.git... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mamayuan/ip.git... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mamayuan/ip.git to complete... -Aug 30, 2023 1:13:42 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/licongshen12/ip.git to complete... -Aug 30, 2023 1:13:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [336/480] Analyzing https://github.com/Respirayson/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sudarshan2401/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/sudarshan2401/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/sudarshan2401/ip.git (master) completed! -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [337/480] Analyzing https://github.com/Respirayson/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Chrainx/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Chrainx/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Chrainx/ip.git (master) completed! -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Respirayson/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Respirayson/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [338/480] Analyzing https://github.com/shishirbychapur/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/sudarshan2401/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/sudarshan2401/ip.git (master) completed! +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [337/480] Analyzing https://github.com/shishirbychapur/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/shishirbychapur/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/shishirbychapur/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Respirayson/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wj331/ip.git completed! -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Respirayson/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ong-wei-hong/ip.git... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Respirayson/ip.git (master) completed! -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ong-wei-hong/ip.git to complete... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [339/480] Analyzing https://github.com/sunzihan23/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/sunzihan23/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/sunzihan23/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [338/480] Analyzing https://github.com/Chrainx/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/shishirbychapur/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tjch-o/ip.git completed! -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Chrainx/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Chrainx/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/shishirbychapur/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mamayuan/ip.git completed! -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tanboonkhong/ip.git... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/shishirbychapur/ip.git (master) completed! -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [339/480] Analyzing https://github.com/sunzihan23/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/sunzihan23/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/sunzihan23/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Chrainx/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Chrainx/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Chrainx/ip.git (master) completed! +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [340/480] Analyzing https://github.com/wj331/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/licongshen12/ip.git completed! -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cbj252/ip.git... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tanboonkhong/ip.git to complete... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cbj252/ip.git to complete... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AlfredBeNoel/ip.git... -Aug 30, 2023 1:13:43 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AlfredBeNoel/ip.git to complete... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wj331/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wj331/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/sunzihan23/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/sunzihan23/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/sunzihan23/ip.git (master) completed! -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [341/480] Analyzing https://github.com/tjch-o/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tjch-o/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tjch-o/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wj331/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wj331/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wj331/ip.git (master) completed! -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator analyzeRepos -INFO: [342/480] Analyzing https://github.com/mamayuan/ip.git (master)... -Aug 30, 2023 1:13:43 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [342/480] Analyzing https://github.com/licongshen12/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/licongshen12/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/licongshen12/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tjch-o/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tjch-o/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tjch-o/ip.git (master) completed! +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [343/480] Analyzing https://github.com/mamayuan/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/mamayuan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/mamayuan/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/mamayuan/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ong-wei-hong/ip.git completed! -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/mamayuan/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/mamayuan/ip.git (master) completed! -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [343/480] Analyzing https://github.com/licongshen12/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/keaganpzh/ip.git... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tjch-o/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/keaganpzh/ip.git to complete... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/licongshen12/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/licongshen12/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tjch-o/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tjch-o/ip.git (master) completed! -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos INFO: [344/480] Analyzing https://github.com/ong-wei-hong/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/licongshen12/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ong-wei-hong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ong-wei-hong/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/licongshen12/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AlfredBeNoel/ip.git completed! -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cbj252/ip.git completed! -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ElginTZM/ip.git... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tanboonkhong/ip.git completed! -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:41 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/licongshen12/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/licongshen12/ip.git (master) completed! -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [345/480] Analyzing https://github.com/AlfredBeNoel/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ElginTZM/ip.git to complete... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LimJH2002/ip.git... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LimJH2002/ip.git to complete... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cmHuang777/ip.git... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cmHuang777/ip.git to complete... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/AlfredBeNoel/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/AlfredBeNoel/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/AlfredBeNoel/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/AlfredBeNoel/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/AlfredBeNoel/ip.git (master) completed! -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [346/480] Analyzing https://github.com/cbj252/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ong-wei-hong/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cbj252/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cbj252/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ong-wei-hong/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ong-wei-hong/ip.git (master) completed! -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [347/480] Analyzing https://github.com/tanboonkhong/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator analyzeRepos +INFO: [345/480] Analyzing https://github.com/tanboonkhong/ip.git (master)... +Aug 30, 2023 1:26:41 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tanboonkhong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:41 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tanboonkhong/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/keaganpzh/ip.git completed! -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/WeeeHung/ip.git... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/WeeeHung/ip.git to complete... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tanboonkhong/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tanboonkhong/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tanboonkhong/ip.git (master) completed! -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [348/480] Analyzing https://github.com/keaganpzh/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/keaganpzh/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/keaganpzh/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [346/480] Analyzing https://github.com/cbj252/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cbj252/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cbj252/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ong-wei-hong/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ong-wei-hong/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ong-wei-hong/ip.git (master) completed! +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [347/480] Analyzing https://github.com/AlfredBeNoel/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/AlfredBeNoel/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/AlfredBeNoel/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/cbj252/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/cbj252/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/cbj252/ip.git (master) completed! -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LimJH2002/ip.git completed! -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator analyzeRepos -INFO: [349/480] Analyzing https://github.com/LimJH2002/ip.git (master)... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xxiaoweii/ip.git... -Aug 30, 2023 1:13:44 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xxiaoweii/ip.git to complete... -Aug 30, 2023 1:13:44 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [348/480] Analyzing https://github.com/keaganpzh/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/keaganpzh/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/keaganpzh/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/AlfredBeNoel/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/AlfredBeNoel/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/AlfredBeNoel/ip.git (master) completed! +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [349/480] Analyzing https://github.com/WeeeHung/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/WeeeHung/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/WeeeHung/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/WeeeHung/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/WeeeHung/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/WeeeHung/ip.git (master) completed! +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [350/480] Analyzing https://github.com/cmHuang777/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/cmHuang777/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/cmHuang777/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cmHuang777/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cmHuang777/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cmHuang777/ip.git (master) completed! +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [351/480] Analyzing https://github.com/LimJH2002/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LimJH2002/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LimJH2002/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cmHuang777/ip.git completed! -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rayyan35p/ip.git... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rayyan35p/ip.git to complete... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ElginTZM/ip.git completed! -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dhruvir29/ip.git... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dhruvir29/ip.git to complete... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/LimJH2002/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/keaganpzh/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/LimJH2002/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/LimJH2002/ip.git (master) completed! -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [350/480] Analyzing https://github.com/cmHuang777/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/keaganpzh/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/keaganpzh/ip.git (master) completed! -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [351/480] Analyzing https://github.com/ElginTZM/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/cmHuang777/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/cmHuang777/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [352/480] Analyzing https://github.com/ElginTZM/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ElginTZM/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ElginTZM/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cmHuang777/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cmHuang777/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/LimJH2002/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/LimJH2002/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/LimJH2002/ip.git (master) completed! +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [353/480] Analyzing https://github.com/rayyan35p/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rayyan35p/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rayyan35p/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ElginTZM/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cmHuang777/ip.git (master) completed! -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ElginTZM/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ElginTZM/ip.git (master) completed! -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/WeeeHung/ip.git completed! -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [352/480] Analyzing https://github.com/WeeeHung/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/LinWanLeii/ip.git... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/LinWanLeii/ip.git to complete... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/WeeeHung/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/WeeeHung/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/WeeeHung/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xxiaoweii/ip.git completed! -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/WeeeHung/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/WeeeHung/ip.git (master) completed! -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Song-Mengfei/ip.git... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [353/480] Analyzing https://github.com/xxiaoweii/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Song-Mengfei/ip.git to complete... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xxiaoweii/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xxiaoweii/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rayyan35p/ip.git completed! -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jinyuan0425/ip.git... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [354/480] Analyzing https://github.com/rayyan35p/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jinyuan0425/ip.git to complete... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xxiaoweii/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rayyan35p/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rayyan35p/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dhruvir29/ip.git completed! -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tiif/ip.git... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xxiaoweii/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xxiaoweii/ip.git (master) completed! -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepos -INFO: [355/480] Analyzing https://github.com/dhruvir29/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tiif/ip.git to complete... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [354/480] Analyzing https://github.com/dhruvir29/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dhruvir29/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dhruvir29/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/rayyan35p/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/rayyan35p/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/rayyan35p/ip.git (master) completed! -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [355/480] Analyzing https://github.com/xxiaoweii/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xxiaoweii/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xxiaoweii/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dhruvir29/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dhruvir29/ip.git (master)... -Aug 30, 2023 1:13:45 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dhruvir29/ip.git (master) completed! -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/LinWanLeii/ip.git completed! -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [356/480] Analyzing https://github.com/LinWanLeii/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nicholascher/ip.git... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nicholascher/ip.git to complete... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/LinWanLeii/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/LinWanLeii/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xxiaoweii/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xxiaoweii/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xxiaoweii/ip.git (master) completed! +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [357/480] Analyzing https://github.com/tiif/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/LinWanLeii/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/LinWanLeii/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/LinWanLeii/ip.git (master) completed! -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Song-Mengfei/ip.git completed! -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/hcs1203/ip.git... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [357/480] Analyzing https://github.com/Song-Mengfei/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jinyuan0425/ip.git completed! -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/papataco14/ip.git... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [358/480] Analyzing https://github.com/jinyuan0425/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/hcs1203/ip.git to complete... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/papataco14/ip.git to complete... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [358/480] Analyzing https://github.com/Song-Mengfei/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tiif/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tiif/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Song-Mengfei/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Song-Mengfei/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tiif/ip.git completed! -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jinyuan0425/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jinyuan0425/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KamJiaYue/ip.git... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KamJiaYue/ip.git to complete... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tiif/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tiif/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tiif/ip.git (master) completed! +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos +INFO: [359/480] Analyzing https://github.com/jinyuan0425/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Song-Mengfei/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jinyuan0425/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:42 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Song-Mengfei/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Song-Mengfei/ip.git (master) completed! -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [359/480] Analyzing https://github.com/tiif/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jinyuan0425/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jinyuan0425/ip.git (master) completed! -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tiif/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tiif/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicholascher/ip.git completed! -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/NereusWB922/ip.git... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jinyuan0425/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jinyuan0425/ip.git (master)... +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator analyzeRepos INFO: [360/480] Analyzing https://github.com/nicholascher/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/NereusWB922/ip.git to complete... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:42 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nicholascher/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:42 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nicholascher/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tiif/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tiif/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tiif/ip.git (master) completed! -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nicholascher/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nicholascher/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nicholascher/ip.git (master) completed! -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/hcs1203/ip.git completed! -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [361/480] Analyzing https://github.com/hcs1203/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/PohSayKeong/ip.git... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PohSayKeong/ip.git to complete... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/papataco14/ip.git completed! -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/hcs1203/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/hcs1203/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.ReportGenerator analyzeRepos -INFO: [362/480] Analyzing https://github.com/papataco14/ip.git (master)... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ivyy-poison/ip.git... -Aug 30, 2023 1:13:46 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ivyy-poison/ip.git to complete... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jinyuan0425/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jinyuan0425/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jinyuan0425/ip.git (master) completed! +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [361/480] Analyzing https://github.com/papataco14/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/papataco14/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/papataco14/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/hcs1203/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KamJiaYue/ip.git completed! -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/hcs1203/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/hcs1203/ip.git (master) completed! -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nicholascher/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/papataco14/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [363/480] Analyzing https://github.com/KamJiaYue/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jacobcuison/ip.git... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jacobcuison/ip.git to complete... -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/papataco14/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/papataco14/ip.git (master) completed! -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nicholascher/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [362/480] Analyzing https://github.com/KamJiaYue/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nicholascher/ip.git (master) completed! +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [363/480] Analyzing https://github.com/NereusWB922/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/KamJiaYue/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/KamJiaYue/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/NereusWB922/ip.git completed! -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ji-just-ji/ip.git... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [364/480] Analyzing https://github.com/NereusWB922/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ji-just-ji/ip.git to complete... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/NereusWB922/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/NereusWB922/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KamJiaYue/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/NereusWB922/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/NereusWB922/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/NereusWB922/ip.git (master) completed! -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KamJiaYue/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KamJiaYue/ip.git (master) completed! -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PohSayKeong/ip.git completed! -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kohkaijie/ip.git... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [364/480] Analyzing https://github.com/hcs1203/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/hcs1203/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/hcs1203/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/hcs1203/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/hcs1203/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/hcs1203/ip.git (master) completed! +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [365/480] Analyzing https://github.com/PohSayKeong/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ivyy-poison/ip.git completed! -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kohkaijie/ip.git to complete... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [366/480] Analyzing https://github.com/ivyy-poison/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rocketninja7/ip.git... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KamJiaYue/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PohSayKeong/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PohSayKeong/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rocketninja7/ip.git to complete... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KamJiaYue/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KamJiaYue/ip.git (master) completed! +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [366/480] Analyzing https://github.com/ivyy-poison/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ivyy-poison/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ivyy-poison/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jacobcuison/ip.git completed! -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zekone/ip.git... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zekone/ip.git to complete... -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/ivyy-poison/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ji-just-ji/ip.git completed! -Aug 30, 2023 1:13:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ivyy-poison/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ivyy-poison/ip.git (master) completed! -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator analyzeRepos -INFO: [367/480] Analyzing https://github.com/jacobcuison/ip.git (master)... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/markgcera/ip.git... -Aug 30, 2023 1:13:47 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/markgcera/ip.git to complete... -Aug 30, 2023 1:13:47 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jacobcuison/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jacobcuison/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jacobcuison/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [367/480] Analyzing https://github.com/ji-just-ji/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/PohSayKeong/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jacobcuison/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jacobcuison/ip.git (master) completed! -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [368/480] Analyzing https://github.com/ji-just-ji/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/PohSayKeong/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/PohSayKeong/ip.git (master) completed! -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ji-just-ji/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ji-just-ji/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kohkaijie/ip.git completed! -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [368/480] Analyzing https://github.com/jacobcuison/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jacobcuison/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jacobcuison/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jacobcuison/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jacobcuison/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jacobcuison/ip.git (master) completed! +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [369/480] Analyzing https://github.com/kohkaijie/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/PearlynnT/ip.git... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/PearlynnT/ip.git to complete... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rocketninja7/ip.git completed! -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/StevenLiudw/ip.git... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ji-just-ji/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kohkaijie/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kohkaijie/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/StevenLiudw/ip.git to complete... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ji-just-ji/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ji-just-ji/ip.git (master) completed! -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [370/480] Analyzing https://github.com/rocketninja7/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zekone/ip.git completed! -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ji-just-ji/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kohkaijie/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/rocketninja7/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/rocketninja7/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/TeeRenJing/ip.git... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kohkaijie/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kohkaijie/ip.git (master) completed! -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [370/480] Analyzing https://github.com/markgcera/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ji-just-ji/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ji-just-ji/ip.git (master) completed! +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [371/480] Analyzing https://github.com/zekone/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/TeeRenJing/ip.git to complete... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zekone/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zekone/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/markgcera/ip.git completed! -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/mounilsankar/ip.git... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/mounilsankar/ip.git to complete... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rocketninja7/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rocketninja7/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rocketninja7/ip.git (master) completed! -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepos -INFO: [372/480] Analyzing https://github.com/markgcera/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/markgcera/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/markgcera/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zekone/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zekone/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zekone/ip.git (master) completed! -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zekone/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zekone/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/markgcera/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zekone/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/markgcera/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/markgcera/ip.git (master) completed! -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/PearlynnT/ip.git completed! -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos +INFO: [372/480] Analyzing https://github.com/rocketninja7/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zekone/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zekone/ip.git (master) completed! +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator analyzeRepos INFO: [373/480] Analyzing https://github.com/PearlynnT/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dloh2236/ip.git... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dloh2236/ip.git to complete... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/StevenLiudw/ip.git completed! -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/rocketninja7/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/rocketninja7/ip.git (master)... +Aug 30, 2023 1:26:43 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/PearlynnT/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:43 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/PearlynnT/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:43 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rocketninja7/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rocketninja7/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rocketninja7/ip.git (master) completed! +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [374/480] Analyzing https://github.com/StevenLiudw/ip.git (master)... -Aug 30, 2023 1:13:48 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zannloo/ip.git... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zannloo/ip.git to complete... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/StevenLiudw/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/StevenLiudw/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/TeeRenJing/ip.git completed! -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/junnengsoo/ip.git... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/junnengsoo/ip.git to complete... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/mounilsankar/ip.git completed! -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/freshcabbage123/ip.git... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/freshcabbage123/ip.git to complete... -Aug 30, 2023 1:13:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/PearlynnT/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/PearlynnT/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/PearlynnT/ip.git (master) completed! -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [375/480] Analyzing https://github.com/TeeRenJing/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/TeeRenJing/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/TeeRenJing/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/StevenLiudw/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/StevenLiudw/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/StevenLiudw/ip.git (master) completed! -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [376/480] Analyzing https://github.com/mounilsankar/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/mounilsankar/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/mounilsankar/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dloh2236/ip.git completed! -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kokseng1/ip.git... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zannloo/ip.git completed! -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kokseng1/ip.git to complete... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/itsNatTan/ip.git... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/itsNatTan/ip.git to complete... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/junnengsoo/ip.git completed! -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tjingsheng/ip.git... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/freshcabbage123/ip.git completed! -Aug 30, 2023 1:13:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/mounilsankar/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ZD292/ip.git... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tjingsheng/ip.git to complete... -Aug 30, 2023 1:13:49 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ZD292/ip.git to complete... -Aug 30, 2023 1:13:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/mounilsankar/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/mounilsankar/ip.git (master) completed! -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [377/480] Analyzing https://github.com/dloh2236/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/TeeRenJing/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [376/480] Analyzing https://github.com/dloh2236/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dloh2236/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dloh2236/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/TeeRenJing/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/TeeRenJing/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/TeeRenJing/ip.git (master) completed! -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator analyzeRepos -INFO: [378/480] Analyzing https://github.com/zannloo/ip.git (master)... -Aug 30, 2023 1:13:49 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zannloo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zannloo/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [377/480] Analyzing https://github.com/mounilsankar/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/mounilsankar/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/mounilsankar/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dloh2236/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dloh2236/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dloh2236/ip.git (master) completed! -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [379/480] Analyzing https://github.com/junnengsoo/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [378/480] Analyzing https://github.com/junnengsoo/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/junnengsoo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/junnengsoo/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/mounilsankar/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/mounilsankar/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/mounilsankar/ip.git (master) completed! +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [379/480] Analyzing https://github.com/zannloo/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/junnengsoo/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zannloo/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zannloo/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/junnengsoo/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/junnengsoo/ip.git (master) completed! -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [380/480] Analyzing https://github.com/freshcabbage123/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zannloo/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/freshcabbage123/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/freshcabbage123/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zannloo/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/freshcabbage123/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/zannloo/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/zannloo/ip.git (master) completed! -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kokseng1/ip.git completed! -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/itsNatTan/ip.git completed! -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alientian/ip.git... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [381/480] Analyzing https://github.com/Kokseng1/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alientian/ip.git to complete... -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/frrrrry/ip.git... -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/frrrrry/ip.git to complete... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Kokseng1/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Kokseng1/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ZD292/ip.git completed! -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wanghejin/ip.git... -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tjingsheng/ip.git completed! -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wanghejin/ip.git to complete... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/freshcabbage123/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/MagnificentCreature/ip.git... -Aug 30, 2023 1:13:50 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/MagnificentCreature/ip.git to complete... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/freshcabbage123/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/freshcabbage123/ip.git (master) completed! -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos INFO: [382/480] Analyzing https://github.com/itsNatTan/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Kokseng1/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Kokseng1/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/itsNatTan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/itsNatTan/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Kokseng1/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Kokseng1/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Kokseng1/ip.git (master) completed! -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [383/480] Analyzing https://github.com/ZD292/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ZD292/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ZD292/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [383/480] Analyzing https://github.com/alientian/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alientian/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alientian/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/itsNatTan/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ZD292/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/itsNatTan/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/itsNatTan/ip.git (master) completed! -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepos -INFO: [384/480] Analyzing https://github.com/tjingsheng/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ZD292/ip.git (master)... -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ZD292/ip.git (master) completed! -Aug 30, 2023 1:13:50 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [384/480] Analyzing https://github.com/ZD292/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ZD292/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ZD292/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alientian/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alientian/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alientian/ip.git (master) completed! +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [385/480] Analyzing https://github.com/tjingsheng/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tjingsheng/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:44 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tjingsheng/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ZD292/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ZD292/ip.git (master)... +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ZD292/ip.git (master) completed! +Aug 30, 2023 1:26:44 AM reposense.report.ReportGenerator analyzeRepos +INFO: [386/480] Analyzing https://github.com/frrrrry/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/frrrrry/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/frrrrry/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tjingsheng/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tjingsheng/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tjingsheng/ip.git (master) completed! -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/frrrrry/ip.git completed! -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/SungMatt/ip.git... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [385/480] Analyzing https://github.com/frrrrry/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alientian/ip.git completed! -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/SungMatt/ip.git to complete... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/andrefoo/ip.git... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [386/480] Analyzing https://github.com/alientian/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/frrrrry/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/frrrrry/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/andrefoo/ip.git to complete... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alientian/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alientian/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alientian/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wanghejin/ip.git completed! -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/MagnificentCreature/ip.git completed! -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tohpinren/ip.git... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tohpinren/ip.git to complete... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/XihuaZ/ip.git... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alientian/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alientian/ip.git (master) completed! -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [387/480] Analyzing https://github.com/MagnificentCreature/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [387/480] Analyzing https://github.com/wanghejin/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wanghejin/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wanghejin/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/frrrrry/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/XihuaZ/ip.git to complete... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/frrrrry/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/frrrrry/ip.git (master) completed! -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [388/480] Analyzing https://github.com/wanghejin/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MagnificentCreature/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MagnificentCreature/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wanghejin/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wanghejin/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/MagnificentCreature/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/MagnificentCreature/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/MagnificentCreature/ip.git (master) completed! -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [388/480] Analyzing https://github.com/SungMatt/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/SungMatt/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/SungMatt/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wanghejin/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wanghejin/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wanghejin/ip.git (master) completed! -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/SungMatt/ip.git completed! -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [389/480] Analyzing https://github.com/SungMatt/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xavierpok/ip.git... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xavierpok/ip.git to complete... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/SungMatt/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/SungMatt/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [389/480] Analyzing https://github.com/MagnificentCreature/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MagnificentCreature/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MagnificentCreature/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/SungMatt/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/SungMatt/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/SungMatt/ip.git (master) completed! -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/andrefoo/ip.git completed! -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [390/480] Analyzing https://github.com/andrefoo/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/bkjwjason/ip.git... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/bkjwjason/ip.git to complete... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/andrefoo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/andrefoo/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/XihuaZ/ip.git completed! -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/MagnificentCreature/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/MagnificentCreature/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/MagnificentCreature/ip.git (master) completed! +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [391/480] Analyzing https://github.com/XihuaZ/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Choonyan02/ip.git... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/XihuaZ/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/XihuaZ/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/andrefoo/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Choonyan02/ip.git to complete... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tohpinren/ip.git completed! -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/aarontxz/ip.git... -Aug 30, 2023 1:13:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/andrefoo/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/andrefoo/ip.git (master) completed! -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator analyzeRepos -INFO: [392/480] Analyzing https://github.com/tohpinren/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/XihuaZ/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/XihuaZ/ip.git (master)... -Aug 30, 2023 1:13:51 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/aarontxz/ip.git to complete... -Aug 30, 2023 1:13:51 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tohpinren/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tohpinren/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tohpinren/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [392/480] Analyzing https://github.com/xavierpok/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/xavierpok/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/xavierpok/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/XihuaZ/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/tohpinren/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/tohpinren/ip.git (master) completed! -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/XihuaZ/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/XihuaZ/ip.git (master) completed! -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xavierpok/ip.git completed! -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [393/480] Analyzing https://github.com/xavierpok/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jianyangg/ip.git... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jianyangg/ip.git to complete... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/xavierpok/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/xavierpok/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/bkjwjason/ip.git completed! -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tayian/ip.git... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [394/480] Analyzing https://github.com/bkjwjason/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tayian/ip.git to complete... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/bkjwjason/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/bkjwjason/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/aarontxz/ip.git completed! -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wnchan/ip.git... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [393/480] Analyzing https://github.com/tohpinren/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tohpinren/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tohpinren/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/xavierpok/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Choonyan02/ip.git completed! -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wnchan/ip.git to complete... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Jweewee/ip.git... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/xavierpok/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Jweewee/ip.git to complete... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/xavierpok/ip.git (master) completed! -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [395/480] Analyzing https://github.com/aarontxz/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [394/480] Analyzing https://github.com/bkjwjason/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/bkjwjason/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/bkjwjason/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/bkjwjason/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/aarontxz/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/aarontxz/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/bkjwjason/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/bkjwjason/ip.git (master) completed! -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [396/480] Analyzing https://github.com/Choonyan02/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [395/480] Analyzing https://github.com/Choonyan02/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tohpinren/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Choonyan02/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Choonyan02/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/aarontxz/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/aarontxz/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/aarontxz/ip.git (master) completed! -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jianyangg/ip.git completed! -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/cyaoxuan/ip.git... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepos -INFO: [397/480] Analyzing https://github.com/jianyangg/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/tohpinren/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/tohpinren/ip.git (master) completed! +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [396/480] Analyzing https://github.com/jianyangg/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jianyangg/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jianyangg/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Choonyan02/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/cyaoxuan/ip.git to complete... -Aug 30, 2023 1:13:52 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Choonyan02/ip.git (master)... -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Choonyan02/ip.git (master) completed! -Aug 30, 2023 1:13:52 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jianyangg/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:52 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jianyangg/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/jianyangg/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/jianyangg/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/jianyangg/ip.git (master) completed! -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tayian/ip.git completed! -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/anthonytamzil/ip.git... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos +INFO: [397/480] Analyzing https://github.com/aarontxz/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/aarontxz/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/aarontxz/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/aarontxz/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/aarontxz/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/aarontxz/ip.git (master) completed! +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [398/480] Analyzing https://github.com/tayian/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/anthonytamzil/ip.git to complete... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/jianyangg/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/tayian/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/tayian/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wnchan/ip.git completed! -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/CelestineTan03/ip.git... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:45 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/jianyangg/ip.git (master)... +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/jianyangg/ip.git (master) completed! +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator analyzeRepos INFO: [399/480] Analyzing https://github.com/wnchan/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/CelestineTan03/ip.git to complete... -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/tayian/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:45 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wnchan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:45 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wnchan/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Jweewee/ip.git completed! -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/tayian/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tayian/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tayian/ip.git (master) completed! -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/saltedfishxx/ip.git... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [400/480] Analyzing https://github.com/Jweewee/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/saltedfishxx/ip.git to complete... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Jweewee/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Jweewee/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wnchan/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/cyaoxuan/ip.git completed! -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wnchan/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wnchan/ip.git (master) completed! -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [401/480] Analyzing https://github.com/cyaoxuan/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/euchangxian/ip.git... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/euchangxian/ip.git to complete... -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Jweewee/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/cyaoxuan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/cyaoxuan/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Jweewee/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Jweewee/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Jweewee/ip.git (master) completed! -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/cyaoxuan/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/cyaoxuan/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/cyaoxuan/ip.git (master) completed! -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/anthonytamzil/ip.git completed! -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/AlagappanRa/ip.git... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [402/480] Analyzing https://github.com/anthonytamzil/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/AlagappanRa/ip.git to complete... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/anthonytamzil/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/anthonytamzil/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/CelestineTan03/ip.git completed! -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/cyaoxuan/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/cyaoxuan/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/cyaoxuan/ip.git (master) completed! +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [403/480] Analyzing https://github.com/CelestineTan03/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ken-Lai/ip.git... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ken-Lai/ip.git to complete... -Aug 30, 2023 1:13:53 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/CelestineTan03/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:53 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/CelestineTan03/ip.git (master)... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/saltedfishxx/ip.git completed! -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/felibunnyy/ip.git... -Aug 30, 2023 1:13:53 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/felibunnyy/ip.git to complete... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/euchangxian/ip.git completed! -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/itssisi/ip.git... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/itssisi/ip.git to complete... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/anthonytamzil/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/anthonytamzil/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/anthonytamzil/ip.git (master) completed! -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [404/480] Analyzing https://github.com/saltedfishxx/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/CelestineTan03/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/saltedfishxx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/saltedfishxx/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [404/480] Analyzing https://github.com/saltedfishxx/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/CelestineTan03/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/CelestineTan03/ip.git (master) completed! -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [405/480] Analyzing https://github.com/euchangxian/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/saltedfishxx/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/saltedfishxx/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/euchangxian/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/euchangxian/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/euchangxian/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/euchangxian/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/euchangxian/ip.git (master) completed! -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/saltedfishxx/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/saltedfishxx/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/saltedfishxx/ip.git (master) completed! -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/AlagappanRa/ip.git completed! -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [406/480] Analyzing https://github.com/AlagappanRa/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jamz903/ip.git... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jamz903/ip.git to complete... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/euchangxian/ip.git (master) completed! +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [406/480] Analyzing https://github.com/AlagappanRa/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/saltedfishxx/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/saltedfishxx/ip.git (master) completed! +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [407/480] Analyzing https://github.com/Ken-Lai/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/AlagappanRa/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/AlagappanRa/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/felibunnyy/ip.git completed! -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [407/480] Analyzing https://github.com/felibunnyy/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Kevin-Liusx/ip.git... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Kevin-Liusx/ip.git to complete... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/felibunnyy/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/felibunnyy/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Ken-Lai/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Ken-Lai/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/AlagappanRa/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/felibunnyy/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/felibunnyy/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/felibunnyy/ip.git (master) completed! -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Ken-Lai/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/AlagappanRa/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/AlagappanRa/ip.git (master) completed! -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ken-Lai/ip.git completed! -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Propene-Dan/ip.git... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepos -INFO: [408/480] Analyzing https://github.com/Ken-Lai/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Propene-Dan/ip.git to complete... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Ken-Lai/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Ken-Lai/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/itssisi/ip.git completed! -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChuanXinNg/ip.git... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [408/480] Analyzing https://github.com/felibunnyy/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Ken-Lai/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Ken-Lai/ip.git (master) completed! +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [409/480] Analyzing https://github.com/itssisi/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChuanXinNg/ip.git to complete... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/felibunnyy/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/felibunnyy/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/itssisi/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:54 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/itssisi/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Ken-Lai/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Ken-Lai/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Ken-Lai/ip.git (master) completed! -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -WARNING: Exception met while trying to clone the repo "Propene-Dan/ip[master]", will skip this repo. -reposense.system.CommandRunnerProcessException: Error returned from command git clone --bare 'https://github.com/Propene-Dan/ip.git' 'repos/Propene-Dan_ip/ip_bare' on path . : -Cloning into bare repository 'repos/Propene-Dan_ip/ip_bare'... -fatal: could not read Username for 'https://github.com': No such device or address - - at reposense.system.CommandRunnerProcess.waitForProcess(CommandRunnerProcess.java:46) - at reposense.report.RepoCloner.waitForCloneProcess(RepoCloner.java:323) - at reposense.report.RepoCloner.getClonedRepoLocation(RepoCloner.java:123) - at reposense.report.ReportGenerator.cloneRepo(ReportGenerator.java:263) - at reposense.report.ReportGenerator.lambda$cloneAndAnalyzeRepos$0(ReportGenerator.java:208) - at java.base/java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1700) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) - at java.base/java.lang.Thread.run(Thread.java:829) - -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kenvynKwek/ip.git... -Aug 30, 2023 1:13:54 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kenvynKwek/ip.git to complete... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/itssisi/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/itssisi/ip.git (master)... -Aug 30, 2023 1:13:54 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/itssisi/ip.git (master) completed! -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jamz903/ip.git completed! -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Ruizhi2001/ip.git... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/felibunnyy/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/felibunnyy/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/felibunnyy/ip.git (master) completed! +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [410/480] Analyzing https://github.com/jamz903/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Ruizhi2001/ip.git to complete... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jamz903/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jamz903/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Kevin-Liusx/ip.git completed! -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/prawnzyy/ip.git... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/itssisi/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/itssisi/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/itssisi/ip.git (master) completed! +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [411/480] Analyzing https://github.com/Kevin-Liusx/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/prawnzyy/ip.git to complete... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Kevin-Liusx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Kevin-Liusx/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Kevin-Liusx/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Kevin-Liusx/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Kevin-Liusx/ip.git (master) completed! -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jamz903/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jamz903/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jamz903/ip.git (master) completed! -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChuanXinNg/ip.git completed! -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [412/480] Analyzing https://github.com/ChuanXinNg/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/saraozn/ip.git... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/saraozn/ip.git to complete... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Kevin-Liusx/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Kevin-Liusx/ip.git (master) completed! +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [413/480] Analyzing https://github.com/kenvynKwek/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ChuanXinNg/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ChuanXinNg/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kenvynKwek/ip.git completed! -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nicholastng010601/ip.git... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [413/480] Analyzing https://github.com/kenvynKwek/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nicholastng010601/ip.git to complete... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kenvynKwek/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kenvynKwek/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChuanXinNg/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChuanXinNg/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChuanXinNg/ip.git (master) completed! -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Ruizhi2001/ip.git completed! -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DistractedCat/ip.git... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepos -INFO: [414/480] Analyzing https://github.com/Ruizhi2001/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kenvynKwek/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DistractedCat/ip.git to complete... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kenvynKwek/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kenvynKwek/ip.git (master) completed! -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos +INFO: [414/480] Analyzing https://github.com/Ruizhi2001/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Ruizhi2001/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Ruizhi2001/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/prawnzyy/ip.git completed! -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChuanXinNg/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChuanXinNg/ip.git (master)... +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChuanXinNg/ip.git (master) completed! +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepos INFO: [415/480] Analyzing https://github.com/prawnzyy/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yezkez10/ip.git... -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yezkez10/ip.git to complete... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/prawnzyy/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:55 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:46 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/prawnzyy/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Ruizhi2001/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:46 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Ruizhi2001/ip.git (master)... -Aug 30, 2023 1:13:55 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:46 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Ruizhi2001/ip.git (master) completed! -Aug 30, 2023 1:13:55 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/saraozn/ip.git completed! -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/revdrag/ip.git... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [416/480] Analyzing https://github.com/saraozn/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/revdrag/ip.git to complete... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/saraozn/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/saraozn/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicholastng010601/ip.git completed! -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/alvinlim277/ip.git... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/alvinlim277/ip.git to complete... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/saraozn/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/saraozn/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/prawnzyy/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/saraozn/ip.git (master) completed! -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [417/480] Analyzing https://github.com/nicholastng010601/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/prawnzyy/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/prawnzyy/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nicholastng010601/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nicholastng010601/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/prawnzyy/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/prawnzyy/ip.git (master) completed! -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nicholastng010601/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nicholastng010601/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nicholastng010601/ip.git (master) completed! -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DistractedCat/ip.git completed! -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [418/480] Analyzing https://github.com/DistractedCat/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/JasonRay168/ip.git... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/JasonRay168/ip.git to complete... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/DistractedCat/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/DistractedCat/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yezkez10/ip.git completed! -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nicholastng010601/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nicholastng010601/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nicholastng010601/ip.git (master) completed! +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [419/480] Analyzing https://github.com/yezkez10/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/billieboy7/ip.git... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/billieboy7/ip.git to complete... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yezkez10/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yezkez10/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yezkez10/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yezkez10/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yezkez10/ip.git (master) completed! -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/revdrag/ip.git completed! -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jannnice/ip.git... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [420/480] Analyzing https://github.com/revdrag/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jannnice/ip.git to complete... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/DistractedCat/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/revdrag/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/revdrag/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/DistractedCat/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/DistractedCat/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/revdrag/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/DistractedCat/ip.git (master) completed! -Aug 30, 2023 1:13:56 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/revdrag/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/revdrag/ip.git (master) completed! -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/alvinlim277/ip.git completed! -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator analyzeRepos -INFO: [421/480] Analyzing https://github.com/alvinlim277/ip.git (master)... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/evanyan13/ip.git... -Aug 30, 2023 1:13:56 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/evanyan13/ip.git to complete... -Aug 30, 2023 1:13:56 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/alvinlim277/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:56 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/alvinlim277/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/JasonRay168/ip.git completed! -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [422/480] Analyzing https://github.com/JasonRay168/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/samuelim01/ip.git... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/billieboy7/ip.git completed! -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dinde2004/ip.git... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/samuelim01/ip.git to complete... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dinde2004/ip.git to complete... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [421/480] Analyzing https://github.com/JasonRay168/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/JasonRay168/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/JasonRay168/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jannnice/ip.git completed! -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/seanpzk/ip.git... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/seanpzk/ip.git to complete... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/revdrag/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/revdrag/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/revdrag/ip.git (master) completed! +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [422/480] Analyzing https://github.com/billieboy7/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/billieboy7/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/billieboy7/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/billieboy7/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/JasonRay168/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/alvinlim277/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/billieboy7/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/billieboy7/ip.git (master) completed! +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [423/480] Analyzing https://github.com/alvinlim277/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/JasonRay168/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/JasonRay168/ip.git (master) completed! -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [423/480] Analyzing https://github.com/billieboy7/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/alvinlim277/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/billieboy7/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/billieboy7/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/alvinlim277/ip.git (master) completed! -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [424/480] Analyzing https://github.com/jannnice/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/alvinlim277/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/alvinlim277/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jannnice/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jannnice/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/billieboy7/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/billieboy7/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jannnice/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/billieboy7/ip.git (master) completed! -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jannnice/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jannnice/ip.git (master) completed! -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/evanyan13/ip.git completed! -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [425/480] Analyzing https://github.com/evanyan13/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/KumChaiYin/ip.git... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/KumChaiYin/ip.git to complete... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/evanyan13/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/evanyan13/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/samuelim01/ip.git completed! -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dinde2004/ip.git completed! -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepos -INFO: [426/480] Analyzing https://github.com/samuelim01/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lsyurea/ip.git... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Sasmik23/ip.git... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lsyurea/ip.git to complete... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Sasmik23/ip.git to complete... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/evanyan13/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [425/480] Analyzing https://github.com/samuelim01/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/samuelim01/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/samuelim01/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/evanyan13/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/evanyan13/ip.git (master) completed! -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/alvinlim277/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/alvinlim277/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/alvinlim277/ip.git (master) completed! +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [426/480] Analyzing https://github.com/evanyan13/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/evanyan13/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/evanyan13/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/samuelim01/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/samuelim01/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/samuelim01/ip.git (master) completed! +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [427/480] Analyzing https://github.com/dinde2004/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/dinde2004/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:57 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/dinde2004/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/seanpzk/ip.git completed! -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/geraldngjx/ip.git... -Aug 30, 2023 1:13:57 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/geraldngjx/ip.git to complete... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/dinde2004/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/evanyan13/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/dinde2004/ip.git (master)... -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/dinde2004/ip.git (master) completed! -Aug 30, 2023 1:13:57 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos INFO: [428/480] Analyzing https://github.com/seanpzk/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/evanyan13/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/evanyan13/ip.git (master) completed! +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator analyzeRepos +INFO: [429/480] Analyzing https://github.com/Sasmik23/ip.git (master)... +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/seanpzk/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/seanpzk/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/samuelim01/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/samuelim01/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/samuelim01/ip.git (master) completed! -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/KumChaiYin/ip.git completed! -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lululwtv/ip.git... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [429/480] Analyzing https://github.com/KumChaiYin/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lululwtv/ip.git to complete... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:47 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Sasmik23/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:47 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Sasmik23/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Sasmik23/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Sasmik23/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Sasmik23/ip.git (master) completed! +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [430/480] Analyzing https://github.com/KumChaiYin/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/KumChaiYin/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/KumChaiYin/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/seanpzk/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Sasmik23/ip.git completed! -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/seanpzk/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/garylow2001/ip.git... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/seanpzk/ip.git (master) completed! -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [430/480] Analyzing https://github.com/Sasmik23/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/garylow2001/ip.git to complete... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Sasmik23/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Sasmik23/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lsyurea/ip.git completed! -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/KumChaiYin/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/leontan2/ip.git... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/KumChaiYin/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/KumChaiYin/ip.git (master) completed! -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [431/480] Analyzing https://github.com/lsyurea/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/leontan2/ip.git to complete... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lsyurea/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lsyurea/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/geraldngjx/ip.git completed! -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wamps-jp/ip.git... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wamps-jp/ip.git to complete... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Sasmik23/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Sasmik23/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Sasmik23/ip.git (master) completed! -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/KumChaiYin/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/KumChaiYin/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/KumChaiYin/ip.git (master) completed! +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [432/480] Analyzing https://github.com/geraldngjx/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/geraldngjx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/geraldngjx/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lsyurea/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lsyurea/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lsyurea/ip.git (master) completed! -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lululwtv/ip.git completed! -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [433/480] Analyzing https://github.com/lululwtv/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dickongwd/ip.git... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dickongwd/ip.git to complete... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lululwtv/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:58 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lululwtv/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/geraldngjx/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/geraldngjx/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/geraldngjx/ip.git (master) completed! -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [434/480] Analyzing https://github.com/garylow2001/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/garylow2001/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/garylow2001/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lululwtv/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lululwtv/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lululwtv/ip.git (master) completed! -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/garylow2001/ip.git completed! -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/leontan2/ip.git completed! -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepos -INFO: [434/480] Analyzing https://github.com/garylow2001/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/suryanshkushwaha/ip.git... -Aug 30, 2023 1:13:58 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [435/480] Analyzing https://github.com/leontan2/ip.git (master)... -Aug 30, 2023 1:13:58 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jacksonyuan256/ip.git... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/suryanshkushwaha/ip.git to complete... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jacksonyuan256/ip.git to complete... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/leontan2/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/leontan2/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/garylow2001/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/garylow2001/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wamps-jp/ip.git completed! -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wr1159/ip.git... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wr1159/ip.git to complete... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/garylow2001/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/leontan2/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/garylow2001/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/garylow2001/ip.git (master) completed! -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [436/480] Analyzing https://github.com/wamps-jp/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/leontan2/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/leontan2/ip.git (master) completed! -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wamps-jp/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wamps-jp/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wamps-jp/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wamps-jp/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wamps-jp/ip.git (master) completed! -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dickongwd/ip.git completed! -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Nauxe/ip.git... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [437/480] Analyzing https://github.com/dickongwd/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Nauxe/ip.git to complete... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dickongwd/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dickongwd/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dickongwd/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dickongwd/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dickongwd/ip.git (master) completed! -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/suryanshkushwaha/ip.git completed! -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [438/480] Analyzing https://github.com/suryanshkushwaha/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/yyyaohhh/ip.git... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/yyyaohhh/ip.git to complete... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/suryanshkushwaha/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/suryanshkushwaha/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/suryanshkushwaha/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jacksonyuan256/ip.git completed! -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/suryanshkushwaha/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/suryanshkushwaha/ip.git (master) completed! -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/zhanyang01/ip.git... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [439/480] Analyzing https://github.com/jacksonyuan256/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wr1159/ip.git completed! -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/zhanyang01/ip.git to complete... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/czhiruo/ip.git... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepos -INFO: [440/480] Analyzing https://github.com/wr1159/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/leontan2/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/leontan2/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/leontan2/ip.git (master) completed! +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [437/480] Analyzing https://github.com/dickongwd/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wamps-jp/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dickongwd/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dickongwd/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wamps-jp/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wamps-jp/ip.git (master) completed! +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [438/480] Analyzing https://github.com/jacksonyuan256/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jacksonyuan256/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jacksonyuan256/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/czhiruo/ip.git to complete... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/wr1159/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:13:59 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/wr1159/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dickongwd/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dickongwd/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dickongwd/ip.git (master) completed! +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [439/480] Analyzing https://github.com/suryanshkushwaha/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jacksonyuan256/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jacksonyuan256/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jacksonyuan256/ip.git (master) completed! -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/wr1159/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/wr1159/ip.git (master)... -Aug 30, 2023 1:13:59 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/wr1159/ip.git (master) completed! -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Nauxe/ip.git completed! -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [440/480] Analyzing https://github.com/wr1159/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/suryanshkushwaha/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/suryanshkushwaha/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/wr1159/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/wr1159/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/suryanshkushwaha/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/suryanshkushwaha/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/suryanshkushwaha/ip.git (master) completed! +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [441/480] Analyzing https://github.com/Nauxe/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/victorpengmx/ip.git... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/victorpengmx/ip.git to complete... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Nauxe/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Nauxe/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/yyyaohhh/ip.git completed! -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/wr1159/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/wr1159/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/wr1159/ip.git (master) completed! +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos INFO: [442/480] Analyzing https://github.com/yyyaohhh/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/longnguyentan/ip.git... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Nauxe/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/longnguyentan/ip.git to complete... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/yyyaohhh/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/yyyaohhh/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Nauxe/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Nauxe/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Nauxe/ip.git (master) completed! -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/zhanyang01/ip.git completed! -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Cikguseven/ip.git... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [443/480] Analyzing https://github.com/zhanyang01/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [443/480] Analyzing https://github.com/czhiruo/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/czhiruo/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/czhiruo/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/yyyaohhh/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/czhiruo/ip.git completed! -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Cikguseven/ip.git to complete... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Eola-Z/ip.git... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/zhanyang01/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/zhanyang01/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Eola-Z/ip.git to complete... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/yyyaohhh/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/yyyaohhh/ip.git (master) completed! -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepos -INFO: [444/480] Analyzing https://github.com/czhiruo/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/czhiruo/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/czhiruo/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator analyzeRepos +INFO: [444/480] Analyzing https://github.com/zhanyang01/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/zhanyang01/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:48 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/zhanyang01/ip.git (master)... +Aug 30, 2023 1:26:48 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/czhiruo/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/czhiruo/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/czhiruo/ip.git (master) completed! -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/zhanyang01/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/zhanyang01/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/zhanyang01/ip.git (master) completed! -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/victorpengmx/ip.git completed! -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jibtaf/ip.git... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [445/480] Analyzing https://github.com/victorpengmx/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jibtaf/ip.git to complete... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/victorpengmx/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/victorpengmx/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/longnguyentan/ip.git completed! -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/lipwei1808/ip.git... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/zhanyang01/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/zhanyang01/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/zhanyang01/ip.git (master) completed! +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [446/480] Analyzing https://github.com/longnguyentan/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/lipwei1808/ip.git to complete... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/longnguyentan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:00 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/longnguyentan/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/victorpengmx/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/victorpengmx/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/victorpengmx/ip.git (master) completed! -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [447/480] Analyzing https://github.com/Eola-Z/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Eola-Z/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Eola-Z/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/longnguyentan/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/longnguyentan/ip.git (master)... -Aug 30, 2023 1:14:00 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/longnguyentan/ip.git (master) completed! -Aug 30, 2023 1:14:00 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Cikguseven/ip.git completed! -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [447/480] Analyzing https://github.com/Cikguseven/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Mohammed-Faizzzz/ip.git... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Eola-Z/ip.git completed! -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Mohammed-Faizzzz/ip.git to complete... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/dylkaw/ip.git... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepos -INFO: [448/480] Analyzing https://github.com/Eola-Z/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [448/480] Analyzing https://github.com/Cikguseven/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Eola-Z/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Cikguseven/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Cikguseven/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/dylkaw/ip.git to complete... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Eola-Z/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Eola-Z/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Eola-Z/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Cikguseven/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Eola-Z/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Eola-Z/ip.git (master) completed! -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Cikguseven/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Cikguseven/ip.git (master) completed! -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jibtaf/ip.git completed! -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [449/480] Analyzing https://github.com/jibtaf/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nikele2001/ip.git... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nikele2001/ip.git to complete... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jibtaf/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jibtaf/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/lipwei1808/ip.git completed! -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DeltonCheng/ip.git... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Cikguseven/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Cikguseven/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Cikguseven/ip.git (master) completed! +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [450/480] Analyzing https://github.com/lipwei1808/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DeltonCheng/ip.git to complete... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/lipwei1808/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/lipwei1808/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jibtaf/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jibtaf/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jibtaf/ip.git (master) completed! -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Mohammed-Faizzzz/ip.git completed! -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ChangruHenryQian/ip.git... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [451/480] Analyzing https://github.com/Mohammed-Faizzzz/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ChangruHenryQian/ip.git to complete... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Mohammed-Faizzzz/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Mohammed-Faizzzz/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/dylkaw/ip.git completed! -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/lipwei1808/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/craigtonlian/ip.git... -Aug 30, 2023 1:14:01 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/craigtonlian/ip.git to complete... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Mohammed-Faizzzz/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/lipwei1808/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/lipwei1808/ip.git (master) completed! -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [452/480] Analyzing https://github.com/dylkaw/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/dylkaw/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:01 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/dylkaw/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Mohammed-Faizzzz/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Mohammed-Faizzzz/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Mohammed-Faizzzz/ip.git (master) completed! -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/dylkaw/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/dylkaw/ip.git (master)... -Aug 30, 2023 1:14:01 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/dylkaw/ip.git (master) completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nikele2001/ip.git completed! -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [453/480] Analyzing https://github.com/nikele2001/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/ruo-x/ip.git... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DeltonCheng/ip.git completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/ruo-x/ip.git to complete... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [453/480] Analyzing https://github.com/ChangruHenryQian/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/dylkaw/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/dylkaw/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/ChangruHenryQian/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/ChangruHenryQian/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ChangruHenryQian/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/ChangruHenryQian/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/ChangruHenryQian/ip.git (master) completed! +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [454/480] Analyzing https://github.com/DeltonCheng/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/iantsaii/ip.git... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/iantsaii/ip.git to complete... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/DeltonCheng/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/DeltonCheng/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/dylkaw/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/dylkaw/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/dylkaw/ip.git (master) completed! +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [455/480] Analyzing https://github.com/nikele2001/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nikele2001/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nikele2001/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/DeltonCheng/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/DeltonCheng/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/DeltonCheng/ip.git (master) completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/craigtonlian/ip.git completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/wjacobw/ip.git... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [455/480] Analyzing https://github.com/craigtonlian/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/wjacobw/ip.git to complete... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos +INFO: [456/480] Analyzing https://github.com/craigtonlian/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/craigtonlian/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/craigtonlian/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ChangruHenryQian/ip.git completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/angkyakdifp/ip.git... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/angkyakdifp/ip.git to complete... -Aug 30, 2023 1:14:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nikele2001/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nikele2001/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nikele2001/ip.git (master) completed! -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepos -INFO: [456/480] Analyzing https://github.com/ChangruHenryQian/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/ChangruHenryQian/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/ChangruHenryQian/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/craigtonlian/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/craigtonlian/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/craigtonlian/ip.git (master) completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/ruo-x/ip.git completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/brein62/ip.git... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [457/480] Analyzing https://github.com/ruo-x/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/iantsaii/ip.git completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/brein62/ip.git to complete... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nicrandomlee/ip.git... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/ruo-x/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/ruo-x/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nicrandomlee/ip.git to complete... -Aug 30, 2023 1:14:02 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ChangruHenryQian/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/ChangruHenryQian/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/ChangruHenryQian/ip.git (master) completed! -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/craigtonlian/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/craigtonlian/ip.git (master)... +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/craigtonlian/ip.git (master) completed! +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator analyzeRepos INFO: [458/480] Analyzing https://github.com/iantsaii/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:49 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/iantsaii/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:02 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:49 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/iantsaii/ip.git (master)... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/wjacobw/ip.git completed! -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Bryan-Goh/ip.git... -Aug 30, 2023 1:14:02 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Bryan-Goh/ip.git to complete... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/iantsaii/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/angkyakdifp/ip.git completed! -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/kiatkat/ip.git... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/kiatkat/ip.git to complete... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/ruo-x/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/iantsaii/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/iantsaii/ip.git (master) completed! -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/ruo-x/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [459/480] Analyzing https://github.com/wjacobw/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/ruo-x/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/ruo-x/ip.git (master) completed! -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [460/480] Analyzing https://github.com/angkyakdifp/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/wjacobw/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/wjacobw/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/angkyakdifp/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/angkyakdifp/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/wjacobw/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/wjacobw/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/wjacobw/ip.git (master) completed! -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/angkyakdifp/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/brein62/ip.git completed! -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/angkyakdifp/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/angkyakdifp/ip.git (master) completed! -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [461/480] Analyzing https://github.com/brein62/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/MadLamprey/ip.git... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/MadLamprey/ip.git to complete... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nicrandomlee/ip.git completed! -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [462/480] Analyzing https://github.com/nicrandomlee/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/xyT-T/ip.git... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/brein62/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/brein62/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/xyT-T/ip.git to complete... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/nicrandomlee/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/nicrandomlee/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/nicrandomlee/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/nicrandomlee/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/nicrandomlee/ip.git (master) completed! -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/angkyakdifp/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/brein62/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/angkyakdifp/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/angkyakdifp/ip.git (master) completed! +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [462/480] Analyzing https://github.com/nicrandomlee/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/brein62/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/brein62/ip.git (master) completed! -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Bryan-Goh/ip.git completed! -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [463/480] Analyzing https://github.com/Bryan-Goh/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jiakai-17/ip.git... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jiakai-17/ip.git to complete... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/kiatkat/ip.git completed! -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [464/480] Analyzing https://github.com/kiatkat/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nreHieW/ip.git... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Bryan-Goh/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Bryan-Goh/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nreHieW/ip.git to complete... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [463/480] Analyzing https://github.com/kiatkat/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/nicrandomlee/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/nicrandomlee/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/kiatkat/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:03 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/kiatkat/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/nicrandomlee/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/kiatkat/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/nicrandomlee/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/nicrandomlee/ip.git (master) completed! +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [464/480] Analyzing https://github.com/MadLamprey/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/kiatkat/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/kiatkat/ip.git (master) completed! -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [465/480] Analyzing https://github.com/Bryan-Goh/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/MadLamprey/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/MadLamprey/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Bryan-Goh/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Bryan-Goh/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Bryan-Goh/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Bryan-Goh/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Bryan-Goh/ip.git (master) completed! -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/xyT-T/ip.git completed! -Aug 30, 2023 1:14:03 AM reposense.report.ReportGenerator analyzeRepos -INFO: [465/480] Analyzing https://github.com/xyT-T/ip.git (master)... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/nathanielcalimag/ip.git... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/nathanielcalimag/ip.git to complete... -Aug 30, 2023 1:14:03 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/MadLamprey/ip.git completed! -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [466/480] Analyzing https://github.com/xyT-T/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/xyT-T/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/xyT-T/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [466/480] Analyzing https://github.com/MadLamprey/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Saezenn/ip.git... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Saezenn/ip.git to complete... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/MadLamprey/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/MadLamprey/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/xyT-T/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/xyT-T/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/xyT-T/ip.git (master) completed! -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jiakai-17/ip.git completed! -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/jellywaiyan/ip.git... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [467/480] Analyzing https://github.com/jiakai-17/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/jellywaiyan/ip.git to complete... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/jiakai-17/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/jiakai-17/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nreHieW/ip.git completed! -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/marquestye/ip.git... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/marquestye/ip.git to complete... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/MadLamprey/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/MadLamprey/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/MadLamprey/ip.git (master) completed! -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [467/480] Analyzing https://github.com/jiakai-17/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/jiakai-17/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/jiakai-17/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/xyT-T/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/xyT-T/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/xyT-T/ip.git (master) completed! +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [468/480] Analyzing https://github.com/nreHieW/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nreHieW/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nreHieW/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jiakai-17/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Saezenn/ip.git completed! -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/nathanielcalimag/ip.git completed! -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Tang-Moyan/ip.git... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/DonovanJJ/ip.git... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/DonovanJJ/ip.git to complete... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Tang-Moyan/ip.git to complete... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jiakai-17/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jiakai-17/ip.git (master) completed! -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [469/480] Analyzing https://github.com/Saezenn/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nreHieW/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/Saezenn/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/Saezenn/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [469/480] Analyzing https://github.com/nathanielcalimag/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nreHieW/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nreHieW/ip.git (master) completed! -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepos -INFO: [470/480] Analyzing https://github.com/nathanielcalimag/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos +INFO: [470/480] Analyzing https://github.com/Saezenn/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/nathanielcalimag/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/nathanielcalimag/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/jellywaiyan/ip.git completed! -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Sebtey/ip.git... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Sebtey/ip.git to complete... -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/Saezenn/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/Saezenn/ip.git (master)... +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Saezenn/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/marquestye/ip.git completed! -Aug 30, 2023 1:14:04 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Saezenn/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Saezenn/ip.git (master) completed! -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [471/480] Analyzing https://github.com/jellywaiyan/ip.git (master)... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/rionshocker/ip.git... -Aug 30, 2023 1:14:04 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/rionshocker/ip.git to complete... -Aug 30, 2023 1:14:04 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/jellywaiyan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:04 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:50 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/jellywaiyan/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/nathanielcalimag/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:50 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/nathanielcalimag/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/nathanielcalimag/ip.git (master) completed! -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:50 AM reposense.report.ReportGenerator analyzeRepos INFO: [472/480] Analyzing https://github.com/marquestye/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/marquestye/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/marquestye/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/jellywaiyan/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/marquestye/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/jellywaiyan/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/jellywaiyan/ip.git (master) completed! -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/marquestye/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/DonovanJJ/ip.git completed! -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [473/480] Analyzing https://github.com/DonovanJJ/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/tyouwei/ip.git... -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Tang-Moyan/ip.git completed! -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [473/480] Analyzing https://github.com/Tang-Moyan/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/marquestye/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/marquestye/ip.git (master) completed! -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [474/480] Analyzing https://github.com/Tang-Moyan/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner spawnCloneProcess -INFO: Cloning in parallel from https://github.com/Blizzeracz/ip.git... -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/tyouwei/ip.git to complete... -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Waiting for cloning of https://github.com/Blizzeracz/ip.git to complete... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/DonovanJJ/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/DonovanJJ/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [474/480] Analyzing https://github.com/DonovanJJ/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Tang-Moyan/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Tang-Moyan/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/DonovanJJ/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/DonovanJJ/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Tang-Moyan/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Tang-Moyan/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Tang-Moyan/ip.git (master) completed! -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Sebtey/ip.git completed! -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [475/480] Analyzing https://github.com/Sebtey/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Sebtey/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Sebtey/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/rionshocker/ip.git completed! -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/Sebtey/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/DonovanJJ/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/Sebtey/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/DonovanJJ/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/DonovanJJ/ip.git (master) completed! -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepos +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepos INFO: [476/480] Analyzing https://github.com/rionshocker/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/Sebtey/ip.git (master) completed! +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [477/480] Analyzing https://github.com/Blizzeracz/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/rionshocker/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/rionshocker/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/Sebtey/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/Sebtey/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/Sebtey/ip.git (master) completed! -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoExtractor extractCommitInfos -INFO: Extracting commits info for https://github.com/rionshocker/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.commits.CommitInfoAnalyzer analyzeCommits -INFO: Analyzing commits info for https://github.com/rionshocker/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepo -INFO: Analysis of https://github.com/rionshocker/ip.git (master) completed! -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/tyouwei/ip.git completed! -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [477/480] Analyzing https://github.com/tyouwei/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.RepoCloner waitForCloneProcess -INFO: Cloning of https://github.com/Blizzeracz/ip.git completed! -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator analyzeRepos -INFO: [478/480] Analyzing https://github.com/Blizzeracz/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator updateRepoConfig -INFO: https://github.com/tyouwei/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos -INFO: Extracting relevant file info from https://github.com/tyouwei/ip.git (master)... -Aug 30, 2023 1:14:05 AM reposense.report.ReportGenerator updateRepoConfig +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator updateRepoConfig INFO: https://github.com/Blizzeracz/ip.git (master) does not contain a standalone config file. -Aug 30, 2023 1:14:05 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +Aug 30, 2023 1:26:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos INFO: Extracting relevant file info from https://github.com/Blizzeracz/ip.git (master)... -Aug 30, 2023 1:14:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/Blizzeracz/ip.git (master)... -Aug 30, 2023 1:14:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/Blizzeracz/ip.git (master)... -Aug 30, 2023 1:14:06 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/Blizzeracz/ip.git (master) completed! -Aug 30, 2023 1:14:06 AM reposense.commits.CommitInfoExtractor extractCommitInfos +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepos +INFO: [478/480] Analyzing https://github.com/tyouwei/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator updateRepoConfig +INFO: https://github.com/tyouwei/ip.git (master) does not contain a standalone config file. +Aug 30, 2023 1:26:51 AM reposense.authorship.FileInfoExtractor extractTextFileInfos +INFO: Extracting relevant file info from https://github.com/tyouwei/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos +INFO: Extracting commits info for https://github.com/rionshocker/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +INFO: Analyzing commits info for https://github.com/rionshocker/ip.git (master)... +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepo +INFO: Analysis of https://github.com/rionshocker/ip.git (master) completed! +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoExtractor extractCommitInfos INFO: Extracting commits info for https://github.com/tyouwei/ip.git (master)... -Aug 30, 2023 1:14:06 AM reposense.commits.CommitInfoAnalyzer analyzeCommits +Aug 30, 2023 1:26:51 AM reposense.commits.CommitInfoAnalyzer analyzeCommits INFO: Analyzing commits info for https://github.com/tyouwei/ip.git (master)... -Aug 30, 2023 1:14:06 AM reposense.report.ReportGenerator analyzeRepo +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator analyzeRepo INFO: Analysis of https://github.com/tyouwei/ip.git (master) completed! -Aug 30, 2023 1:14:06 AM reposense.report.ReportGenerator generateReposReport +Aug 30, 2023 1:26:51 AM reposense.report.ReportGenerator generateReposReport INFO: The report is generated at /home/runner/work/ip-dashboard/ip-dashboard/reposense-report -Aug 30, 2023 1:14:07 AM reposense.RepoSense main -INFO: Elapsed processing time: 1 minute(s) 24.73 second(s) +Aug 30, 2023 1:26:52 AM reposense.RepoSense main +INFO: Elapsed processing time: 1 minute(s) 8.20 second(s) diff --git a/summary.json b/summary.json index 962029f3..4467f1a1 100644 --- a/summary.json +++ b/summary.json @@ -1 +1 @@ -{"repoSenseVersion":"324a0cbbff","reportGeneratedTime":"Wed Aug 30 09:12:44 2023 UTC+08:00","reportGenerationTime":" 1 minute(s) 23.85 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2103 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/remuslum/ip.git","repoName":"ip","organization":"remuslum","domainName":"github"},"branch":"master","displayName":"remuslum/ip[master]","outputFolderName":"remuslum_ip_master"},{"location":{"location":"https://github.com/elhy1999/ip.git","repoName":"ip","organization":"elhy1999","domainName":"github"},"branch":"master","displayName":"elhy1999/ip[master]","outputFolderName":"elhy1999_ip_master"},{"location":{"location":"https://github.com/XihuaZ/ip.git","repoName":"ip","organization":"XihuaZ","domainName":"github"},"branch":"master","displayName":"XihuaZ/ip[master]","outputFolderName":"XihuaZ_ip_master"},{"location":{"location":"https://github.com/bwangpj/ip.git","repoName":"ip","organization":"bwangpj","domainName":"github"},"branch":"master","displayName":"bwangpj/ip[master]","outputFolderName":"bwangpj_ip_master"},{"location":{"location":"https://github.com/shuenj/ip.git","repoName":"ip","organization":"shuenj","domainName":"github"},"branch":"master","displayName":"shuenj/ip[master]","outputFolderName":"shuenj_ip_master"},{"location":{"location":"https://github.com/SungMatt/ip.git","repoName":"ip","organization":"SungMatt","domainName":"github"},"branch":"master","displayName":"SungMatt/ip[master]","outputFolderName":"SungMatt_ip_master"},{"location":{"location":"https://github.com/junhonglow/ip.git","repoName":"ip","organization":"junhonglow","domainName":"github"},"branch":"master","displayName":"junhonglow/ip[master]","outputFolderName":"junhonglow_ip_master"},{"location":{"location":"https://github.com/xavierpok/ip.git","repoName":"ip","organization":"xavierpok","domainName":"github"},"branch":"master","displayName":"xavierpok/ip[master]","outputFolderName":"xavierpok_ip_master"},{"location":{"location":"https://github.com/marcellaantania/ip.git","repoName":"ip","organization":"marcellaantania","domainName":"github"},"branch":"master","displayName":"marcellaantania/ip[master]","outputFolderName":"marcellaantania_ip_master"},{"location":{"location":"https://github.com/felibunnyy/ip.git","repoName":"ip","organization":"felibunnyy","domainName":"github"},"branch":"master","displayName":"felibunnyy/ip[master]","outputFolderName":"felibunnyy_ip_master"},{"location":{"location":"https://github.com/starrylight99/ip.git","repoName":"ip","organization":"starrylight99","domainName":"github"},"branch":"master","displayName":"starrylight99/ip[master]","outputFolderName":"starrylight99_ip_master"},{"location":{"location":"https://github.com/leezhanpeng/ip.git","repoName":"ip","organization":"leezhanpeng","domainName":"github"},"branch":"master","displayName":"leezhanpeng/ip[master]","outputFolderName":"leezhanpeng_ip_master"},{"location":{"location":"https://github.com/sheryew/ip.git","repoName":"ip","organization":"sheryew","domainName":"github"},"branch":"master","displayName":"sheryew/ip[master]","outputFolderName":"sheryew_ip_master"},{"location":{"location":"https://github.com/lihongguang00/ip.git","repoName":"ip","organization":"lihongguang00","domainName":"github"},"branch":"master","displayName":"lihongguang00/ip[master]","outputFolderName":"lihongguang00_ip_master"},{"location":{"location":"https://github.com/nicrandomlee/ip.git","repoName":"ip","organization":"nicrandomlee","domainName":"github"},"branch":"master","displayName":"nicrandomlee/ip[master]","outputFolderName":"nicrandomlee_ip_master"},{"location":{"location":"https://github.com/LuahJunYang/ip.git","repoName":"ip","organization":"LuahJunYang","domainName":"github"},"branch":"master","displayName":"LuahJunYang/ip[master]","outputFolderName":"LuahJunYang_ip_master"},{"location":{"location":"https://github.com/s-peiran/ip.git","repoName":"ip","organization":"s-peiran","domainName":"github"},"branch":"master","displayName":"s-peiran/ip[master]","outputFolderName":"s-peiran_ip_master"},{"location":{"location":"https://github.com/aarontxz/ip.git","repoName":"ip","organization":"aarontxz","domainName":"github"},"branch":"master","displayName":"aarontxz/ip[master]","outputFolderName":"aarontxz_ip_master"},{"location":{"location":"https://github.com/chiayunrong/ip.git","repoName":"ip","organization":"chiayunrong","domainName":"github"},"branch":"master","displayName":"chiayunrong/ip[master]","outputFolderName":"chiayunrong_ip_master"},{"location":{"location":"https://github.com/nixonwidjaja/ip.git","repoName":"ip","organization":"nixonwidjaja","domainName":"github"},"branch":"master","displayName":"nixonwidjaja/ip[master]","outputFolderName":"nixonwidjaja_ip_master"},{"location":{"location":"https://github.com/imkwokyong/ip.git","repoName":"ip","organization":"imkwokyong","domainName":"github"},"branch":"master","displayName":"imkwokyong/ip[master]","outputFolderName":"imkwokyong_ip_master"},{"location":{"location":"https://github.com/mamayuan/ip.git","repoName":"ip","organization":"mamayuan","domainName":"github"},"branch":"master","displayName":"mamayuan/ip[master]","outputFolderName":"mamayuan_ip_master"},{"location":{"location":"https://github.com/geoffong11/ip.git","repoName":"ip","organization":"geoffong11","domainName":"github"},"branch":"master","displayName":"geoffong11/ip[master]","outputFolderName":"geoffong11_ip_master"},{"location":{"location":"https://github.com/vivienherq/ip.git","repoName":"ip","organization":"vivienherq","domainName":"github"},"branch":"master","displayName":"vivienherq/ip[master]","outputFolderName":"vivienherq_ip_master"},{"location":{"location":"https://github.com/johnnythesnake12/ip.git","repoName":"ip","organization":"johnnythesnake12","domainName":"github"},"branch":"master","displayName":"johnnythesnake12/ip[master]","outputFolderName":"johnnythesnake12_ip_master"},{"location":{"location":"https://github.com/jonyeokj/ip.git","repoName":"ip","organization":"jonyeokj","domainName":"github"},"branch":"master","displayName":"jonyeokj/ip[master]","outputFolderName":"jonyeokj_ip_master"},{"location":{"location":"https://github.com/lipwei1808/ip.git","repoName":"ip","organization":"lipwei1808","domainName":"github"},"branch":"master","displayName":"lipwei1808/ip[master]","outputFolderName":"lipwei1808_ip_master"},{"location":{"location":"https://github.com/zhanyang01/ip.git","repoName":"ip","organization":"zhanyang01","domainName":"github"},"branch":"master","displayName":"zhanyang01/ip[master]","outputFolderName":"zhanyang01_ip_master"},{"location":{"location":"https://github.com/EricXiong420/ip.git","repoName":"ip","organization":"EricXiong420","domainName":"github"},"branch":"master","displayName":"EricXiong420/ip[master]","outputFolderName":"EricXiong420_ip_master"},{"location":{"location":"https://github.com/sp4ce-cowboy/ip.git","repoName":"ip","organization":"sp4ce-cowboy","domainName":"github"},"branch":"master","displayName":"sp4ce-cowboy/ip[master]","outputFolderName":"sp4ce-cowboy_ip_master"},{"location":{"location":"https://github.com/ktzy0305/ip.git","repoName":"ip","organization":"ktzy0305","domainName":"github"},"branch":"master","displayName":"ktzy0305/ip[master]","outputFolderName":"ktzy0305_ip_master"},{"location":{"location":"https://github.com/dom-buri/ip.git","repoName":"ip","organization":"dom-buri","domainName":"github"},"branch":"master","displayName":"dom-buri/ip[master]","outputFolderName":"dom-buri_ip_master"},{"location":{"location":"https://github.com/rayshawntan/ip.git","repoName":"ip","organization":"rayshawntan","domainName":"github"},"branch":"master","displayName":"rayshawntan/ip[master]","outputFolderName":"rayshawntan_ip_master"},{"location":{"location":"https://github.com/Seonlo99/ip.git","repoName":"ip","organization":"Seonlo99","domainName":"github"},"branch":"master","displayName":"Seonlo99/ip[master]","outputFolderName":"Seonlo99_ip_master"},{"location":{"location":"https://github.com/woojiahao/ip.git","repoName":"ip","organization":"woojiahao","domainName":"github"},"branch":"master","displayName":"woojiahao/ip[master]","outputFolderName":"woojiahao_ip_master"},{"location":{"location":"https://github.com/jamz903/ip.git","repoName":"ip","organization":"jamz903","domainName":"github"},"branch":"master","displayName":"jamz903/ip[master]","outputFolderName":"jamz903_ip_master"},{"location":{"location":"https://github.com/Fallman2/ip.git","repoName":"ip","organization":"Fallman2","domainName":"github"},"branch":"master","displayName":"Fallman2/ip[master]","outputFolderName":"Fallman2_ip_master"},{"location":{"location":"https://github.com/jacobcuison/ip.git","repoName":"ip","organization":"jacobcuison","domainName":"github"},"branch":"master","displayName":"jacobcuison/ip[master]","outputFolderName":"jacobcuison_ip_master"},{"location":{"location":"https://github.com/kenvynKwek/ip.git","repoName":"ip","organization":"kenvynKwek","domainName":"github"},"branch":"master","displayName":"kenvynKwek/ip[master]","outputFolderName":"kenvynKwek_ip_master"},{"location":{"location":"https://github.com/kokrui/ip.git","repoName":"ip","organization":"kokrui","domainName":"github"},"branch":"master","displayName":"kokrui/ip[master]","outputFolderName":"kokrui_ip_master"},{"location":{"location":"https://github.com/ncmathan/ip.git","repoName":"ip","organization":"ncmathan","domainName":"github"},"branch":"master","displayName":"ncmathan/ip[master]","outputFolderName":"ncmathan_ip_master"},{"location":{"location":"https://github.com/xCOLOURx/ip.git","repoName":"ip","organization":"xCOLOURx","domainName":"github"},"branch":"master","displayName":"xCOLOURx/ip[master]","outputFolderName":"xCOLOURx_ip_master"},{"location":{"location":"https://github.com/zhyuhan/ip.git","repoName":"ip","organization":"zhyuhan","domainName":"github"},"branch":"master","displayName":"zhyuhan/ip[master]","outputFolderName":"zhyuhan_ip_master"},{"location":{"location":"https://github.com/ceilingFan456/ip.git","repoName":"ip","organization":"ceilingFan456","domainName":"github"},"branch":"master","displayName":"ceilingFan456/ip[master]","outputFolderName":"ceilingFan456_ip_master"},{"location":{"location":"https://github.com/chuababyy/ip.git","repoName":"ip","organization":"chuababyy","domainName":"github"},"branch":"master","displayName":"chuababyy/ip[master]","outputFolderName":"chuababyy_ip_master"},{"location":{"location":"https://github.com/rocketninja7/ip.git","repoName":"ip","organization":"rocketninja7","domainName":"github"},"branch":"master","displayName":"rocketninja7/ip[master]","outputFolderName":"rocketninja7_ip_master"},{"location":{"location":"https://github.com/marquestye/ip.git","repoName":"ip","organization":"marquestye","domainName":"github"},"branch":"master","displayName":"marquestye/ip[master]","outputFolderName":"marquestye_ip_master"},{"location":{"location":"https://github.com/ruiyangzh/ip.git","repoName":"ip","organization":"ruiyangzh","domainName":"github"},"branch":"master","displayName":"ruiyangzh/ip[master]","outputFolderName":"ruiyangzh_ip_master"},{"location":{"location":"https://github.com/derekjxtan/ip.git","repoName":"ip","organization":"derekjxtan","domainName":"github"},"branch":"master","displayName":"derekjxtan/ip[master]","outputFolderName":"derekjxtan_ip_master"},{"location":{"location":"https://github.com/mounilsankar/ip.git","repoName":"ip","organization":"mounilsankar","domainName":"github"},"branch":"master","displayName":"mounilsankar/ip[master]","outputFolderName":"mounilsankar_ip_master"},{"location":{"location":"https://github.com/wj331/ip.git","repoName":"ip","organization":"wj331","domainName":"github"},"branch":"master","displayName":"wj331/ip[master]","outputFolderName":"wj331_ip_master"},{"location":{"location":"https://github.com/JasonLCY-Temp/ip.git","repoName":"ip","organization":"JasonLCY-Temp","domainName":"github"},"branch":"master","displayName":"JasonLCY-Temp/ip[master]","outputFolderName":"JasonLCY-Temp_ip_master"},{"location":{"location":"https://github.com/lawruixi/ip.git","repoName":"ip","organization":"lawruixi","domainName":"github"},"branch":"master","displayName":"lawruixi/ip[master]","outputFolderName":"lawruixi_ip_master"},{"location":{"location":"https://github.com/wxwern/ip.git","repoName":"ip","organization":"wxwern","domainName":"github"},"branch":"master","displayName":"wxwern/ip[master]","outputFolderName":"wxwern_ip_master"},{"location":{"location":"https://github.com/zekone/ip.git","repoName":"ip","organization":"zekone","domainName":"github"},"branch":"master","displayName":"zekone/ip[master]","outputFolderName":"zekone_ip_master"},{"location":{"location":"https://github.com/wamps-jp/ip.git","repoName":"ip","organization":"wamps-jp","domainName":"github"},"branch":"master","displayName":"wamps-jp/ip[master]","outputFolderName":"wamps-jp_ip_master"},{"location":{"location":"https://github.com/saltedfishxx/ip.git","repoName":"ip","organization":"saltedfishxx","domainName":"github"},"branch":"master","displayName":"saltedfishxx/ip[master]","outputFolderName":"saltedfishxx_ip_master"},{"location":{"location":"https://github.com/winson8222/ip.git","repoName":"ip","organization":"winson8222","domainName":"github"},"branch":"master","displayName":"winson8222/ip[master]","outputFolderName":"winson8222_ip_master"},{"location":{"location":"https://github.com/brandon-nam/ip.git","repoName":"ip","organization":"brandon-nam","domainName":"github"},"branch":"master","displayName":"brandon-nam/ip[master]","outputFolderName":"brandon-nam_ip_master"},{"location":{"location":"https://github.com/p-xp/ip.git","repoName":"ip","organization":"p-xp","domainName":"github"},"branch":"master","displayName":"p-xp/ip[master]","outputFolderName":"p-xp_ip_master"},{"location":{"location":"https://github.com/WeeMingQing/ip.git","repoName":"ip","organization":"WeeMingQing","domainName":"github"},"branch":"master","displayName":"WeeMingQing/ip[master]","outputFolderName":"WeeMingQing_ip_master"},{"location":{"location":"https://github.com/ScarletBlanks/ip.git","repoName":"ip","organization":"ScarletBlanks","domainName":"github"},"branch":"master","displayName":"ScarletBlanks/ip[master]","outputFolderName":"ScarletBlanks_ip_master"},{"location":{"location":"https://github.com/seraphimstreets/ip.git","repoName":"ip","organization":"seraphimstreets","domainName":"github"},"branch":"master","displayName":"seraphimstreets/ip[master]","outputFolderName":"seraphimstreets_ip_master"},{"location":{"location":"https://github.com/devanshubisht/ip.git","repoName":"ip","organization":"devanshubisht","domainName":"github"},"branch":"master","displayName":"devanshubisht/ip[master]","outputFolderName":"devanshubisht_ip_master"},{"location":{"location":"https://github.com/Zjinnnn/ip.git","repoName":"ip","organization":"Zjinnnn","domainName":"github"},"branch":"master","displayName":"Zjinnnn/ip[master]","outputFolderName":"Zjinnnn_ip_master"},{"location":{"location":"https://github.com/brendanneojw/ip.git","repoName":"ip","organization":"brendanneojw","domainName":"github"},"branch":"master","displayName":"brendanneojw/ip[master]","outputFolderName":"brendanneojw_ip_master"},{"location":{"location":"https://github.com/aexolate/ip.git","repoName":"ip","organization":"aexolate","domainName":"github"},"branch":"master","displayName":"aexolate/ip[master]","outputFolderName":"aexolate_ip_master"},{"location":{"location":"https://github.com/techjay-c/ip.git","repoName":"ip","organization":"techjay-c","domainName":"github"},"branch":"master","displayName":"techjay-c/ip[master]","outputFolderName":"techjay-c_ip_master"},{"location":{"location":"https://github.com/SynapseProgramming/ip.git","repoName":"ip","organization":"SynapseProgramming","domainName":"github"},"branch":"master","displayName":"SynapseProgramming/ip[master]","outputFolderName":"SynapseProgramming_ip_master"},{"location":{"location":"https://github.com/TyrusLye/ip.git","repoName":"ip","organization":"TyrusLye","domainName":"github"},"branch":"master","displayName":"TyrusLye/ip[master]","outputFolderName":"TyrusLye_ip_master"},{"location":{"location":"https://github.com/RB9823/ip.git","repoName":"ip","organization":"RB9823","domainName":"github"},"branch":"master","displayName":"RB9823/ip[master]","outputFolderName":"RB9823_ip_master"},{"location":{"location":"https://github.com/jean-cq/ip.git","repoName":"ip","organization":"jean-cq","domainName":"github"},"branch":"master","displayName":"jean-cq/ip[master]","outputFolderName":"jean-cq_ip_master"},{"location":{"location":"https://github.com/Bearypop/ip.git","repoName":"ip","organization":"Bearypop","domainName":"github"},"branch":"master","displayName":"Bearypop/ip[master]","outputFolderName":"Bearypop_ip_master"},{"location":{"location":"https://github.com/andytoh1/ip.git","repoName":"ip","organization":"andytoh1","domainName":"github"},"branch":"master","displayName":"andytoh1/ip[master]","outputFolderName":"andytoh1_ip_master"},{"location":{"location":"https://github.com/siqirua/ip.git","repoName":"ip","organization":"siqirua","domainName":"github"},"branch":"master","displayName":"siqirua/ip[master]","outputFolderName":"siqirua_ip_master"},{"location":{"location":"https://github.com/amosting/ip.git","repoName":"ip","organization":"amosting","domainName":"github"},"branch":"master","displayName":"amosting/ip[master]","outputFolderName":"amosting_ip_master"},{"location":{"location":"https://github.com/JizhuoChen/ip.git","repoName":"ip","organization":"JizhuoChen","domainName":"github"},"branch":"master","displayName":"JizhuoChen/ip[master]","outputFolderName":"JizhuoChen_ip_master"},{"location":{"location":"https://github.com/Tang-Moyan/ip.git","repoName":"ip","organization":"Tang-Moyan","domainName":"github"},"branch":"master","displayName":"Tang-Moyan/ip[master]","outputFolderName":"Tang-Moyan_ip_master"},{"location":{"location":"https://github.com/aliciamichellew/ip.git","repoName":"ip","organization":"aliciamichellew","domainName":"github"},"branch":"master","displayName":"aliciamichellew/ip[master]","outputFolderName":"aliciamichellew_ip_master"},{"location":{"location":"https://github.com/KamiliArsyad/ip.git","repoName":"ip","organization":"KamiliArsyad","domainName":"github"},"branch":"master","displayName":"KamiliArsyad/ip[master]","outputFolderName":"KamiliArsyad_ip_master"},{"location":{"location":"https://github.com/dishenggg/ip.git","repoName":"ip","organization":"dishenggg","domainName":"github"},"branch":"master","displayName":"dishenggg/ip[master]","outputFolderName":"dishenggg_ip_master"},{"location":{"location":"https://github.com/Nixx162/ip.git","repoName":"ip","organization":"Nixx162","domainName":"github"},"branch":"master","displayName":"Nixx162/ip[master]","outputFolderName":"Nixx162_ip_master"},{"location":{"location":"https://github.com/Leb14/ip.git","repoName":"ip","organization":"Leb14","domainName":"github"},"branch":"master","displayName":"Leb14/ip[master]","outputFolderName":"Leb14_ip_master"},{"location":{"location":"https://github.com/Heran9/ip.git","repoName":"ip","organization":"Heran9","domainName":"github"},"branch":"master","displayName":"Heran9/ip[master]","outputFolderName":"Heran9_ip_master"},{"location":{"location":"https://github.com/FerdiHS/ip.git","repoName":"ip","organization":"FerdiHS","domainName":"github"},"branch":"master","displayName":"FerdiHS/ip[master]","outputFolderName":"FerdiHS_ip_master"},{"location":{"location":"https://github.com/StevenLiudw/ip.git","repoName":"ip","organization":"StevenLiudw","domainName":"github"},"branch":"master","displayName":"StevenLiudw/ip[master]","outputFolderName":"StevenLiudw_ip_master"},{"location":{"location":"https://github.com/InfiBeyond/ip.git","repoName":"ip","organization":"InfiBeyond","domainName":"github"},"branch":"master","displayName":"InfiBeyond/ip[master]","outputFolderName":"InfiBeyond_ip_master"},{"location":{"location":"https://github.com/s0ngyang/ip.git","repoName":"ip","organization":"s0ngyang","domainName":"github"},"branch":"master","displayName":"s0ngyang/ip[master]","outputFolderName":"s0ngyang_ip_master"},{"location":{"location":"https://github.com/ivyy-poison/ip.git","repoName":"ip","organization":"ivyy-poison","domainName":"github"},"branch":"master","displayName":"ivyy-poison/ip[master]","outputFolderName":"ivyy-poison_ip_master"},{"location":{"location":"https://github.com/yytan25/ip.git","repoName":"ip","organization":"yytan25","domainName":"github"},"branch":"master","displayName":"yytan25/ip[master]","outputFolderName":"yytan25_ip_master"},{"location":{"location":"https://github.com/tjch-o/ip.git","repoName":"ip","organization":"tjch-o","domainName":"github"},"branch":"master","displayName":"tjch-o/ip[master]","outputFolderName":"tjch-o_ip_master"},{"location":{"location":"https://github.com/jedkohjk/ip.git","repoName":"ip","organization":"jedkohjk","domainName":"github"},"branch":"master","displayName":"jedkohjk/ip[master]","outputFolderName":"jedkohjk_ip_master"},{"location":{"location":"https://github.com/raynertjx/ip.git","repoName":"ip","organization":"raynertjx","domainName":"github"},"branch":"master","displayName":"raynertjx/ip[master]","outputFolderName":"raynertjx_ip_master"},{"location":{"location":"https://github.com/cmHuang777/ip.git","repoName":"ip","organization":"cmHuang777","domainName":"github"},"branch":"master","displayName":"cmHuang777/ip[master]","outputFolderName":"cmHuang777_ip_master"},{"location":{"location":"https://github.com/wui-hong/ip.git","repoName":"ip","organization":"wui-hong","domainName":"github"},"branch":"master","displayName":"wui-hong/ip[master]","outputFolderName":"wui-hong_ip_master"},{"location":{"location":"https://github.com/PohSayKeong/ip.git","repoName":"ip","organization":"PohSayKeong","domainName":"github"},"branch":"master","displayName":"PohSayKeong/ip[master]","outputFolderName":"PohSayKeong_ip_master"},{"location":{"location":"https://github.com/lsyurea/ip.git","repoName":"ip","organization":"lsyurea","domainName":"github"},"branch":"master","displayName":"lsyurea/ip[master]","outputFolderName":"lsyurea_ip_master"},{"location":{"location":"https://github.com/ong-wei-hong/ip.git","repoName":"ip","organization":"ong-wei-hong","domainName":"github"},"branch":"master","displayName":"ong-wei-hong/ip[master]","outputFolderName":"ong-wei-hong_ip_master"},{"location":{"location":"https://github.com/asdfghjkxd/ip.git","repoName":"ip","organization":"asdfghjkxd","domainName":"github"},"branch":"master","displayName":"asdfghjkxd/ip[master]","outputFolderName":"asdfghjkxd_ip_master"},{"location":{"location":"https://github.com/GSgiansen/ip.git","repoName":"ip","organization":"GSgiansen","domainName":"github"},"branch":"master","displayName":"GSgiansen/ip[master]","outputFolderName":"GSgiansen_ip_master"},{"location":{"location":"https://github.com/syamfarh/ip.git","repoName":"ip","organization":"syamfarh","domainName":"github"},"branch":"master","displayName":"syamfarh/ip[master]","outputFolderName":"syamfarh_ip_master"},{"location":{"location":"https://github.com/PetrichorPrecipice/ip.git","repoName":"ip","organization":"PetrichorPrecipice","domainName":"github"},"branch":"master","displayName":"PetrichorPrecipice/ip[master]","outputFolderName":"PetrichorPrecipice_ip_master"},{"location":{"location":"https://github.com/ngeeyonglim/ip.git","repoName":"ip","organization":"ngeeyonglim","domainName":"github"},"branch":"master","displayName":"ngeeyonglim/ip[master]","outputFolderName":"ngeeyonglim_ip_master"},{"location":{"location":"https://github.com/ivanleekk/ip.git","repoName":"ip","organization":"ivanleekk","domainName":"github"},"branch":"master","displayName":"ivanleekk/ip[master]","outputFolderName":"ivanleekk_ip_master"},{"location":{"location":"https://github.com/ryanozx/ip.git","repoName":"ip","organization":"ryanozx","domainName":"github"},"branch":"master","displayName":"ryanozx/ip[master]","outputFolderName":"ryanozx_ip_master"},{"location":{"location":"https://github.com/Jweewee/ip.git","repoName":"ip","organization":"Jweewee","domainName":"github"},"branch":"master","displayName":"Jweewee/ip[master]","outputFolderName":"Jweewee_ip_master"},{"location":{"location":"https://github.com/supermii2/ip.git","repoName":"ip","organization":"supermii2","domainName":"github"},"branch":"master","displayName":"supermii2/ip[master]","outputFolderName":"supermii2_ip_master"},{"location":{"location":"https://github.com/bkjwjason/ip.git","repoName":"ip","organization":"bkjwjason","domainName":"github"},"branch":"master","displayName":"bkjwjason/ip[master]","outputFolderName":"bkjwjason_ip_master"},{"location":{"location":"https://github.com/Sasmik23/ip.git","repoName":"ip","organization":"Sasmik23","domainName":"github"},"branch":"master","displayName":"Sasmik23/ip[master]","outputFolderName":"Sasmik23_ip_master"},{"location":{"location":"https://github.com/nathanielcalimag/ip.git","repoName":"ip","organization":"nathanielcalimag","domainName":"github"},"branch":"master","displayName":"nathanielcalimag/ip[master]","outputFolderName":"nathanielcalimag_ip_master"},{"location":{"location":"https://github.com/AlagappanRa/ip.git","repoName":"ip","organization":"AlagappanRa","domainName":"github"},"branch":"master","displayName":"AlagappanRa/ip[master]","outputFolderName":"AlagappanRa_ip_master"},{"location":{"location":"https://github.com/McNaBry/ip.git","repoName":"ip","organization":"McNaBry","domainName":"github"},"branch":"master","displayName":"McNaBry/ip[master]","outputFolderName":"McNaBry_ip_master"},{"location":{"location":"https://github.com/phiphi-tan/ip.git","repoName":"ip","organization":"phiphi-tan","domainName":"github"},"branch":"master","displayName":"phiphi-tan/ip[master]","outputFolderName":"phiphi-tan_ip_master"},{"location":{"location":"https://github.com/LicongHuang/ip.git","repoName":"ip","organization":"LicongHuang","domainName":"github"},"branch":"master","displayName":"LicongHuang/ip[master]","outputFolderName":"LicongHuang_ip_master"},{"location":{"location":"https://github.com/tanshiyu1999/ip.git","repoName":"ip","organization":"tanshiyu1999","domainName":"github"},"branch":"master","displayName":"tanshiyu1999/ip[master]","outputFolderName":"tanshiyu1999_ip_master"},{"location":{"location":"https://github.com/raydenlim/ip.git","repoName":"ip","organization":"raydenlim","domainName":"github"},"branch":"master","displayName":"raydenlim/ip[master]","outputFolderName":"raydenlim_ip_master"},{"location":{"location":"https://github.com/jianyangg/ip.git","repoName":"ip","organization":"jianyangg","domainName":"github"},"branch":"master","displayName":"jianyangg/ip[master]","outputFolderName":"jianyangg_ip_master"},{"location":{"location":"https://github.com/rionshocker/ip.git","repoName":"ip","organization":"rionshocker","domainName":"github"},"branch":"master","displayName":"rionshocker/ip[master]","outputFolderName":"rionshocker_ip_master"},{"location":{"location":"https://github.com/conradsoon/ip.git","repoName":"ip","organization":"conradsoon","domainName":"github"},"branch":"master","displayName":"conradsoon/ip[master]","outputFolderName":"conradsoon_ip_master"},{"location":{"location":"https://github.com/Jonyxzx/ip.git","repoName":"ip","organization":"Jonyxzx","domainName":"github"},"branch":"master","displayName":"Jonyxzx/ip[master]","outputFolderName":"Jonyxzx_ip_master"},{"location":{"location":"https://github.com/euchangxian/ip.git","repoName":"ip","organization":"euchangxian","domainName":"github"},"branch":"master","displayName":"euchangxian/ip[master]","outputFolderName":"euchangxian_ip_master"},{"location":{"location":"https://github.com/teoks0199/ip.git","repoName":"ip","organization":"teoks0199","domainName":"github"},"branch":"master","displayName":"teoks0199/ip[master]","outputFolderName":"teoks0199_ip_master"},{"location":{"location":"https://github.com/HollaG/ip.git","repoName":"ip","organization":"HollaG","domainName":"github"},"branch":"master","displayName":"HollaG/ip[master]","outputFolderName":"HollaG_ip_master"},{"location":{"location":"https://github.com/leezhengjing/ip.git","repoName":"ip","organization":"leezhengjing","domainName":"github"},"branch":"master","displayName":"leezhengjing/ip[master]","outputFolderName":"leezhengjing_ip_master"},{"location":{"location":"https://github.com/timleow/ip.git","repoName":"ip","organization":"timleow","domainName":"github"},"branch":"master","displayName":"timleow/ip[master]","outputFolderName":"timleow_ip_master"},{"location":{"location":"https://github.com/jacksonyuan256/ip.git","repoName":"ip","organization":"jacksonyuan256","domainName":"github"},"branch":"master","displayName":"jacksonyuan256/ip[master]","outputFolderName":"jacksonyuan256_ip_master"},{"location":{"location":"https://github.com/victorlaiyeeteng/ip.git","repoName":"ip","organization":"victorlaiyeeteng","domainName":"github"},"branch":"master","displayName":"victorlaiyeeteng/ip[master]","outputFolderName":"victorlaiyeeteng_ip_master"},{"location":{"location":"https://github.com/prawnzyy/ip.git","repoName":"ip","organization":"prawnzyy","domainName":"github"},"branch":"master","displayName":"prawnzyy/ip[master]","outputFolderName":"prawnzyy_ip_master"},{"location":{"location":"https://github.com/ryanongwx/ip.git","repoName":"ip","organization":"ryanongwx","domainName":"github"},"branch":"master","displayName":"ryanongwx/ip[master]","outputFolderName":"ryanongwx_ip_master"},{"location":{"location":"https://github.com/tohpinren/ip.git","repoName":"ip","organization":"tohpinren","domainName":"github"},"branch":"master","displayName":"tohpinren/ip[master]","outputFolderName":"tohpinren_ip_master"},{"location":{"location":"https://github.com/DeltonCheng/ip.git","repoName":"ip","organization":"DeltonCheng","domainName":"github"},"branch":"master","displayName":"DeltonCheng/ip[master]","outputFolderName":"DeltonCheng_ip_master"},{"location":{"location":"https://github.com/leontan2/ip.git","repoName":"ip","organization":"leontan2","domainName":"github"},"branch":"master","displayName":"leontan2/ip[master]","outputFolderName":"leontan2_ip_master"},{"location":{"location":"https://github.com/alvinlim277/ip.git","repoName":"ip","organization":"alvinlim277","domainName":"github"},"branch":"master","displayName":"alvinlim277/ip[master]","outputFolderName":"alvinlim277_ip_master"},{"location":{"location":"https://github.com/lshaoqin/ip.git","repoName":"ip","organization":"lshaoqin","domainName":"github"},"branch":"master","displayName":"lshaoqin/ip[master]","outputFolderName":"lshaoqin_ip_master"},{"location":{"location":"https://github.com/ChongWeiJie29/ip.git","repoName":"ip","organization":"ChongWeiJie29","domainName":"github"},"branch":"master","displayName":"ChongWeiJie29/ip[master]","outputFolderName":"ChongWeiJie29_ip_master"},{"location":{"location":"https://github.com/zhonghan721/ip.git","repoName":"ip","organization":"zhonghan721","domainName":"github"},"branch":"master","displayName":"zhonghan721/ip[master]","outputFolderName":"zhonghan721_ip_master"},{"location":{"location":"https://github.com/teozhengyang/ip.git","repoName":"ip","organization":"teozhengyang","domainName":"github"},"branch":"master","displayName":"teozhengyang/ip[master]","outputFolderName":"teozhengyang_ip_master"},{"location":{"location":"https://github.com/garylow2001/ip.git","repoName":"ip","organization":"garylow2001","domainName":"github"},"branch":"master","displayName":"garylow2001/ip[master]","outputFolderName":"garylow2001_ip_master"},{"location":{"location":"https://github.com/Cleon2/ip.git","repoName":"ip","organization":"Cleon2","domainName":"github"},"branch":"master","displayName":"Cleon2/ip[master]","outputFolderName":"Cleon2_ip_master"},{"location":{"location":"https://github.com/limzhenwy/ip.git","repoName":"ip","organization":"limzhenwy","domainName":"github"},"branch":"master","displayName":"limzhenwy/ip[master]","outputFolderName":"limzhenwy_ip_master"},{"location":{"location":"https://github.com/ItsTYtan/ip.git","repoName":"ip","organization":"ItsTYtan","domainName":"github"},"branch":"master","displayName":"ItsTYtan/ip[master]","outputFolderName":"ItsTYtan_ip_master"},{"location":{"location":"https://github.com/owenyeo/ip.git","repoName":"ip","organization":"owenyeo","domainName":"github"},"branch":"master","displayName":"owenyeo/ip[master]","outputFolderName":"owenyeo_ip_master"},{"location":{"location":"https://github.com/jonasongg/ip.git","repoName":"ip","organization":"jonasongg","domainName":"github"},"branch":"master","displayName":"jonasongg/ip[master]","outputFolderName":"jonasongg_ip_master"},{"location":{"location":"https://github.com/Ruizhi2001/ip.git","repoName":"ip","organization":"Ruizhi2001","domainName":"github"},"branch":"master","displayName":"Ruizhi2001/ip[master]","outputFolderName":"Ruizhi2001_ip_master"},{"location":{"location":"https://github.com/Dioclei/ip.git","repoName":"ip","organization":"Dioclei","domainName":"github"},"branch":"master","displayName":"Dioclei/ip[master]","outputFolderName":"Dioclei_ip_master"},{"location":{"location":"https://github.com/bobscodedump/ip.git","repoName":"ip","organization":"bobscodedump","domainName":"github"},"branch":"master","displayName":"bobscodedump/ip[master]","outputFolderName":"bobscodedump_ip_master"},{"location":{"location":"https://github.com/andrefoo/ip.git","repoName":"ip","organization":"andrefoo","domainName":"github"},"branch":"master","displayName":"andrefoo/ip[master]","outputFolderName":"andrefoo_ip_master"},{"location":{"location":"https://github.com/Bombbird2001/ip.git","repoName":"ip","organization":"Bombbird2001","domainName":"github"},"branch":"master","displayName":"Bombbird2001/ip[master]","outputFolderName":"Bombbird2001_ip_master"},{"location":{"location":"https://github.com/chewjh1234/ip.git","repoName":"ip","organization":"chewjh1234","domainName":"github"},"branch":"master","displayName":"chewjh1234/ip[master]","outputFolderName":"chewjh1234_ip_master"},{"location":{"location":"https://github.com/dloh2236/ip.git","repoName":"ip","organization":"dloh2236","domainName":"github"},"branch":"master","displayName":"dloh2236/ip[master]","outputFolderName":"dloh2236_ip_master"},{"location":{"location":"https://github.com/chew01/ip.git","repoName":"ip","organization":"chew01","domainName":"github"},"branch":"master","displayName":"chew01/ip[master]","outputFolderName":"chew01_ip_master"},{"location":{"location":"https://github.com/trgao/ip.git","repoName":"ip","organization":"trgao","domainName":"github"},"branch":"master","displayName":"trgao/ip[master]","outputFolderName":"trgao_ip_master"},{"location":{"location":"https://github.com/richiehx/ip.git","repoName":"ip","organization":"richiehx","domainName":"github"},"branch":"master","displayName":"richiehx/ip[master]","outputFolderName":"richiehx_ip_master"},{"location":{"location":"https://github.com/LoMaply/ip.git","repoName":"ip","organization":"LoMaply","domainName":"github"},"branch":"master","displayName":"LoMaply/ip[master]","outputFolderName":"LoMaply_ip_master"},{"location":{"location":"https://github.com/Originalidk/ip.git","repoName":"ip","organization":"Originalidk","domainName":"github"},"branch":"master","displayName":"Originalidk/ip[master]","outputFolderName":"Originalidk_ip_master"},{"location":{"location":"https://github.com/kiatkat/ip.git","repoName":"ip","organization":"kiatkat","domainName":"github"},"branch":"master","displayName":"kiatkat/ip[master]","outputFolderName":"kiatkat_ip_master"},{"location":{"location":"https://github.com/juliusgambe/ip.git","repoName":"ip","organization":"juliusgambe","domainName":"github"},"branch":"master","displayName":"juliusgambe/ip[master]","outputFolderName":"juliusgambe_ip_master"},{"location":{"location":"https://github.com/jiakai-17/ip.git","repoName":"ip","organization":"jiakai-17","domainName":"github"},"branch":"master","displayName":"jiakai-17/ip[master]","outputFolderName":"jiakai-17_ip_master"},{"location":{"location":"https://github.com/nikele2001/ip.git","repoName":"ip","organization":"nikele2001","domainName":"github"},"branch":"master","displayName":"nikele2001/ip[master]","outputFolderName":"nikele2001_ip_master"},{"location":{"location":"https://github.com/jylow/ip.git","repoName":"ip","organization":"jylow","domainName":"github"},"branch":"master","displayName":"jylow/ip[master]","outputFolderName":"jylow_ip_master"},{"location":{"location":"https://github.com/jx124/ip.git","repoName":"ip","organization":"jx124","domainName":"github"},"branch":"master","displayName":"jx124/ip[master]","outputFolderName":"jx124_ip_master"},{"location":{"location":"https://github.com/Kb-Tay/ip.git","repoName":"ip","organization":"Kb-Tay","domainName":"github"},"branch":"master","displayName":"Kb-Tay/ip[master]","outputFolderName":"Kb-Tay_ip_master"},{"location":{"location":"https://github.com/jinyuan0425/ip.git","repoName":"ip","organization":"jinyuan0425","domainName":"github"},"branch":"master","displayName":"jinyuan0425/ip[master]","outputFolderName":"jinyuan0425_ip_master"},{"location":{"location":"https://github.com/darrentfy/ip.git","repoName":"ip","organization":"darrentfy","domainName":"github"},"branch":"master","displayName":"darrentfy/ip[master]","outputFolderName":"darrentfy_ip_master"},{"location":{"location":"https://github.com/HEEaZ/ip.git","repoName":"ip","organization":"HEEaZ","domainName":"github"},"branch":"master","displayName":"HEEaZ/ip[master]","outputFolderName":"HEEaZ_ip_master"},{"location":{"location":"https://github.com/ji-just-ji/ip.git","repoName":"ip","organization":"ji-just-ji","domainName":"github"},"branch":"master","displayName":"ji-just-ji/ip[master]","outputFolderName":"ji-just-ji_ip_master"},{"location":{"location":"https://github.com/simbayippy/ip.git","repoName":"ip","organization":"simbayippy","domainName":"github"},"branch":"master","displayName":"simbayippy/ip[master]","outputFolderName":"simbayippy_ip_master"},{"location":{"location":"https://github.com/teozern1/ip.git","repoName":"ip","organization":"teozern1","domainName":"github"},"branch":"master","displayName":"teozern1/ip[master]","outputFolderName":"teozern1_ip_master"},{"location":{"location":"https://github.com/brein62/ip.git","repoName":"ip","organization":"brein62","domainName":"github"},"branch":"master","displayName":"brein62/ip[master]","outputFolderName":"brein62_ip_master"},{"location":{"location":"https://github.com/awhb/ip.git","repoName":"ip","organization":"awhb","domainName":"github"},"branch":"master","displayName":"awhb/ip[master]","outputFolderName":"awhb_ip_master"},{"location":{"location":"https://github.com/Mahidharah/ip.git","repoName":"ip","organization":"Mahidharah","domainName":"github"},"branch":"master","displayName":"Mahidharah/ip[master]","outputFolderName":"Mahidharah_ip_master"},{"location":{"location":"https://github.com/timetraveller-123/ip.git","repoName":"ip","organization":"timetraveller-123","domainName":"github"},"branch":"master","displayName":"timetraveller-123/ip[master]","outputFolderName":"timetraveller-123_ip_master"},{"location":{"location":"https://github.com/ElginTZM/ip.git","repoName":"ip","organization":"ElginTZM","domainName":"github"},"branch":"master","displayName":"ElginTZM/ip[master]","outputFolderName":"ElginTZM_ip_master"},{"location":{"location":"https://github.com/ryamgoh/ip.git","repoName":"ip","organization":"ryamgoh","domainName":"github"},"branch":"master","displayName":"ryamgoh/ip[master]","outputFolderName":"ryamgoh_ip_master"},{"location":{"location":"https://github.com/Blizzeracz/ip.git","repoName":"ip","organization":"Blizzeracz","domainName":"github"},"branch":"master","displayName":"Blizzeracz/ip[master]","outputFolderName":"Blizzeracz_ip_master"},{"location":{"location":"https://github.com/kiwibang/ip.git","repoName":"ip","organization":"kiwibang","domainName":"github"},"branch":"master","displayName":"kiwibang/ip[master]","outputFolderName":"kiwibang_ip_master"},{"location":{"location":"https://github.com/redtailedfox/ip.git","repoName":"ip","organization":"redtailedfox","domainName":"github"},"branch":"master","displayName":"redtailedfox/ip[master]","outputFolderName":"redtailedfox_ip_master"},{"location":{"location":"https://github.com/lamchenghou/ip.git","repoName":"ip","organization":"lamchenghou","domainName":"github"},"branch":"master","displayName":"lamchenghou/ip[master]","outputFolderName":"lamchenghou_ip_master"},{"location":{"location":"https://github.com/gongg21/ip.git","repoName":"ip","organization":"gongg21","domainName":"github"},"branch":"master","displayName":"gongg21/ip[master]","outputFolderName":"gongg21_ip_master"},{"location":{"location":"https://github.com/CJ-Lee01/ip.git","repoName":"ip","organization":"CJ-Lee01","domainName":"github"},"branch":"master","displayName":"CJ-Lee01/ip[master]","outputFolderName":"CJ-Lee01_ip_master"},{"location":{"location":"https://github.com/Sheeepen/ip.git","repoName":"ip","organization":"Sheeepen","domainName":"github"},"branch":"master","displayName":"Sheeepen/ip[master]","outputFolderName":"Sheeepen_ip_master"},{"location":{"location":"https://github.com/AaronJT1/ip.git","repoName":"ip","organization":"AaronJT1","domainName":"github"},"branch":"master","displayName":"AaronJT1/ip[master]","outputFolderName":"AaronJT1_ip_master"},{"location":{"location":"https://github.com/Respirayson/ip.git","repoName":"ip","organization":"Respirayson","domainName":"github"},"branch":"master","displayName":"Respirayson/ip[master]","outputFolderName":"Respirayson_ip_master"},{"location":{"location":"https://github.com/dickongwd/ip.git","repoName":"ip","organization":"dickongwd","domainName":"github"},"branch":"master","displayName":"dickongwd/ip[master]","outputFolderName":"dickongwd_ip_master"},{"location":{"location":"https://github.com/nicholascher/ip.git","repoName":"ip","organization":"nicholascher","domainName":"github"},"branch":"master","displayName":"nicholascher/ip[master]","outputFolderName":"nicholascher_ip_master"},{"location":{"location":"https://github.com/et-irl/ip.git","repoName":"ip","organization":"et-irl","domainName":"github"},"branch":"master","displayName":"et-irl/ip[master]","outputFolderName":"et-irl_ip_master"},{"location":{"location":"https://github.com/aslam341/ip.git","repoName":"ip","organization":"aslam341","domainName":"github"},"branch":"master","displayName":"aslam341/ip[master]","outputFolderName":"aslam341_ip_master"},{"location":{"location":"https://github.com/seantehds/ip.git","repoName":"ip","organization":"seantehds","domainName":"github"},"branch":"master","displayName":"seantehds/ip[master]","outputFolderName":"seantehds_ip_master"},{"location":{"location":"https://github.com/jianrong7/ip.git","repoName":"ip","organization":"jianrong7","domainName":"github"},"branch":"master","displayName":"jianrong7/ip[master]","outputFolderName":"jianrong7_ip_master"},{"location":{"location":"https://github.com/TeeRenJing/ip.git","repoName":"ip","organization":"TeeRenJing","domainName":"github"},"branch":"master","displayName":"TeeRenJing/ip[master]","outputFolderName":"TeeRenJing_ip_master"},{"location":{"location":"https://github.com/RoeReRe/ip.git","repoName":"ip","organization":"RoeReRe","domainName":"github"},"branch":"master","displayName":"RoeReRe/ip[master]","outputFolderName":"RoeReRe_ip_master"},{"location":{"location":"https://github.com/zsh-eng/ip.git","repoName":"ip","organization":"zsh-eng","domainName":"github"},"branch":"master","displayName":"zsh-eng/ip[master]","outputFolderName":"zsh-eng_ip_master"},{"location":{"location":"https://github.com/seanpzk/ip.git","repoName":"ip","organization":"seanpzk","domainName":"github"},"branch":"master","displayName":"seanpzk/ip[master]","outputFolderName":"seanpzk_ip_master"},{"location":{"location":"https://github.com/quzhetao01/ip.git","repoName":"ip","organization":"quzhetao01","domainName":"github"},"branch":"master","displayName":"quzhetao01/ip[master]","outputFolderName":"quzhetao01_ip_master"},{"location":{"location":"https://github.com/joel-foo/ip.git","repoName":"ip","organization":"joel-foo","domainName":"github"},"branch":"master","displayName":"joel-foo/ip[master]","outputFolderName":"joel-foo_ip_master"},{"location":{"location":"https://github.com/markgcera/ip.git","repoName":"ip","organization":"markgcera","domainName":"github"},"branch":"master","displayName":"markgcera/ip[master]","outputFolderName":"markgcera_ip_master"},{"location":{"location":"https://github.com/dylkaw/ip.git","repoName":"ip","organization":"dylkaw","domainName":"github"},"branch":"master","displayName":"dylkaw/ip[master]","outputFolderName":"dylkaw_ip_master"},{"location":{"location":"https://github.com/SelwynAng/ip.git","repoName":"ip","organization":"SelwynAng","domainName":"github"},"branch":"master","displayName":"SelwynAng/ip[master]","outputFolderName":"SelwynAng_ip_master"},{"location":{"location":"https://github.com/jinyang628/ip.git","repoName":"ip","organization":"jinyang628","domainName":"github"},"branch":"master","displayName":"jinyang628/ip[master]","outputFolderName":"jinyang628_ip_master"},{"location":{"location":"https://github.com/matochichap/ip.git","repoName":"ip","organization":"matochichap","domainName":"github"},"branch":"master","displayName":"matochichap/ip[master]","outputFolderName":"matochichap_ip_master"},{"location":{"location":"https://github.com/sk2001git/ip.git","repoName":"ip","organization":"sk2001git","domainName":"github"},"branch":"master","displayName":"sk2001git/ip[master]","outputFolderName":"sk2001git_ip_master"},{"location":{"location":"https://github.com/jason-raiin/ip.git","repoName":"ip","organization":"jason-raiin","domainName":"github"},"branch":"master","displayName":"jason-raiin/ip[master]","outputFolderName":"jason-raiin_ip_master"},{"location":{"location":"https://github.com/Sebtey/ip.git","repoName":"ip","organization":"Sebtey","domainName":"github"},"branch":"master","displayName":"Sebtey/ip[master]","outputFolderName":"Sebtey_ip_master"},{"location":{"location":"https://github.com/Jweng88/ip.git","repoName":"ip","organization":"Jweng88","domainName":"github"},"branch":"master","displayName":"Jweng88/ip[master]","outputFolderName":"Jweng88_ip_master"},{"location":{"location":"https://github.com/billieboy7/ip.git","repoName":"ip","organization":"billieboy7","domainName":"github"},"branch":"master","displayName":"billieboy7/ip[master]","outputFolderName":"billieboy7_ip_master"},{"location":{"location":"https://github.com/ldinghan/ip.git","repoName":"ip","organization":"ldinghan","domainName":"github"},"branch":"master","displayName":"ldinghan/ip[master]","outputFolderName":"ldinghan_ip_master"},{"location":{"location":"https://github.com/anthonytamzil/ip.git","repoName":"ip","organization":"anthonytamzil","domainName":"github"},"branch":"master","displayName":"anthonytamzil/ip[master]","outputFolderName":"anthonytamzil_ip_master"},{"location":{"location":"https://github.com/ryantzr1/ip.git","repoName":"ip","organization":"ryantzr1","domainName":"github"},"branch":"master","displayName":"ryantzr1/ip[master]","outputFolderName":"ryantzr1_ip_master"},{"location":{"location":"https://github.com/shuyangk/ip.git","repoName":"ip","organization":"shuyangk","domainName":"github"},"branch":"master","displayName":"shuyangk/ip[master]","outputFolderName":"shuyangk_ip_master"},{"location":{"location":"https://github.com/seewhyjay/ip.git","repoName":"ip","organization":"seewhyjay","domainName":"github"},"branch":"master","displayName":"seewhyjay/ip[master]","outputFolderName":"seewhyjay_ip_master"},{"location":{"location":"https://github.com/waseemingly/ip.git","repoName":"ip","organization":"waseemingly","domainName":"github"},"branch":"master","displayName":"waseemingly/ip[master]","outputFolderName":"waseemingly_ip_master"},{"location":{"location":"https://github.com/DistractedCat/ip.git","repoName":"ip","organization":"DistractedCat","domainName":"github"},"branch":"master","displayName":"DistractedCat/ip[master]","outputFolderName":"DistractedCat_ip_master"},{"location":{"location":"https://github.com/geraldngjx/ip.git","repoName":"ip","organization":"geraldngjx","domainName":"github"},"branch":"master","displayName":"geraldngjx/ip[master]","outputFolderName":"geraldngjx_ip_master"},{"location":{"location":"https://github.com/tayian/ip.git","repoName":"ip","organization":"tayian","domainName":"github"},"branch":"master","displayName":"tayian/ip[master]","outputFolderName":"tayian_ip_master"},{"location":{"location":"https://github.com/AlfredBeNoel/ip.git","repoName":"ip","organization":"AlfredBeNoel","domainName":"github"},"branch":"master","displayName":"AlfredBeNoel/ip[master]","outputFolderName":"AlfredBeNoel_ip_master"},{"location":{"location":"https://github.com/Chen1x/ip.git","repoName":"ip","organization":"Chen1x","domainName":"github"},"branch":"master","displayName":"Chen1x/ip[master]","outputFolderName":"Chen1x_ip_master"},{"location":{"location":"https://github.com/juzzztinsoong/ip.git","repoName":"ip","organization":"juzzztinsoong","domainName":"github"},"branch":"master","displayName":"juzzztinsoong/ip[master]","outputFolderName":"juzzztinsoong_ip_master"},{"location":{"location":"https://github.com/lambraydon/ip.git","repoName":"ip","organization":"lambraydon","domainName":"github"},"branch":"master","displayName":"lambraydon/ip[master]","outputFolderName":"lambraydon_ip_master"},{"location":{"location":"https://github.com/lilozz2/ip.git","repoName":"ip","organization":"lilozz2","domainName":"github"},"branch":"master","displayName":"lilozz2/ip[master]","outputFolderName":"lilozz2_ip_master"},{"location":{"location":"https://github.com/tyouwei/ip.git","repoName":"ip","organization":"tyouwei","domainName":"github"},"branch":"master","displayName":"tyouwei/ip[master]","outputFolderName":"tyouwei_ip_master"},{"location":{"location":"https://github.com/Kailash201/ip.git","repoName":"ip","organization":"Kailash201","domainName":"github"},"branch":"master","displayName":"Kailash201/ip[master]","outputFolderName":"Kailash201_ip_master"},{"location":{"location":"https://github.com/tjingsheng/ip.git","repoName":"ip","organization":"tjingsheng","domainName":"github"},"branch":"master","displayName":"tjingsheng/ip[master]","outputFolderName":"tjingsheng_ip_master"},{"location":{"location":"https://github.com/pangyyen/ip.git","repoName":"ip","organization":"pangyyen","domainName":"github"},"branch":"master","displayName":"pangyyen/ip[master]","outputFolderName":"pangyyen_ip_master"},{"location":{"location":"https://github.com/Khaleelur-Rahman/ip.git","repoName":"ip","organization":"Khaleelur-Rahman","domainName":"github"},"branch":"master","displayName":"Khaleelur-Rahman/ip[master]","outputFolderName":"Khaleelur-Rahman_ip_master"},{"location":{"location":"https://github.com/erohsikivar/ip.git","repoName":"ip","organization":"erohsikivar","domainName":"github"},"branch":"master","displayName":"erohsikivar/ip[master]","outputFolderName":"erohsikivar_ip_master"},{"location":{"location":"https://github.com/shishirbychapur/ip.git","repoName":"ip","organization":"shishirbychapur","domainName":"github"},"branch":"master","displayName":"shishirbychapur/ip[master]","outputFolderName":"shishirbychapur_ip_master"},{"location":{"location":"https://github.com/Badatprogrammiing/ip.git","repoName":"ip","organization":"Badatprogrammiing","domainName":"github"},"branch":"master","displayName":"Badatprogrammiing/ip[master]","outputFolderName":"Badatprogrammiing_ip_master"},{"location":{"location":"https://github.com/Angelyxx/ip.git","repoName":"ip","organization":"Angelyxx","domainName":"github"},"branch":"master","displayName":"Angelyxx/ip[master]","outputFolderName":"Angelyxx_ip_master"},{"location":{"location":"https://github.com/ravern/ip.git","repoName":"ip","organization":"ravern","domainName":"github"},"branch":"master","displayName":"ravern/ip[master]","outputFolderName":"ravern_ip_master"},{"location":{"location":"https://github.com/B-enguin/ip.git","repoName":"ip","organization":"B-enguin","domainName":"github"},"branch":"master","displayName":"B-enguin/ip[master]","outputFolderName":"B-enguin_ip_master"},{"location":{"location":"https://github.com/AlyssaPng/ip.git","repoName":"ip","organization":"AlyssaPng","domainName":"github"},"branch":"master","displayName":"AlyssaPng/ip[master]","outputFolderName":"AlyssaPng_ip_master"},{"location":{"location":"https://github.com/flexibo/ip.git","repoName":"ip","organization":"flexibo","domainName":"github"},"branch":"master","displayName":"flexibo/ip[master]","outputFolderName":"flexibo_ip_master"},{"location":{"location":"https://github.com/lordidiot/ip.git","repoName":"ip","organization":"lordidiot","domainName":"github"},"branch":"master","displayName":"lordidiot/ip[master]","outputFolderName":"lordidiot_ip_master"},{"location":{"location":"https://github.com/vansh284/ip.git","repoName":"ip","organization":"vansh284","domainName":"github"},"branch":"master","displayName":"vansh284/ip[master]","outputFolderName":"vansh284_ip_master"},{"location":{"location":"https://github.com/samuelim01/ip.git","repoName":"ip","organization":"samuelim01","domainName":"github"},"branch":"master","displayName":"samuelim01/ip[master]","outputFolderName":"samuelim01_ip_master"},{"location":{"location":"https://github.com/WZWren/ip.git","repoName":"ip","organization":"WZWren","domainName":"github"},"branch":"master","displayName":"WZWren/ip[master]","outputFolderName":"WZWren_ip_master"},{"location":{"location":"https://github.com/cxo05/ip.git","repoName":"ip","organization":"cxo05","domainName":"github"},"branch":"master","displayName":"cxo05/ip[master]","outputFolderName":"cxo05_ip_master"},{"location":{"location":"https://github.com/sudarshan2401/ip.git","repoName":"ip","organization":"sudarshan2401","domainName":"github"},"branch":"master","displayName":"sudarshan2401/ip[master]","outputFolderName":"sudarshan2401_ip_master"},{"location":{"location":"https://github.com/jingyu987/ip.git","repoName":"ip","organization":"jingyu987","domainName":"github"},"branch":"master","displayName":"jingyu987/ip[master]","outputFolderName":"jingyu987_ip_master"},{"location":{"location":"https://github.com/H1410101/ip.git","repoName":"ip","organization":"H1410101","domainName":"github"},"branch":"master","displayName":"H1410101/ip[master]","outputFolderName":"H1410101_ip_master"},{"location":{"location":"https://github.com/MagnificentCreature/ip.git","repoName":"ip","organization":"MagnificentCreature","domainName":"github"},"branch":"master","displayName":"MagnificentCreature/ip[master]","outputFolderName":"MagnificentCreature_ip_master"},{"location":{"location":"https://github.com/shyanyong/ip.git","repoName":"ip","organization":"shyanyong","domainName":"github"},"branch":"master","displayName":"shyanyong/ip[master]","outputFolderName":"shyanyong_ip_master"},{"location":{"location":"https://github.com/peasantbird/ip.git","repoName":"ip","organization":"peasantbird","domainName":"github"},"branch":"master","displayName":"peasantbird/ip[master]","outputFolderName":"peasantbird_ip_master"},{"location":{"location":"https://github.com/tllshan/ip.git","repoName":"ip","organization":"tllshan","domainName":"github"},"branch":"master","displayName":"tllshan/ip[master]","outputFolderName":"tllshan_ip_master"},{"location":{"location":"https://github.com/sushiyade/ip.git","repoName":"ip","organization":"sushiyade","domainName":"github"},"branch":"master","displayName":"sushiyade/ip[master]","outputFolderName":"sushiyade_ip_master"},{"location":{"location":"https://github.com/iyioon/ip.git","repoName":"ip","organization":"iyioon","domainName":"github"},"branch":"master","displayName":"iyioon/ip[master]","outputFolderName":"iyioon_ip_master"},{"location":{"location":"https://github.com/shashahchk/ip.git","repoName":"ip","organization":"shashahchk","domainName":"github"},"branch":"master","displayName":"shashahchk/ip[master]","outputFolderName":"shashahchk_ip_master"},{"location":{"location":"https://github.com/Chandan8186/ip.git","repoName":"ip","organization":"Chandan8186","domainName":"github"},"branch":"master","displayName":"Chandan8186/ip[master]","outputFolderName":"Chandan8186_ip_master"},{"location":{"location":"https://github.com/wesho1107/ip.git","repoName":"ip","organization":"wesho1107","domainName":"github"},"branch":"master","displayName":"wesho1107/ip[master]","outputFolderName":"wesho1107_ip_master"},{"location":{"location":"https://github.com/tim-pipi/ip.git","repoName":"ip","organization":"tim-pipi","domainName":"github"},"branch":"master","displayName":"tim-pipi/ip[master]","outputFolderName":"tim-pipi_ip_master"},{"location":{"location":"https://github.com/emzm2023/ip.git","repoName":"ip","organization":"emzm2023","domainName":"github"},"branch":"master","displayName":"emzm2023/ip[master]","outputFolderName":"emzm2023_ip_master"},{"location":{"location":"https://github.com/dlathyun/ip.git","repoName":"ip","organization":"dlathyun","domainName":"github"},"branch":"master","displayName":"dlathyun/ip[master]","outputFolderName":"dlathyun_ip_master"},{"location":{"location":"https://github.com/tanboonkhong/ip.git","repoName":"ip","organization":"tanboonkhong","domainName":"github"},"branch":"master","displayName":"tanboonkhong/ip[master]","outputFolderName":"tanboonkhong_ip_master"},{"location":{"location":"https://github.com/joeng03/ip.git","repoName":"ip","organization":"joeng03","domainName":"github"},"branch":"master","displayName":"joeng03/ip[master]","outputFolderName":"joeng03_ip_master"},{"location":{"location":"https://github.com/VN-Hao/ip.git","repoName":"ip","organization":"VN-Hao","domainName":"github"},"branch":"master","displayName":"VN-Hao/ip[master]","outputFolderName":"VN-Hao_ip_master"},{"location":{"location":"https://github.com/NgChunMan/ip.git","repoName":"ip","organization":"NgChunMan","domainName":"github"},"branch":"master","displayName":"NgChunMan/ip[master]","outputFolderName":"NgChunMan_ip_master"},{"location":{"location":"https://github.com/TiwKangXu/ip.git","repoName":"ip","organization":"TiwKangXu","domainName":"github"},"branch":"master","displayName":"TiwKangXu/ip[master]","outputFolderName":"TiwKangXu_ip_master"},{"location":{"location":"https://github.com/josepholim/ip.git","repoName":"ip","organization":"josepholim","domainName":"github"},"branch":"master","displayName":"josepholim/ip[master]","outputFolderName":"josepholim_ip_master"},{"location":{"location":"https://github.com/dinde2004/ip.git","repoName":"ip","organization":"dinde2004","domainName":"github"},"branch":"master","displayName":"dinde2004/ip[master]","outputFolderName":"dinde2004_ip_master"},{"location":{"location":"https://github.com/yucongkoo/ip.git","repoName":"ip","organization":"yucongkoo","domainName":"github"},"branch":"master","displayName":"yucongkoo/ip[master]","outputFolderName":"yucongkoo_ip_master"},{"location":{"location":"https://github.com/TohLiYuan/ip.git","repoName":"ip","organization":"TohLiYuan","domainName":"github"},"branch":"master","displayName":"TohLiYuan/ip[master]","outputFolderName":"TohLiYuan_ip_master"},{"location":{"location":"https://github.com/NereusWB922/ip.git","repoName":"ip","organization":"NereusWB922","domainName":"github"},"branch":"master","displayName":"NereusWB922/ip[master]","outputFolderName":"NereusWB922_ip_master"},{"location":{"location":"https://github.com/ph-nathan/ip.git","repoName":"ip","organization":"ph-nathan","domainName":"github"},"branch":"master","displayName":"ph-nathan/ip[master]","outputFolderName":"ph-nathan_ip_master"},{"location":{"location":"https://github.com/antonTan96/ip.git","repoName":"ip","organization":"antonTan96","domainName":"github"},"branch":"master","displayName":"antonTan96/ip[master]","outputFolderName":"antonTan96_ip_master"},{"location":{"location":"https://github.com/WinstonLeonard/ip.git","repoName":"ip","organization":"WinstonLeonard","domainName":"github"},"branch":"master","displayName":"WinstonLeonard/ip[master]","outputFolderName":"WinstonLeonard_ip_master"},{"location":{"location":"https://github.com/TehOPanas/ip.git","repoName":"ip","organization":"TehOPanas","domainName":"github"},"branch":"master","displayName":"TehOPanas/ip[master]","outputFolderName":"TehOPanas_ip_master"},{"location":{"location":"https://github.com/marioalvaro/ip.git","repoName":"ip","organization":"marioalvaro","domainName":"github"},"branch":"master","displayName":"marioalvaro/ip[master]","outputFolderName":"marioalvaro_ip_master"},{"location":{"location":"https://github.com/LINCHENYU2030S/ip.git","repoName":"ip","organization":"LINCHENYU2030S","domainName":"github"},"branch":"master","displayName":"LINCHENYU2030S/ip[master]","outputFolderName":"LINCHENYU2030S_ip_master"},{"location":{"location":"https://github.com/LamJiuFong/ip.git","repoName":"ip","organization":"LamJiuFong","domainName":"github"},"branch":"master","displayName":"LamJiuFong/ip[master]","outputFolderName":"LamJiuFong_ip_master"},{"location":{"location":"https://github.com/AndrewJanong/ip.git","repoName":"ip","organization":"AndrewJanong","domainName":"github"},"branch":"master","displayName":"AndrewJanong/ip[master]","outputFolderName":"AndrewJanong_ip_master"},{"location":{"location":"https://github.com/songfangyl/ip.git","repoName":"ip","organization":"songfangyl","domainName":"github"},"branch":"master","displayName":"songfangyl/ip[master]","outputFolderName":"songfangyl_ip_master"},{"location":{"location":"https://github.com/AriellaCallista/ip.git","repoName":"ip","organization":"AriellaCallista","domainName":"github"},"branch":"master","displayName":"AriellaCallista/ip[master]","outputFolderName":"AriellaCallista_ip_master"},{"location":{"location":"https://github.com/KamJiaYue/ip.git","repoName":"ip","organization":"KamJiaYue","domainName":"github"},"branch":"master","displayName":"KamJiaYue/ip[master]","outputFolderName":"KamJiaYue_ip_master"},{"location":{"location":"https://github.com/feifeiraindrops/ip.git","repoName":"ip","organization":"feifeiraindrops","domainName":"github"},"branch":"master","displayName":"feifeiraindrops/ip[master]","outputFolderName":"feifeiraindrops_ip_master"},{"location":{"location":"https://github.com/czhiruo/ip.git","repoName":"ip","organization":"czhiruo","domainName":"github"},"branch":"master","displayName":"czhiruo/ip[master]","outputFolderName":"czhiruo_ip_master"},{"location":{"location":"https://github.com/butteredyakiimo/ip.git","repoName":"ip","organization":"butteredyakiimo","domainName":"github"},"branch":"master","displayName":"butteredyakiimo/ip[master]","outputFolderName":"butteredyakiimo_ip_master"},{"location":{"location":"https://github.com/RiyaMehta2211/ip.git","repoName":"ip","organization":"RiyaMehta2211","domainName":"github"},"branch":"master","displayName":"RiyaMehta2211/ip[master]","outputFolderName":"RiyaMehta2211_ip_master"},{"location":{"location":"https://github.com/beatricecst/ip.git","repoName":"ip","organization":"beatricecst","domainName":"github"},"branch":"master","displayName":"beatricecst/ip[master]","outputFolderName":"beatricecst_ip_master"},{"location":{"location":"https://github.com/maypfv/ip.git","repoName":"ip","organization":"maypfv","domainName":"github"},"branch":"master","displayName":"maypfv/ip[master]","outputFolderName":"maypfv_ip_master"},{"location":{"location":"https://github.com/pra-navi/ip.git","repoName":"ip","organization":"pra-navi","domainName":"github"},"branch":"master","displayName":"pra-navi/ip[master]","outputFolderName":"pra-navi_ip_master"},{"location":{"location":"https://github.com/xxiaoweii/ip.git","repoName":"ip","organization":"xxiaoweii","domainName":"github"},"branch":"master","displayName":"xxiaoweii/ip[master]","outputFolderName":"xxiaoweii_ip_master"},{"location":{"location":"https://github.com/qyaner/ip.git","repoName":"ip","organization":"qyaner","domainName":"github"},"branch":"master","displayName":"qyaner/ip[master]","outputFolderName":"qyaner_ip_master"},{"location":{"location":"https://github.com/qz1004/ip.git","repoName":"ip","organization":"qz1004","domainName":"github"},"branch":"master","displayName":"qz1004/ip[master]","outputFolderName":"qz1004_ip_master"},{"location":{"location":"https://github.com/miljyy/ip.git","repoName":"ip","organization":"miljyy","domainName":"github"},"branch":"master","displayName":"miljyy/ip[master]","outputFolderName":"miljyy_ip_master"},{"location":{"location":"https://github.com/yihfei/ip.git","repoName":"ip","organization":"yihfei","domainName":"github"},"branch":"master","displayName":"yihfei/ip[master]","outputFolderName":"yihfei_ip_master"},{"location":{"location":"https://github.com/Gabriel4357/ip.git","repoName":"ip","organization":"Gabriel4357","domainName":"github"},"branch":"master","displayName":"Gabriel4357/ip[master]","outputFolderName":"Gabriel4357_ip_master"},{"location":{"location":"https://github.com/saraozn/ip.git","repoName":"ip","organization":"saraozn","domainName":"github"},"branch":"master","displayName":"saraozn/ip[master]","outputFolderName":"saraozn_ip_master"},{"location":{"location":"https://github.com/JeremyYong128/ip.git","repoName":"ip","organization":"JeremyYong128","domainName":"github"},"branch":"master","displayName":"JeremyYong128/ip[master]","outputFolderName":"JeremyYong128_ip_master"},{"location":{"location":"https://github.com/samuelmui8/ip.git","repoName":"ip","organization":"samuelmui8","domainName":"github"},"branch":"master","displayName":"samuelmui8/ip[master]","outputFolderName":"samuelmui8_ip_master"},{"location":{"location":"https://github.com/elaineshijie/ip.git","repoName":"ip","organization":"elaineshijie","domainName":"github"},"branch":"master","displayName":"elaineshijie/ip[master]","outputFolderName":"elaineshijie_ip_master"},{"location":{"location":"https://github.com/zhengyup/ip.git","repoName":"ip","organization":"zhengyup","domainName":"github"},"branch":"master","displayName":"zhengyup/ip[master]","outputFolderName":"zhengyup_ip_master"},{"location":{"location":"https://github.com/ruishanteo/ip.git","repoName":"ip","organization":"ruishanteo","domainName":"github"},"branch":"master","displayName":"ruishanteo/ip[master]","outputFolderName":"ruishanteo_ip_master"},{"location":{"location":"https://github.com/lynnlow175/ip.git","repoName":"ip","organization":"lynnlow175","domainName":"github"},"branch":"master","displayName":"lynnlow175/ip[master]","outputFolderName":"lynnlow175_ip_master"},{"location":{"location":"https://github.com/kohkaijie/ip.git","repoName":"ip","organization":"kohkaijie","domainName":"github"},"branch":"master","displayName":"kohkaijie/ip[master]","outputFolderName":"kohkaijie_ip_master"},{"location":{"location":"https://github.com/CelestineTan03/ip.git","repoName":"ip","organization":"CelestineTan03","domainName":"github"},"branch":"master","displayName":"CelestineTan03/ip[master]","outputFolderName":"CelestineTan03_ip_master"},{"location":{"location":"https://github.com/PearlynnT/ip.git","repoName":"ip","organization":"PearlynnT","domainName":"github"},"branch":"master","displayName":"PearlynnT/ip[master]","outputFolderName":"PearlynnT_ip_master"},{"location":{"location":"https://github.com/Elijah5399/ip.git","repoName":"ip","organization":"Elijah5399","domainName":"github"},"branch":"master","displayName":"Elijah5399/ip[master]","outputFolderName":"Elijah5399_ip_master"},{"location":{"location":"https://github.com/nicleongyj/ip.git","repoName":"ip","organization":"nicleongyj","domainName":"github"},"branch":"master","displayName":"nicleongyj/ip[master]","outputFolderName":"nicleongyj_ip_master"},{"location":{"location":"https://github.com/AnnabelTing/ip.git","repoName":"ip","organization":"AnnabelTing","domainName":"github"},"branch":"master","displayName":"AnnabelTing/ip[master]","outputFolderName":"AnnabelTing_ip_master"},{"location":{"location":"https://github.com/jrchoo/ip.git","repoName":"ip","organization":"jrchoo","domainName":"github"},"branch":"master","displayName":"jrchoo/ip[master]","outputFolderName":"jrchoo_ip_master"},{"location":{"location":"https://github.com/wujy28/ip.git","repoName":"ip","organization":"wujy28","domainName":"github"},"branch":"master","displayName":"wujy28/ip[master]","outputFolderName":"wujy28_ip_master"},{"location":{"location":"https://github.com/Nauxe/ip.git","repoName":"ip","organization":"Nauxe","domainName":"github"},"branch":"master","displayName":"Nauxe/ip[master]","outputFolderName":"Nauxe_ip_master"},{"location":{"location":"https://github.com/yyyaohhh/ip.git","repoName":"ip","organization":"yyyaohhh","domainName":"github"},"branch":"master","displayName":"yyyaohhh/ip[master]","outputFolderName":"yyyaohhh_ip_master"},{"location":{"location":"https://github.com/xenosf/ip.git","repoName":"ip","organization":"xenosf","domainName":"github"},"branch":"master","displayName":"xenosf/ip[master]","outputFolderName":"xenosf_ip_master"},{"location":{"location":"https://github.com/WinSheng1/ip.git","repoName":"ip","organization":"WinSheng1","domainName":"github"},"branch":"master","displayName":"WinSheng1/ip[master]","outputFolderName":"WinSheng1_ip_master"},{"location":{"location":"https://github.com/nreHieW/ip.git","repoName":"ip","organization":"nreHieW","domainName":"github"},"branch":"master","displayName":"nreHieW/ip[master]","outputFolderName":"nreHieW_ip_master"},{"location":{"location":"https://github.com/peiran18/ip.git","repoName":"ip","organization":"peiran18","domainName":"github"},"branch":"master","displayName":"peiran18/ip[master]","outputFolderName":"peiran18_ip_master"},{"location":{"location":"https://github.com/cheeggered/ip.git","repoName":"ip","organization":"cheeggered","domainName":"github"},"branch":"master","displayName":"cheeggered/ip[master]","outputFolderName":"cheeggered_ip_master"},{"location":{"location":"https://github.com/GohTengFong/ip.git","repoName":"ip","organization":"GohTengFong","domainName":"github"},"branch":"master","displayName":"GohTengFong/ip[master]","outputFolderName":"GohTengFong_ip_master"},{"location":{"location":"https://github.com/jibtaf/ip.git","repoName":"ip","organization":"jibtaf","domainName":"github"},"branch":"master","displayName":"jibtaf/ip[master]","outputFolderName":"jibtaf_ip_master"},{"location":{"location":"https://github.com/bhnuka/ip.git","repoName":"ip","organization":"bhnuka","domainName":"github"},"branch":"master","displayName":"bhnuka/ip[master]","outputFolderName":"bhnuka_ip_master"},{"location":{"location":"https://github.com/laurenlim2112/ip.git","repoName":"ip","organization":"laurenlim2112","domainName":"github"},"branch":"master","displayName":"laurenlim2112/ip[master]","outputFolderName":"laurenlim2112_ip_master"},{"location":{"location":"https://github.com/howenc/ip.git","repoName":"ip","organization":"howenc","domainName":"github"},"branch":"master","displayName":"howenc/ip[master]","outputFolderName":"howenc_ip_master"},{"location":{"location":"https://github.com/Kokseng1/ip.git","repoName":"ip","organization":"Kokseng1","domainName":"github"},"branch":"master","displayName":"Kokseng1/ip[master]","outputFolderName":"Kokseng1_ip_master"},{"location":{"location":"https://github.com/yiwen101/ip.git","repoName":"ip","organization":"yiwen101","domainName":"github"},"branch":"master","displayName":"yiwen101/ip[master]","outputFolderName":"yiwen101_ip_master"},{"location":{"location":"https://github.com/Cikguseven/ip.git","repoName":"ip","organization":"Cikguseven","domainName":"github"},"branch":"master","displayName":"Cikguseven/ip[master]","outputFolderName":"Cikguseven_ip_master"},{"location":{"location":"https://github.com/javinchua/ip.git","repoName":"ip","organization":"javinchua","domainName":"github"},"branch":"master","displayName":"javinchua/ip[master]","outputFolderName":"javinchua_ip_master"},{"location":{"location":"https://github.com/frrrrry/ip.git","repoName":"ip","organization":"frrrrry","domainName":"github"},"branch":"master","displayName":"frrrrry/ip[master]","outputFolderName":"frrrrry_ip_master"},{"location":{"location":"https://github.com/YeoBohShin/ip.git","repoName":"ip","organization":"YeoBohShin","domainName":"github"},"branch":"master","displayName":"YeoBohShin/ip[master]","outputFolderName":"YeoBohShin_ip_master"},{"location":{"location":"https://github.com/yongning0310/ip.git","repoName":"ip","organization":"yongning0310","domainName":"github"},"branch":"master","displayName":"yongning0310/ip[master]","outputFolderName":"yongning0310_ip_master"},{"location":{"location":"https://github.com/SimWPEric/ip.git","repoName":"ip","organization":"SimWPEric","domainName":"github"},"branch":"master","displayName":"SimWPEric/ip[master]","outputFolderName":"SimWPEric_ip_master"},{"location":{"location":"https://github.com/sopa301/ip.git","repoName":"ip","organization":"sopa301","domainName":"github"},"branch":"master","displayName":"sopa301/ip[master]","outputFolderName":"sopa301_ip_master"},{"location":{"location":"https://github.com/nananakx-x/ip.git","repoName":"ip","organization":"nananakx-x","domainName":"github"},"branch":"master","displayName":"nananakx-x/ip[master]","outputFolderName":"nananakx-x_ip_master"},{"location":{"location":"https://github.com/LuoZYi/ip.git","repoName":"ip","organization":"LuoZYi","domainName":"github"},"branch":"master","displayName":"LuoZYi/ip[master]","outputFolderName":"LuoZYi_ip_master"},{"location":{"location":"https://github.com/LinWanLeii/ip.git","repoName":"ip","organization":"LinWanLeii","domainName":"github"},"branch":"master","displayName":"LinWanLeii/ip[master]","outputFolderName":"LinWanLeii_ip_master"},{"location":{"location":"https://github.com/mingyuanc/ip.git","repoName":"ip","organization":"mingyuanc","domainName":"github"},"branch":"master","displayName":"mingyuanc/ip[master]","outputFolderName":"mingyuanc_ip_master"},{"location":{"location":"https://github.com/chonguschonguschongus/ip.git","repoName":"ip","organization":"chonguschonguschongus","domainName":"github"},"branch":"master","displayName":"chonguschonguschongus/ip[master]","outputFolderName":"chonguschonguschongus_ip_master"},{"location":{"location":"https://github.com/yanghengtang/ip.git","repoName":"ip","organization":"yanghengtang","domainName":"github"},"branch":"master","displayName":"yanghengtang/ip[master]","outputFolderName":"yanghengtang_ip_master"},{"location":{"location":"https://github.com/victorpengmx/ip.git","repoName":"ip","organization":"victorpengmx","domainName":"github"},"branch":"master","displayName":"victorpengmx/ip[master]","outputFolderName":"victorpengmx_ip_master"},{"location":{"location":"https://github.com/kanna-1/ip.git","repoName":"ip","organization":"kanna-1","domainName":"github"},"branch":"master","displayName":"kanna-1/ip[master]","outputFolderName":"kanna-1_ip_master"},{"location":{"location":"https://github.com/ncduy0303/ip.git","repoName":"ip","organization":"ncduy0303","domainName":"github"},"branch":"master","displayName":"ncduy0303/ip[master]","outputFolderName":"ncduy0303_ip_master"},{"location":{"location":"https://github.com/jannnice/ip.git","repoName":"ip","organization":"jannnice","domainName":"github"},"branch":"master","displayName":"jannnice/ip[master]","outputFolderName":"jannnice_ip_master"},{"location":{"location":"https://github.com/itssisi/ip.git","repoName":"ip","organization":"itssisi","domainName":"github"},"branch":"master","displayName":"itssisi/ip[master]","outputFolderName":"itssisi_ip_master"},{"location":{"location":"https://github.com/freddychenyouren2/ip.git","repoName":"ip","organization":"freddychenyouren2","domainName":"github"},"branch":"master","displayName":"freddychenyouren2/ip[master]","outputFolderName":"freddychenyouren2_ip_master"},{"location":{"location":"https://github.com/Vanessamae23/ip.git","repoName":"ip","organization":"Vanessamae23","domainName":"github"},"branch":"master","displayName":"Vanessamae23/ip[master]","outputFolderName":"Vanessamae23_ip_master"},{"location":{"location":"https://github.com/cbj252/ip.git","repoName":"ip","organization":"cbj252","domainName":"github"},"branch":"master","displayName":"cbj252/ip[master]","outputFolderName":"cbj252_ip_master"},{"location":{"location":"https://github.com/freshcabbage123/ip.git","repoName":"ip","organization":"freshcabbage123","domainName":"github"},"branch":"master","displayName":"freshcabbage123/ip[master]","outputFolderName":"freshcabbage123_ip_master"},{"location":{"location":"https://github.com/thienmy0/ip.git","repoName":"ip","organization":"thienmy0","domainName":"github"},"branch":"master","displayName":"thienmy0/ip[master]","outputFolderName":"thienmy0_ip_master"},{"location":{"location":"https://github.com/glenngnng/ip.git","repoName":"ip","organization":"glenngnng","domainName":"github"},"branch":"master","displayName":"glenngnng/ip[master]","outputFolderName":"glenngnng_ip_master"},{"location":{"location":"https://github.com/Darren159/ip.git","repoName":"ip","organization":"Darren159","domainName":"github"},"branch":"master","displayName":"Darren159/ip[master]","outputFolderName":"Darren159_ip_master"},{"location":{"location":"https://github.com/J-hta-n/ip.git","repoName":"ip","organization":"J-hta-n","domainName":"github"},"branch":"master","displayName":"J-hta-n/ip[master]","outputFolderName":"J-hta-n_ip_master"},{"location":{"location":"https://github.com/evanyan13/ip.git","repoName":"ip","organization":"evanyan13","domainName":"github"},"branch":"master","displayName":"evanyan13/ip[master]","outputFolderName":"evanyan13_ip_master"},{"location":{"location":"https://github.com/tanveersingh10/ip.git","repoName":"ip","organization":"tanveersingh10","domainName":"github"},"branch":"master","displayName":"tanveersingh10/ip[master]","outputFolderName":"tanveersingh10_ip_master"},{"location":{"location":"https://github.com/neyapraveen/ip.git","repoName":"ip","organization":"neyapraveen","domainName":"github"},"branch":"master","displayName":"neyapraveen/ip[master]","outputFolderName":"neyapraveen_ip_master"},{"location":{"location":"https://github.com/weeweh/ip.git","repoName":"ip","organization":"weeweh","domainName":"github"},"branch":"master","displayName":"weeweh/ip[master]","outputFolderName":"weeweh_ip_master"},{"location":{"location":"https://github.com/HugeNoob/ip.git","repoName":"ip","organization":"HugeNoob","domainName":"github"},"branch":"master","displayName":"HugeNoob/ip[master]","outputFolderName":"HugeNoob_ip_master"},{"location":{"location":"https://github.com/wasjoe1/ip.git","repoName":"ip","organization":"wasjoe1","domainName":"github"},"branch":"master","displayName":"wasjoe1/ip[master]","outputFolderName":"wasjoe1_ip_master"},{"location":{"location":"https://github.com/s-kybound/ip.git","repoName":"ip","organization":"s-kybound","domainName":"github"},"branch":"master","displayName":"s-kybound/ip[master]","outputFolderName":"s-kybound_ip_master"},{"location":{"location":"https://github.com/Singa-pirate/ip.git","repoName":"ip","organization":"Singa-pirate","domainName":"github"},"branch":"master","displayName":"Singa-pirate/ip[master]","outputFolderName":"Singa-pirate_ip_master"},{"location":{"location":"https://github.com/wanghejin/ip.git","repoName":"ip","organization":"wanghejin","domainName":"github"},"branch":"master","displayName":"wanghejin/ip[master]","outputFolderName":"wanghejin_ip_master"},{"location":{"location":"https://github.com/yarnmengnus/ip.git","repoName":"ip","organization":"yarnmengnus","domainName":"github"},"branch":"master","displayName":"yarnmengnus/ip[master]","outputFolderName":"yarnmengnus_ip_master"},{"location":{"location":"https://github.com/Kurtyjlee/ip.git","repoName":"ip","organization":"Kurtyjlee","domainName":"github"},"branch":"master","displayName":"Kurtyjlee/ip[master]","outputFolderName":"Kurtyjlee_ip_master"},{"location":{"location":"https://github.com/jellywaiyan/ip.git","repoName":"ip","organization":"jellywaiyan","domainName":"github"},"branch":"master","displayName":"jellywaiyan/ip[master]","outputFolderName":"jellywaiyan_ip_master"},{"location":{"location":"https://github.com/ylyma/ip.git","repoName":"ip","organization":"ylyma","domainName":"github"},"branch":"master","displayName":"ylyma/ip[master]","outputFolderName":"ylyma_ip_master"},{"location":{"location":"https://github.com/revdrag/ip.git","repoName":"ip","organization":"revdrag","domainName":"github"},"branch":"master","displayName":"revdrag/ip[master]","outputFolderName":"revdrag_ip_master"},{"location":{"location":"https://github.com/vijay-shankaranand/ip.git","repoName":"ip","organization":"vijay-shankaranand","domainName":"github"},"branch":"master","displayName":"vijay-shankaranand/ip[master]","outputFolderName":"vijay-shankaranand_ip_master"},{"location":{"location":"https://github.com/lerxuann/ip.git","repoName":"ip","organization":"lerxuann","domainName":"github"},"branch":"master","displayName":"lerxuann/ip[master]","outputFolderName":"lerxuann_ip_master"},{"location":{"location":"https://github.com/yuxunn/ip.git","repoName":"ip","organization":"yuxunn","domainName":"github"},"branch":"master","displayName":"yuxunn/ip[master]","outputFolderName":"yuxunn_ip_master"},{"location":{"location":"https://github.com/zannloo/ip.git","repoName":"ip","organization":"zannloo","domainName":"github"},"branch":"master","displayName":"zannloo/ip[master]","outputFolderName":"zannloo_ip_master"},{"location":{"location":"https://github.com/AryanG01/ip.git","repoName":"ip","organization":"AryanG01","domainName":"github"},"branch":"master","displayName":"AryanG01/ip[master]","outputFolderName":"AryanG01_ip_master"},{"location":{"location":"https://github.com/oeggy03/ip.git","repoName":"ip","organization":"oeggy03","domainName":"github"},"branch":"master","displayName":"oeggy03/ip[master]","outputFolderName":"oeggy03_ip_master"},{"location":{"location":"https://github.com/jeffrey-jian/ip.git","repoName":"ip","organization":"jeffrey-jian","domainName":"github"},"branch":"master","displayName":"jeffrey-jian/ip[master]","outputFolderName":"jeffrey-jian_ip_master"},{"location":{"location":"https://github.com/nicholastng010601/ip.git","repoName":"ip","organization":"nicholastng010601","domainName":"github"},"branch":"master","displayName":"nicholastng010601/ip[master]","outputFolderName":"nicholastng010601_ip_master"},{"location":{"location":"https://github.com/Weiennn/ip.git","repoName":"ip","organization":"Weiennn","domainName":"github"},"branch":"master","displayName":"Weiennn/ip[master]","outputFolderName":"Weiennn_ip_master"},{"location":{"location":"https://github.com/tayruxin/ip.git","repoName":"ip","organization":"tayruxin","domainName":"github"},"branch":"master","displayName":"tayruxin/ip[master]","outputFolderName":"tayruxin_ip_master"},{"location":{"location":"https://github.com/xyT-T/ip.git","repoName":"ip","organization":"xyT-T","domainName":"github"},"branch":"master","displayName":"xyT-T/ip[master]","outputFolderName":"xyT-T_ip_master"},{"location":{"location":"https://github.com/lunaroddity/ip.git","repoName":"ip","organization":"lunaroddity","domainName":"github"},"branch":"master","displayName":"lunaroddity/ip[master]","outputFolderName":"lunaroddity_ip_master"},{"location":{"location":"https://github.com/nabonitasen/ip.git","repoName":"ip","organization":"nabonitasen","domainName":"github"},"branch":"master","displayName":"nabonitasen/ip[master]","outputFolderName":"nabonitasen_ip_master"},{"location":{"location":"https://github.com/inezkok/ip.git","repoName":"ip","organization":"inezkok","domainName":"github"},"branch":"master","displayName":"inezkok/ip[master]","outputFolderName":"inezkok_ip_master"},{"location":{"location":"https://github.com/nknguyenhc/ip.git","repoName":"ip","organization":"nknguyenhc","domainName":"github"},"branch":"master","displayName":"nknguyenhc/ip[master]","outputFolderName":"nknguyenhc_ip_master"},{"location":{"location":"https://github.com/keaganpzh/ip.git","repoName":"ip","organization":"keaganpzh","domainName":"github"},"branch":"master","displayName":"keaganpzh/ip[master]","outputFolderName":"keaganpzh_ip_master"},{"location":{"location":"https://github.com/lululwtv/ip.git","repoName":"ip","organization":"lululwtv","domainName":"github"},"branch":"master","displayName":"lululwtv/ip[master]","outputFolderName":"lululwtv_ip_master"},{"location":{"location":"https://github.com/hcs1203/ip.git","repoName":"ip","organization":"hcs1203","domainName":"github"},"branch":"master","displayName":"hcs1203/ip[master]","outputFolderName":"hcs1203_ip_master"},{"location":{"location":"https://github.com/migfoo02/ip.git","repoName":"ip","organization":"migfoo02","domainName":"github"},"branch":"master","displayName":"migfoo02/ip[master]","outputFolderName":"migfoo02_ip_master"},{"location":{"location":"https://github.com/papataco14/ip.git","repoName":"ip","organization":"papataco14","domainName":"github"},"branch":"master","displayName":"papataco14/ip[master]","outputFolderName":"papataco14_ip_master"},{"location":{"location":"https://github.com/coderhuang559/ip.git","repoName":"ip","organization":"coderhuang559","domainName":"github"},"branch":"master","displayName":"coderhuang559/ip[master]","outputFolderName":"coderhuang559_ip_master"},{"location":{"location":"https://github.com/craigtonlian/ip.git","repoName":"ip","organization":"craigtonlian","domainName":"github"},"branch":"master","displayName":"craigtonlian/ip[master]","outputFolderName":"craigtonlian_ip_master"},{"location":{"location":"https://github.com/adammangzijun/ip.git","repoName":"ip","organization":"adammangzijun","domainName":"github"},"branch":"master","displayName":"adammangzijun/ip[master]","outputFolderName":"adammangzijun_ip_master"},{"location":{"location":"https://github.com/AlainS87/ip.git","repoName":"ip","organization":"AlainS87","domainName":"github"},"branch":"master","displayName":"AlainS87/ip[master]","outputFolderName":"AlainS87_ip_master"},{"location":{"location":"https://github.com/tanyyyming/ip.git","repoName":"ip","organization":"tanyyyming","domainName":"github"},"branch":"master","displayName":"tanyyyming/ip[master]","outputFolderName":"tanyyyming_ip_master"},{"location":{"location":"https://github.com/Saezenn/ip.git","repoName":"ip","organization":"Saezenn","domainName":"github"},"branch":"master","displayName":"Saezenn/ip[master]","outputFolderName":"Saezenn_ip_master"},{"location":{"location":"https://github.com/kayabuttertoastt/ip.git","repoName":"ip","organization":"kayabuttertoastt","domainName":"github"},"branch":"master","displayName":"kayabuttertoastt/ip[master]","outputFolderName":"kayabuttertoastt_ip_master"},{"location":{"location":"https://github.com/limjunxian1/ip.git","repoName":"ip","organization":"limjunxian1","domainName":"github"},"branch":"master","displayName":"limjunxian1/ip[master]","outputFolderName":"limjunxian1_ip_master"},{"location":{"location":"https://github.com/andrechuakj/ip.git","repoName":"ip","organization":"andrechuakj","domainName":"github"},"branch":"master","displayName":"andrechuakj/ip[master]","outputFolderName":"andrechuakj_ip_master"},{"location":{"location":"https://github.com/kwangthiag/ip.git","repoName":"ip","organization":"kwangthiag","domainName":"github"},"branch":"master","displayName":"kwangthiag/ip[master]","outputFolderName":"kwangthiag_ip_master"},{"location":{"location":"https://github.com/ricketytoc/ip.git","repoName":"ip","organization":"ricketytoc","domainName":"github"},"branch":"master","displayName":"ricketytoc/ip[master]","outputFolderName":"ricketytoc_ip_master"},{"location":{"location":"https://github.com/applepiofmyeye/ip.git","repoName":"ip","organization":"applepiofmyeye","domainName":"github"},"branch":"master","displayName":"applepiofmyeye/ip[master]","outputFolderName":"applepiofmyeye_ip_master"},{"location":{"location":"https://github.com/nubnubyas/ip.git","repoName":"ip","organization":"nubnubyas","domainName":"github"},"branch":"master","displayName":"nubnubyas/ip[master]","outputFolderName":"nubnubyas_ip_master"},{"location":{"location":"https://github.com/WeeeHung/ip.git","repoName":"ip","organization":"WeeeHung","domainName":"github"},"branch":"master","displayName":"WeeeHung/ip[master]","outputFolderName":"WeeeHung_ip_master"},{"location":{"location":"https://github.com/Eola-Z/ip.git","repoName":"ip","organization":"Eola-Z","domainName":"github"},"branch":"master","displayName":"Eola-Z/ip[master]","outputFolderName":"Eola-Z_ip_master"},{"location":{"location":"https://github.com/jordankanghm/ip.git","repoName":"ip","organization":"jordankanghm","domainName":"github"},"branch":"master","displayName":"jordankanghm/ip[master]","outputFolderName":"jordankanghm_ip_master"},{"location":{"location":"https://github.com/zacwong2151/ip.git","repoName":"ip","organization":"zacwong2151","domainName":"github"},"branch":"master","displayName":"zacwong2151/ip[master]","outputFolderName":"zacwong2151_ip_master"},{"location":{"location":"https://github.com/m1oojv/ip.git","repoName":"ip","organization":"m1oojv","domainName":"github"},"branch":"master","displayName":"m1oojv/ip[master]","outputFolderName":"m1oojv_ip_master"},{"location":{"location":"https://github.com/JCSnap/ip.git","repoName":"ip","organization":"JCSnap","domainName":"github"},"branch":"master","displayName":"JCSnap/ip[master]","outputFolderName":"JCSnap_ip_master"},{"location":{"location":"https://github.com/Nid21cs/ip.git","repoName":"ip","organization":"Nid21cs","domainName":"github"},"branch":"master","displayName":"Nid21cs/ip[master]","outputFolderName":"Nid21cs_ip_master"},{"location":{"location":"https://github.com/mfjkri/ip.git","repoName":"ip","organization":"mfjkri","domainName":"github"},"branch":"master","displayName":"mfjkri/ip[master]","outputFolderName":"mfjkri_ip_master"},{"location":{"location":"https://github.com/Choonyan02/ip.git","repoName":"ip","organization":"Choonyan02","domainName":"github"},"branch":"master","displayName":"Choonyan02/ip[master]","outputFolderName":"Choonyan02_ip_master"},{"location":{"location":"https://github.com/rayyan35p/ip.git","repoName":"ip","organization":"rayyan35p","domainName":"github"},"branch":"master","displayName":"rayyan35p/ip[master]","outputFolderName":"rayyan35p_ip_master"},{"location":{"location":"https://github.com/dhruvir29/ip.git","repoName":"ip","organization":"dhruvir29","domainName":"github"},"branch":"master","displayName":"dhruvir29/ip[master]","outputFolderName":"dhruvir29_ip_master"},{"location":{"location":"https://github.com/Mohammed-Faizzzz/ip.git","repoName":"ip","organization":"Mohammed-Faizzzz","domainName":"github"},"branch":"master","displayName":"Mohammed-Faizzzz/ip[master]","outputFolderName":"Mohammed-Faizzzz_ip_master"},{"location":{"location":"https://github.com/ruo-x/ip.git","repoName":"ip","organization":"ruo-x","domainName":"github"},"branch":"master","displayName":"ruo-x/ip[master]","outputFolderName":"ruo-x_ip_master"},{"location":{"location":"https://github.com/DonovanJJ/ip.git","repoName":"ip","organization":"DonovanJJ","domainName":"github"},"branch":"master","displayName":"DonovanJJ/ip[master]","outputFolderName":"DonovanJJ_ip_master"},{"location":{"location":"https://github.com/kristayeo/ip.git","repoName":"ip","organization":"kristayeo","domainName":"github"},"branch":"master","displayName":"kristayeo/ip[master]","outputFolderName":"kristayeo_ip_master"},{"location":{"location":"https://github.com/ZD292/ip.git","repoName":"ip","organization":"ZD292","domainName":"github"},"branch":"master","displayName":"ZD292/ip[master]","outputFolderName":"ZD292_ip_master"},{"location":{"location":"https://github.com/jingjie88/ip.git","repoName":"ip","organization":"jingjie88","domainName":"github"},"branch":"master","displayName":"jingjie88/ip[master]","outputFolderName":"jingjie88_ip_master"},{"location":{"location":"https://github.com/iantsaii/ip.git","repoName":"ip","organization":"iantsaii","domainName":"github"},"branch":"master","displayName":"iantsaii/ip[master]","outputFolderName":"iantsaii_ip_master"},{"location":{"location":"https://github.com/jingting1412/ip.git","repoName":"ip","organization":"jingting1412","domainName":"github"},"branch":"master","displayName":"jingting1412/ip[master]","outputFolderName":"jingting1412_ip_master"},{"location":{"location":"https://github.com/wnchan/ip.git","repoName":"ip","organization":"wnchan","domainName":"github"},"branch":"master","displayName":"wnchan/ip[master]","outputFolderName":"wnchan_ip_master"},{"location":{"location":"https://github.com/jack1e0/ip.git","repoName":"ip","organization":"jack1e0","domainName":"github"},"branch":"master","displayName":"jack1e0/ip[master]","outputFolderName":"jack1e0_ip_master"},{"location":{"location":"https://github.com/mingyu-wan/ip.git","repoName":"ip","organization":"mingyu-wan","domainName":"github"},"branch":"master","displayName":"mingyu-wan/ip[master]","outputFolderName":"mingyu-wan_ip_master"},{"location":{"location":"https://github.com/nicolengk/ip.git","repoName":"ip","organization":"nicolengk","domainName":"github"},"branch":"master","displayName":"nicolengk/ip[master]","outputFolderName":"nicolengk_ip_master"},{"location":{"location":"https://github.com/cyaoxuan/ip.git","repoName":"ip","organization":"cyaoxuan","domainName":"github"},"branch":"master","displayName":"cyaoxuan/ip[master]","outputFolderName":"cyaoxuan_ip_master"},{"location":{"location":"https://github.com/sunzihan23/ip.git","repoName":"ip","organization":"sunzihan23","domainName":"github"},"branch":"master","displayName":"sunzihan23/ip[master]","outputFolderName":"sunzihan23_ip_master"},{"location":{"location":"https://github.com/Goh-Li-Ting/ip.git","repoName":"ip","organization":"Goh-Li-Ting","domainName":"github"},"branch":"master","displayName":"Goh-Li-Ting/ip[master]","outputFolderName":"Goh-Li-Ting_ip_master"},{"location":{"location":"https://github.com/wjayee/ip.git","repoName":"ip","organization":"wjayee","domainName":"github"},"branch":"master","displayName":"wjayee/ip[master]","outputFolderName":"wjayee_ip_master"},{"location":{"location":"https://github.com/fuyiqiao/ip.git","repoName":"ip","organization":"fuyiqiao","domainName":"github"},"branch":"master","displayName":"fuyiqiao/ip[master]","outputFolderName":"fuyiqiao_ip_master"},{"location":{"location":"https://github.com/GlendaChong/ip.git","repoName":"ip","organization":"GlendaChong","domainName":"github"},"branch":"master","displayName":"GlendaChong/ip[master]","outputFolderName":"GlendaChong_ip_master"},{"location":{"location":"https://github.com/hyc17003/ip.git","repoName":"ip","organization":"hyc17003","domainName":"github"},"branch":"master","displayName":"hyc17003/ip[master]","outputFolderName":"hyc17003_ip_master"},{"location":{"location":"https://github.com/spatuly/ip.git","repoName":"ip","organization":"spatuly","domainName":"github"},"branch":"master","displayName":"spatuly/ip[master]","outputFolderName":"spatuly_ip_master"},{"location":{"location":"https://github.com/tanteckfang/ip.git","repoName":"ip","organization":"tanteckfang","domainName":"github"},"branch":"master","displayName":"tanteckfang/ip[master]","outputFolderName":"tanteckfang_ip_master"},{"location":{"location":"https://github.com/Clin-lyx/ip.git","repoName":"ip","organization":"Clin-lyx","domainName":"github"},"branch":"master","displayName":"Clin-lyx/ip[master]","outputFolderName":"Clin-lyx_ip_master"},{"location":{"location":"https://github.com/lyuanww/ip.git","repoName":"ip","organization":"lyuanww","domainName":"github"},"branch":"master","displayName":"lyuanww/ip[master]","outputFolderName":"lyuanww_ip_master"},{"location":{"location":"https://github.com/LimJH2002/ip.git","repoName":"ip","organization":"LimJH2002","domainName":"github"},"branch":"master","displayName":"LimJH2002/ip[master]","outputFolderName":"LimJH2002_ip_master"},{"location":{"location":"https://github.com/LWZ19/ip.git","repoName":"ip","organization":"LWZ19","domainName":"github"},"branch":"master","displayName":"LWZ19/ip[master]","outputFolderName":"LWZ19_ip_master"},{"location":{"location":"https://github.com/Gavino3o/ip.git","repoName":"ip","organization":"Gavino3o","domainName":"github"},"branch":"master","displayName":"Gavino3o/ip[master]","outputFolderName":"Gavino3o_ip_master"},{"location":{"location":"https://github.com/suryanshkushwaha/ip.git","repoName":"ip","organization":"suryanshkushwaha","domainName":"github"},"branch":"master","displayName":"suryanshkushwaha/ip[master]","outputFolderName":"suryanshkushwaha_ip_master"},{"location":{"location":"https://github.com/JasonRay168/ip.git","repoName":"ip","organization":"JasonRay168","domainName":"github"},"branch":"master","displayName":"JasonRay168/ip[master]","outputFolderName":"JasonRay168_ip_master"},{"location":{"location":"https://github.com/jovkusuma/ip.git","repoName":"ip","organization":"jovkusuma","domainName":"github"},"branch":"master","displayName":"jovkusuma/ip[master]","outputFolderName":"jovkusuma_ip_master"},{"location":{"location":"https://github.com/Chrainx/ip.git","repoName":"ip","organization":"Chrainx","domainName":"github"},"branch":"master","displayName":"Chrainx/ip[master]","outputFolderName":"Chrainx_ip_master"},{"location":{"location":"https://github.com/Daphne789/ip.git","repoName":"ip","organization":"Daphne789","domainName":"github"},"branch":"master","displayName":"Daphne789/ip[master]","outputFolderName":"Daphne789_ip_master"},{"location":{"location":"https://github.com/ChuanXinNg/ip.git","repoName":"ip","organization":"ChuanXinNg","domainName":"github"},"branch":"master","displayName":"ChuanXinNg/ip[master]","outputFolderName":"ChuanXinNg_ip_master"},{"location":{"location":"https://github.com/LHeng1/ip.git","repoName":"ip","organization":"LHeng1","domainName":"github"},"branch":"master","displayName":"LHeng1/ip[master]","outputFolderName":"LHeng1_ip_master"},{"location":{"location":"https://github.com/wr1159/ip.git","repoName":"ip","organization":"wr1159","domainName":"github"},"branch":"master","displayName":"wr1159/ip[master]","outputFolderName":"wr1159_ip_master"},{"location":{"location":"https://github.com/wjacobw/ip.git","repoName":"ip","organization":"wjacobw","domainName":"github"},"branch":"master","displayName":"wjacobw/ip[master]","outputFolderName":"wjacobw_ip_master"},{"location":{"location":"https://github.com/tiongjjyi/ip.git","repoName":"ip","organization":"tiongjjyi","domainName":"github"},"branch":"master","displayName":"tiongjjyi/ip[master]","outputFolderName":"tiongjjyi_ip_master"},{"location":{"location":"https://github.com/longnguyentan/ip.git","repoName":"ip","organization":"longnguyentan","domainName":"github"},"branch":"master","displayName":"longnguyentan/ip[master]","outputFolderName":"longnguyentan_ip_master"},{"location":{"location":"https://github.com/proto-aiken-13/ip.git","repoName":"ip","organization":"proto-aiken-13","domainName":"github"},"branch":"master","displayName":"proto-aiken-13/ip[master]","outputFolderName":"proto-aiken-13_ip_master"},{"location":{"location":"https://github.com/junnengsoo/ip.git","repoName":"ip","organization":"junnengsoo","domainName":"github"},"branch":"master","displayName":"junnengsoo/ip[master]","outputFolderName":"junnengsoo_ip_master"},{"location":{"location":"https://github.com/yezkez10/ip.git","repoName":"ip","organization":"yezkez10","domainName":"github"},"branch":"master","displayName":"yezkez10/ip[master]","outputFolderName":"yezkez10_ip_master"},{"location":{"location":"https://github.com/jamesebond/ip.git","repoName":"ip","organization":"jamesebond","domainName":"github"},"branch":"master","displayName":"jamesebond/ip[master]","outputFolderName":"jamesebond_ip_master"},{"location":{"location":"https://github.com/alyssaongyx/ip.git","repoName":"ip","organization":"alyssaongyx","domainName":"github"},"branch":"master","displayName":"alyssaongyx/ip[master]","outputFolderName":"alyssaongyx_ip_master"},{"location":{"location":"https://github.com/Carlintyj/ip.git","repoName":"ip","organization":"Carlintyj","domainName":"github"},"branch":"master","displayName":"Carlintyj/ip[master]","outputFolderName":"Carlintyj_ip_master"},{"location":{"location":"https://github.com/ruth-lim/ip.git","repoName":"ip","organization":"ruth-lim","domainName":"github"},"branch":"master","displayName":"ruth-lim/ip[master]","outputFolderName":"ruth-lim_ip_master"},{"location":{"location":"https://github.com/licongshen12/ip.git","repoName":"ip","organization":"licongshen12","domainName":"github"},"branch":"master","displayName":"licongshen12/ip[master]","outputFolderName":"licongshen12_ip_master"},{"location":{"location":"https://github.com/thaddeusong/ip.git","repoName":"ip","organization":"thaddeusong","domainName":"github"},"branch":"master","displayName":"thaddeusong/ip[master]","outputFolderName":"thaddeusong_ip_master"},{"location":{"location":"https://github.com/LordSaumya/ip.git","repoName":"ip","organization":"LordSaumya","domainName":"github"},"branch":"master","displayName":"LordSaumya/ip[master]","outputFolderName":"LordSaumya_ip_master"},{"location":{"location":"https://github.com/Kevin-Liusx/ip.git","repoName":"ip","organization":"Kevin-Liusx","domainName":"github"},"branch":"master","displayName":"Kevin-Liusx/ip[master]","outputFolderName":"Kevin-Liusx_ip_master"},{"location":{"location":"https://github.com/Ken-Lai/ip.git","repoName":"ip","organization":"Ken-Lai","domainName":"github"},"branch":"master","displayName":"Ken-Lai/ip[master]","outputFolderName":"Ken-Lai_ip_master"},{"location":{"location":"https://github.com/KumChaiYin/ip.git","repoName":"ip","organization":"KumChaiYin","domainName":"github"},"branch":"master","displayName":"KumChaiYin/ip[master]","outputFolderName":"KumChaiYin_ip_master"},{"location":{"location":"https://github.com/pzl111/ip.git","repoName":"ip","organization":"pzl111","domainName":"github"},"branch":"master","displayName":"pzl111/ip[master]","outputFolderName":"pzl111_ip_master"},{"location":{"location":"https://github.com/alientian/ip.git","repoName":"ip","organization":"alientian","domainName":"github"},"branch":"master","displayName":"alientian/ip[master]","outputFolderName":"alientian_ip_master"},{"location":{"location":"https://github.com/eyelessrhyme7/ip.git","repoName":"ip","organization":"eyelessrhyme7","domainName":"github"},"branch":"master","displayName":"eyelessrhyme7/ip[master]","outputFolderName":"eyelessrhyme7_ip_master"},{"location":{"location":"https://github.com/AprupKale/ip.git","repoName":"ip","organization":"AprupKale","domainName":"github"},"branch":"master","displayName":"AprupKale/ip[master]","outputFolderName":"AprupKale_ip_master"},{"location":{"location":"https://github.com/kimshitong/ip.git","repoName":"ip","organization":"kimshitong","domainName":"github"},"branch":"master","displayName":"kimshitong/ip[master]","outputFolderName":"kimshitong_ip_master"},{"location":{"location":"https://github.com/Bryan-Goh/ip.git","repoName":"ip","organization":"Bryan-Goh","domainName":"github"},"branch":"master","displayName":"Bryan-Goh/ip[master]","outputFolderName":"Bryan-Goh_ip_master"},{"location":{"location":"https://github.com/tiif/ip.git","repoName":"ip","organization":"tiif","domainName":"github"},"branch":"master","displayName":"tiif/ip[master]","outputFolderName":"tiif_ip_master"},{"location":{"location":"https://github.com/angkyakdifp/ip.git","repoName":"ip","organization":"angkyakdifp","domainName":"github"},"branch":"master","displayName":"angkyakdifp/ip[master]","outputFolderName":"angkyakdifp_ip_master"},{"location":{"location":"https://github.com/Chen-Kuei/ip.git","repoName":"ip","organization":"Chen-Kuei","domainName":"github"},"branch":"master","displayName":"Chen-Kuei/ip[master]","outputFolderName":"Chen-Kuei_ip_master"},{"location":{"location":"https://github.com/SinhaVedant/ip.git","repoName":"ip","organization":"SinhaVedant","domainName":"github"},"branch":"master","displayName":"SinhaVedant/ip[master]","outputFolderName":"SinhaVedant_ip_master"},{"location":{"location":"https://github.com/D-Limiter/ip.git","repoName":"ip","organization":"D-Limiter","domainName":"github"},"branch":"master","displayName":"D-Limiter/ip[master]","outputFolderName":"D-Limiter_ip_master"},{"location":{"location":"https://github.com/larrywang0701/ip.git","repoName":"ip","organization":"larrywang0701","domainName":"github"},"branch":"master","displayName":"larrywang0701/ip[master]","outputFolderName":"larrywang0701_ip_master"},{"location":{"location":"https://github.com/Song-Mengfei/ip.git","repoName":"ip","organization":"Song-Mengfei","domainName":"github"},"branch":"master","displayName":"Song-Mengfei/ip[master]","outputFolderName":"Song-Mengfei_ip_master"},{"location":{"location":"https://github.com/ChangruHenryQian/ip.git","repoName":"ip","organization":"ChangruHenryQian","domainName":"github"},"branch":"master","displayName":"ChangruHenryQian/ip[master]","outputFolderName":"ChangruHenryQian_ip_master"},{"location":{"location":"https://github.com/ketweeen/ip.git","repoName":"ip","organization":"ketweeen","domainName":"github"},"branch":"master","displayName":"ketweeen/ip[master]","outputFolderName":"ketweeen_ip_master"},{"location":{"location":"https://github.com/RSXIX/ip.git","repoName":"ip","organization":"RSXIX","domainName":"github"},"branch":"master","displayName":"RSXIX/ip[master]","outputFolderName":"RSXIX_ip_master"},{"location":{"location":"https://github.com/songgthu/ip.git","repoName":"ip","organization":"songgthu","domainName":"github"},"branch":"master","displayName":"songgthu/ip[master]","outputFolderName":"songgthu_ip_master"},{"location":{"location":"https://github.com/maj0-0/ip.git","repoName":"ip","organization":"maj0-0","domainName":"github"},"branch":"master","displayName":"maj0-0/ip[master]","outputFolderName":"maj0-0_ip_master"},{"location":{"location":"https://github.com/tiongMax/ip.git","repoName":"ip","organization":"tiongMax","domainName":"github"},"branch":"master","displayName":"tiongMax/ip[master]","outputFolderName":"tiongMax_ip_master"},{"location":{"location":"https://github.com/A1WAYSD/ip.git","repoName":"ip","organization":"A1WAYSD","domainName":"github"},"branch":"master","displayName":"A1WAYSD/ip[master]","outputFolderName":"A1WAYSD_ip_master"},{"location":{"location":"https://github.com/hjoneweek/ip.git","repoName":"ip","organization":"hjoneweek","domainName":"github"},"branch":"master","displayName":"hjoneweek/ip[master]","outputFolderName":"hjoneweek_ip_master"},{"location":{"location":"https://github.com/itsNatTan/ip.git","repoName":"ip","organization":"itsNatTan","domainName":"github"},"branch":"master","displayName":"itsNatTan/ip[master]","outputFolderName":"itsNatTan_ip_master"},{"location":{"location":"https://github.com/AustinHuang1203/ip.git","repoName":"ip","organization":"AustinHuang1203","domainName":"github"},"branch":"master","displayName":"AustinHuang1203/ip[master]","outputFolderName":"AustinHuang1203_ip_master"},{"location":{"location":"https://github.com/WangCheng0116/ip.git","repoName":"ip","organization":"WangCheng0116","domainName":"github"},"branch":"master","displayName":"WangCheng0116/ip[master]","outputFolderName":"WangCheng0116_ip_master"},{"location":{"location":"https://github.com/Tim-Siu/ip.git","repoName":"ip","organization":"Tim-Siu","domainName":"github"},"branch":"master","displayName":"Tim-Siu/ip[master]","outputFolderName":"Tim-Siu_ip_master"},{"location":{"location":"https://github.com/newway1814/ip.git","repoName":"ip","organization":"newway1814","domainName":"github"},"branch":"master","displayName":"newway1814/ip[master]","outputFolderName":"newway1814_ip_master"},{"location":{"location":"https://github.com/li-rongzhi/ip.git","repoName":"ip","organization":"li-rongzhi","domainName":"github"},"branch":"master","displayName":"li-rongzhi/ip[master]","outputFolderName":"li-rongzhi_ip_master"},{"location":{"location":"https://github.com/adhigop13/ip.git","repoName":"ip","organization":"adhigop13","domainName":"github"},"branch":"master","displayName":"adhigop13/ip[master]","outputFolderName":"adhigop13_ip_master"},{"location":{"location":"https://github.com/MadLamprey/ip.git","repoName":"ip","organization":"MadLamprey","domainName":"github"},"branch":"master","displayName":"MadLamprey/ip[master]","outputFolderName":"MadLamprey_ip_master"}],"errorSet":[{"repoName":"Propene-Dan/ip[master]","errorMessage":"Failed to clone from https://github.com/Propene-Dan/ip.git"},{"repoName":"Cloud7050/ip[master]","errorMessage":"Failed to clone from https://github.com/Cloud7050/ip.git"}],"sinceDate":"2023-08-18","untilDate":"2023-08-30","isSinceDateProvided":true,"isUntilDateProvided":false,"supportedDomainUrlMap":{"NOT_RECOGNIZED":{"BRANCH":"","REPO_URL":"UNSUPPORTED","BASE_URL":"UNSUPPORTED","HISTORY_PATH":"","COMMIT_PATH":"","BLAME_PATH":""},"github":{"BRANCH":"tree/$BRANCH","REPO_URL":"https://github.com/$ORGANIZATION/$REPO_NAME/","BASE_URL":"https://github.com/","HISTORY_PATH":"commits/$BRANCH/$FILE_PATH","COMMIT_PATH":"commit/$COMMIT_HASH","BLAME_PATH":"blame/$BRANCH/$FILE_PATH"}}} +{"repoSenseVersion":"324a0cbbff","reportGeneratedTime":"Wed Aug 30 09:25:45 2023 UTC+08:00","reportGenerationTime":" 1 minute(s) 7.42 second(s)","zoneId":"UTC+08:00","reportTitle":"CS2103 iP Code Dashboard","repos":[{"location":{"location":"https://github.com/remuslum/ip.git","repoName":"ip","organization":"remuslum","domainName":"github"},"branch":"master","displayName":"remuslum/ip[master]","outputFolderName":"remuslum_ip_master"},{"location":{"location":"https://github.com/elhy1999/ip.git","repoName":"ip","organization":"elhy1999","domainName":"github"},"branch":"master","displayName":"elhy1999/ip[master]","outputFolderName":"elhy1999_ip_master"},{"location":{"location":"https://github.com/XihuaZ/ip.git","repoName":"ip","organization":"XihuaZ","domainName":"github"},"branch":"master","displayName":"XihuaZ/ip[master]","outputFolderName":"XihuaZ_ip_master"},{"location":{"location":"https://github.com/bwangpj/ip.git","repoName":"ip","organization":"bwangpj","domainName":"github"},"branch":"master","displayName":"bwangpj/ip[master]","outputFolderName":"bwangpj_ip_master"},{"location":{"location":"https://github.com/shuenj/ip.git","repoName":"ip","organization":"shuenj","domainName":"github"},"branch":"master","displayName":"shuenj/ip[master]","outputFolderName":"shuenj_ip_master"},{"location":{"location":"https://github.com/SungMatt/ip.git","repoName":"ip","organization":"SungMatt","domainName":"github"},"branch":"master","displayName":"SungMatt/ip[master]","outputFolderName":"SungMatt_ip_master"},{"location":{"location":"https://github.com/junhonglow/ip.git","repoName":"ip","organization":"junhonglow","domainName":"github"},"branch":"master","displayName":"junhonglow/ip[master]","outputFolderName":"junhonglow_ip_master"},{"location":{"location":"https://github.com/xavierpok/ip.git","repoName":"ip","organization":"xavierpok","domainName":"github"},"branch":"master","displayName":"xavierpok/ip[master]","outputFolderName":"xavierpok_ip_master"},{"location":{"location":"https://github.com/marcellaantania/ip.git","repoName":"ip","organization":"marcellaantania","domainName":"github"},"branch":"master","displayName":"marcellaantania/ip[master]","outputFolderName":"marcellaantania_ip_master"},{"location":{"location":"https://github.com/felibunnyy/ip.git","repoName":"ip","organization":"felibunnyy","domainName":"github"},"branch":"master","displayName":"felibunnyy/ip[master]","outputFolderName":"felibunnyy_ip_master"},{"location":{"location":"https://github.com/starrylight99/ip.git","repoName":"ip","organization":"starrylight99","domainName":"github"},"branch":"master","displayName":"starrylight99/ip[master]","outputFolderName":"starrylight99_ip_master"},{"location":{"location":"https://github.com/leezhanpeng/ip.git","repoName":"ip","organization":"leezhanpeng","domainName":"github"},"branch":"master","displayName":"leezhanpeng/ip[master]","outputFolderName":"leezhanpeng_ip_master"},{"location":{"location":"https://github.com/sheryew/ip.git","repoName":"ip","organization":"sheryew","domainName":"github"},"branch":"master","displayName":"sheryew/ip[master]","outputFolderName":"sheryew_ip_master"},{"location":{"location":"https://github.com/lihongguang00/ip.git","repoName":"ip","organization":"lihongguang00","domainName":"github"},"branch":"master","displayName":"lihongguang00/ip[master]","outputFolderName":"lihongguang00_ip_master"},{"location":{"location":"https://github.com/nicrandomlee/ip.git","repoName":"ip","organization":"nicrandomlee","domainName":"github"},"branch":"master","displayName":"nicrandomlee/ip[master]","outputFolderName":"nicrandomlee_ip_master"},{"location":{"location":"https://github.com/LuahJunYang/ip.git","repoName":"ip","organization":"LuahJunYang","domainName":"github"},"branch":"master","displayName":"LuahJunYang/ip[master]","outputFolderName":"LuahJunYang_ip_master"},{"location":{"location":"https://github.com/s-peiran/ip.git","repoName":"ip","organization":"s-peiran","domainName":"github"},"branch":"master","displayName":"s-peiran/ip[master]","outputFolderName":"s-peiran_ip_master"},{"location":{"location":"https://github.com/aarontxz/ip.git","repoName":"ip","organization":"aarontxz","domainName":"github"},"branch":"master","displayName":"aarontxz/ip[master]","outputFolderName":"aarontxz_ip_master"},{"location":{"location":"https://github.com/chiayunrong/ip.git","repoName":"ip","organization":"chiayunrong","domainName":"github"},"branch":"master","displayName":"chiayunrong/ip[master]","outputFolderName":"chiayunrong_ip_master"},{"location":{"location":"https://github.com/nixonwidjaja/ip.git","repoName":"ip","organization":"nixonwidjaja","domainName":"github"},"branch":"master","displayName":"nixonwidjaja/ip[master]","outputFolderName":"nixonwidjaja_ip_master"},{"location":{"location":"https://github.com/imkwokyong/ip.git","repoName":"ip","organization":"imkwokyong","domainName":"github"},"branch":"master","displayName":"imkwokyong/ip[master]","outputFolderName":"imkwokyong_ip_master"},{"location":{"location":"https://github.com/mamayuan/ip.git","repoName":"ip","organization":"mamayuan","domainName":"github"},"branch":"master","displayName":"mamayuan/ip[master]","outputFolderName":"mamayuan_ip_master"},{"location":{"location":"https://github.com/geoffong11/ip.git","repoName":"ip","organization":"geoffong11","domainName":"github"},"branch":"master","displayName":"geoffong11/ip[master]","outputFolderName":"geoffong11_ip_master"},{"location":{"location":"https://github.com/vivienherq/ip.git","repoName":"ip","organization":"vivienherq","domainName":"github"},"branch":"master","displayName":"vivienherq/ip[master]","outputFolderName":"vivienherq_ip_master"},{"location":{"location":"https://github.com/johnnythesnake12/ip.git","repoName":"ip","organization":"johnnythesnake12","domainName":"github"},"branch":"master","displayName":"johnnythesnake12/ip[master]","outputFolderName":"johnnythesnake12_ip_master"},{"location":{"location":"https://github.com/jonyeokj/ip.git","repoName":"ip","organization":"jonyeokj","domainName":"github"},"branch":"master","displayName":"jonyeokj/ip[master]","outputFolderName":"jonyeokj_ip_master"},{"location":{"location":"https://github.com/lipwei1808/ip.git","repoName":"ip","organization":"lipwei1808","domainName":"github"},"branch":"master","displayName":"lipwei1808/ip[master]","outputFolderName":"lipwei1808_ip_master"},{"location":{"location":"https://github.com/zhanyang01/ip.git","repoName":"ip","organization":"zhanyang01","domainName":"github"},"branch":"master","displayName":"zhanyang01/ip[master]","outputFolderName":"zhanyang01_ip_master"},{"location":{"location":"https://github.com/EricXiong420/ip.git","repoName":"ip","organization":"EricXiong420","domainName":"github"},"branch":"master","displayName":"EricXiong420/ip[master]","outputFolderName":"EricXiong420_ip_master"},{"location":{"location":"https://github.com/sp4ce-cowboy/ip.git","repoName":"ip","organization":"sp4ce-cowboy","domainName":"github"},"branch":"master","displayName":"sp4ce-cowboy/ip[master]","outputFolderName":"sp4ce-cowboy_ip_master"},{"location":{"location":"https://github.com/ktzy0305/ip.git","repoName":"ip","organization":"ktzy0305","domainName":"github"},"branch":"master","displayName":"ktzy0305/ip[master]","outputFolderName":"ktzy0305_ip_master"},{"location":{"location":"https://github.com/dom-buri/ip.git","repoName":"ip","organization":"dom-buri","domainName":"github"},"branch":"master","displayName":"dom-buri/ip[master]","outputFolderName":"dom-buri_ip_master"},{"location":{"location":"https://github.com/rayshawntan/ip.git","repoName":"ip","organization":"rayshawntan","domainName":"github"},"branch":"master","displayName":"rayshawntan/ip[master]","outputFolderName":"rayshawntan_ip_master"},{"location":{"location":"https://github.com/Seonlo99/ip.git","repoName":"ip","organization":"Seonlo99","domainName":"github"},"branch":"master","displayName":"Seonlo99/ip[master]","outputFolderName":"Seonlo99_ip_master"},{"location":{"location":"https://github.com/woojiahao/ip.git","repoName":"ip","organization":"woojiahao","domainName":"github"},"branch":"master","displayName":"woojiahao/ip[master]","outputFolderName":"woojiahao_ip_master"},{"location":{"location":"https://github.com/jamz903/ip.git","repoName":"ip","organization":"jamz903","domainName":"github"},"branch":"master","displayName":"jamz903/ip[master]","outputFolderName":"jamz903_ip_master"},{"location":{"location":"https://github.com/Fallman2/ip.git","repoName":"ip","organization":"Fallman2","domainName":"github"},"branch":"master","displayName":"Fallman2/ip[master]","outputFolderName":"Fallman2_ip_master"},{"location":{"location":"https://github.com/jacobcuison/ip.git","repoName":"ip","organization":"jacobcuison","domainName":"github"},"branch":"master","displayName":"jacobcuison/ip[master]","outputFolderName":"jacobcuison_ip_master"},{"location":{"location":"https://github.com/kenvynKwek/ip.git","repoName":"ip","organization":"kenvynKwek","domainName":"github"},"branch":"master","displayName":"kenvynKwek/ip[master]","outputFolderName":"kenvynKwek_ip_master"},{"location":{"location":"https://github.com/kokrui/ip.git","repoName":"ip","organization":"kokrui","domainName":"github"},"branch":"master","displayName":"kokrui/ip[master]","outputFolderName":"kokrui_ip_master"},{"location":{"location":"https://github.com/ncmathan/ip.git","repoName":"ip","organization":"ncmathan","domainName":"github"},"branch":"master","displayName":"ncmathan/ip[master]","outputFolderName":"ncmathan_ip_master"},{"location":{"location":"https://github.com/xCOLOURx/ip.git","repoName":"ip","organization":"xCOLOURx","domainName":"github"},"branch":"master","displayName":"xCOLOURx/ip[master]","outputFolderName":"xCOLOURx_ip_master"},{"location":{"location":"https://github.com/zhyuhan/ip.git","repoName":"ip","organization":"zhyuhan","domainName":"github"},"branch":"master","displayName":"zhyuhan/ip[master]","outputFolderName":"zhyuhan_ip_master"},{"location":{"location":"https://github.com/ceilingFan456/ip.git","repoName":"ip","organization":"ceilingFan456","domainName":"github"},"branch":"master","displayName":"ceilingFan456/ip[master]","outputFolderName":"ceilingFan456_ip_master"},{"location":{"location":"https://github.com/chuababyy/ip.git","repoName":"ip","organization":"chuababyy","domainName":"github"},"branch":"master","displayName":"chuababyy/ip[master]","outputFolderName":"chuababyy_ip_master"},{"location":{"location":"https://github.com/rocketninja7/ip.git","repoName":"ip","organization":"rocketninja7","domainName":"github"},"branch":"master","displayName":"rocketninja7/ip[master]","outputFolderName":"rocketninja7_ip_master"},{"location":{"location":"https://github.com/marquestye/ip.git","repoName":"ip","organization":"marquestye","domainName":"github"},"branch":"master","displayName":"marquestye/ip[master]","outputFolderName":"marquestye_ip_master"},{"location":{"location":"https://github.com/ruiyangzh/ip.git","repoName":"ip","organization":"ruiyangzh","domainName":"github"},"branch":"master","displayName":"ruiyangzh/ip[master]","outputFolderName":"ruiyangzh_ip_master"},{"location":{"location":"https://github.com/derekjxtan/ip.git","repoName":"ip","organization":"derekjxtan","domainName":"github"},"branch":"master","displayName":"derekjxtan/ip[master]","outputFolderName":"derekjxtan_ip_master"},{"location":{"location":"https://github.com/mounilsankar/ip.git","repoName":"ip","organization":"mounilsankar","domainName":"github"},"branch":"master","displayName":"mounilsankar/ip[master]","outputFolderName":"mounilsankar_ip_master"},{"location":{"location":"https://github.com/wj331/ip.git","repoName":"ip","organization":"wj331","domainName":"github"},"branch":"master","displayName":"wj331/ip[master]","outputFolderName":"wj331_ip_master"},{"location":{"location":"https://github.com/JasonLCY-Temp/ip.git","repoName":"ip","organization":"JasonLCY-Temp","domainName":"github"},"branch":"master","displayName":"JasonLCY-Temp/ip[master]","outputFolderName":"JasonLCY-Temp_ip_master"},{"location":{"location":"https://github.com/lawruixi/ip.git","repoName":"ip","organization":"lawruixi","domainName":"github"},"branch":"master","displayName":"lawruixi/ip[master]","outputFolderName":"lawruixi_ip_master"},{"location":{"location":"https://github.com/wxwern/ip.git","repoName":"ip","organization":"wxwern","domainName":"github"},"branch":"master","displayName":"wxwern/ip[master]","outputFolderName":"wxwern_ip_master"},{"location":{"location":"https://github.com/zekone/ip.git","repoName":"ip","organization":"zekone","domainName":"github"},"branch":"master","displayName":"zekone/ip[master]","outputFolderName":"zekone_ip_master"},{"location":{"location":"https://github.com/wamps-jp/ip.git","repoName":"ip","organization":"wamps-jp","domainName":"github"},"branch":"master","displayName":"wamps-jp/ip[master]","outputFolderName":"wamps-jp_ip_master"},{"location":{"location":"https://github.com/saltedfishxx/ip.git","repoName":"ip","organization":"saltedfishxx","domainName":"github"},"branch":"master","displayName":"saltedfishxx/ip[master]","outputFolderName":"saltedfishxx_ip_master"},{"location":{"location":"https://github.com/winson8222/ip.git","repoName":"ip","organization":"winson8222","domainName":"github"},"branch":"master","displayName":"winson8222/ip[master]","outputFolderName":"winson8222_ip_master"},{"location":{"location":"https://github.com/brandon-nam/ip.git","repoName":"ip","organization":"brandon-nam","domainName":"github"},"branch":"master","displayName":"brandon-nam/ip[master]","outputFolderName":"brandon-nam_ip_master"},{"location":{"location":"https://github.com/p-xp/ip.git","repoName":"ip","organization":"p-xp","domainName":"github"},"branch":"master","displayName":"p-xp/ip[master]","outputFolderName":"p-xp_ip_master"},{"location":{"location":"https://github.com/WeeMingQing/ip.git","repoName":"ip","organization":"WeeMingQing","domainName":"github"},"branch":"master","displayName":"WeeMingQing/ip[master]","outputFolderName":"WeeMingQing_ip_master"},{"location":{"location":"https://github.com/ScarletBlanks/ip.git","repoName":"ip","organization":"ScarletBlanks","domainName":"github"},"branch":"master","displayName":"ScarletBlanks/ip[master]","outputFolderName":"ScarletBlanks_ip_master"},{"location":{"location":"https://github.com/seraphimstreets/ip.git","repoName":"ip","organization":"seraphimstreets","domainName":"github"},"branch":"master","displayName":"seraphimstreets/ip[master]","outputFolderName":"seraphimstreets_ip_master"},{"location":{"location":"https://github.com/devanshubisht/ip.git","repoName":"ip","organization":"devanshubisht","domainName":"github"},"branch":"master","displayName":"devanshubisht/ip[master]","outputFolderName":"devanshubisht_ip_master"},{"location":{"location":"https://github.com/Zjinnnn/ip.git","repoName":"ip","organization":"Zjinnnn","domainName":"github"},"branch":"master","displayName":"Zjinnnn/ip[master]","outputFolderName":"Zjinnnn_ip_master"},{"location":{"location":"https://github.com/brendanneojw/ip.git","repoName":"ip","organization":"brendanneojw","domainName":"github"},"branch":"master","displayName":"brendanneojw/ip[master]","outputFolderName":"brendanneojw_ip_master"},{"location":{"location":"https://github.com/aexolate/ip.git","repoName":"ip","organization":"aexolate","domainName":"github"},"branch":"master","displayName":"aexolate/ip[master]","outputFolderName":"aexolate_ip_master"},{"location":{"location":"https://github.com/techjay-c/ip.git","repoName":"ip","organization":"techjay-c","domainName":"github"},"branch":"master","displayName":"techjay-c/ip[master]","outputFolderName":"techjay-c_ip_master"},{"location":{"location":"https://github.com/SynapseProgramming/ip.git","repoName":"ip","organization":"SynapseProgramming","domainName":"github"},"branch":"master","displayName":"SynapseProgramming/ip[master]","outputFolderName":"SynapseProgramming_ip_master"},{"location":{"location":"https://github.com/TyrusLye/ip.git","repoName":"ip","organization":"TyrusLye","domainName":"github"},"branch":"master","displayName":"TyrusLye/ip[master]","outputFolderName":"TyrusLye_ip_master"},{"location":{"location":"https://github.com/RB9823/ip.git","repoName":"ip","organization":"RB9823","domainName":"github"},"branch":"master","displayName":"RB9823/ip[master]","outputFolderName":"RB9823_ip_master"},{"location":{"location":"https://github.com/jean-cq/ip.git","repoName":"ip","organization":"jean-cq","domainName":"github"},"branch":"master","displayName":"jean-cq/ip[master]","outputFolderName":"jean-cq_ip_master"},{"location":{"location":"https://github.com/Bearypop/ip.git","repoName":"ip","organization":"Bearypop","domainName":"github"},"branch":"master","displayName":"Bearypop/ip[master]","outputFolderName":"Bearypop_ip_master"},{"location":{"location":"https://github.com/andytoh1/ip.git","repoName":"ip","organization":"andytoh1","domainName":"github"},"branch":"master","displayName":"andytoh1/ip[master]","outputFolderName":"andytoh1_ip_master"},{"location":{"location":"https://github.com/siqirua/ip.git","repoName":"ip","organization":"siqirua","domainName":"github"},"branch":"master","displayName":"siqirua/ip[master]","outputFolderName":"siqirua_ip_master"},{"location":{"location":"https://github.com/amosting/ip.git","repoName":"ip","organization":"amosting","domainName":"github"},"branch":"master","displayName":"amosting/ip[master]","outputFolderName":"amosting_ip_master"},{"location":{"location":"https://github.com/JizhuoChen/ip.git","repoName":"ip","organization":"JizhuoChen","domainName":"github"},"branch":"master","displayName":"JizhuoChen/ip[master]","outputFolderName":"JizhuoChen_ip_master"},{"location":{"location":"https://github.com/Tang-Moyan/ip.git","repoName":"ip","organization":"Tang-Moyan","domainName":"github"},"branch":"master","displayName":"Tang-Moyan/ip[master]","outputFolderName":"Tang-Moyan_ip_master"},{"location":{"location":"https://github.com/aliciamichellew/ip.git","repoName":"ip","organization":"aliciamichellew","domainName":"github"},"branch":"master","displayName":"aliciamichellew/ip[master]","outputFolderName":"aliciamichellew_ip_master"},{"location":{"location":"https://github.com/KamiliArsyad/ip.git","repoName":"ip","organization":"KamiliArsyad","domainName":"github"},"branch":"master","displayName":"KamiliArsyad/ip[master]","outputFolderName":"KamiliArsyad_ip_master"},{"location":{"location":"https://github.com/dishenggg/ip.git","repoName":"ip","organization":"dishenggg","domainName":"github"},"branch":"master","displayName":"dishenggg/ip[master]","outputFolderName":"dishenggg_ip_master"},{"location":{"location":"https://github.com/Nixx162/ip.git","repoName":"ip","organization":"Nixx162","domainName":"github"},"branch":"master","displayName":"Nixx162/ip[master]","outputFolderName":"Nixx162_ip_master"},{"location":{"location":"https://github.com/Leb14/ip.git","repoName":"ip","organization":"Leb14","domainName":"github"},"branch":"master","displayName":"Leb14/ip[master]","outputFolderName":"Leb14_ip_master"},{"location":{"location":"https://github.com/Heran9/ip.git","repoName":"ip","organization":"Heran9","domainName":"github"},"branch":"master","displayName":"Heran9/ip[master]","outputFolderName":"Heran9_ip_master"},{"location":{"location":"https://github.com/FerdiHS/ip.git","repoName":"ip","organization":"FerdiHS","domainName":"github"},"branch":"master","displayName":"FerdiHS/ip[master]","outputFolderName":"FerdiHS_ip_master"},{"location":{"location":"https://github.com/StevenLiudw/ip.git","repoName":"ip","organization":"StevenLiudw","domainName":"github"},"branch":"master","displayName":"StevenLiudw/ip[master]","outputFolderName":"StevenLiudw_ip_master"},{"location":{"location":"https://github.com/InfiBeyond/ip.git","repoName":"ip","organization":"InfiBeyond","domainName":"github"},"branch":"master","displayName":"InfiBeyond/ip[master]","outputFolderName":"InfiBeyond_ip_master"},{"location":{"location":"https://github.com/s0ngyang/ip.git","repoName":"ip","organization":"s0ngyang","domainName":"github"},"branch":"master","displayName":"s0ngyang/ip[master]","outputFolderName":"s0ngyang_ip_master"},{"location":{"location":"https://github.com/ivyy-poison/ip.git","repoName":"ip","organization":"ivyy-poison","domainName":"github"},"branch":"master","displayName":"ivyy-poison/ip[master]","outputFolderName":"ivyy-poison_ip_master"},{"location":{"location":"https://github.com/yytan25/ip.git","repoName":"ip","organization":"yytan25","domainName":"github"},"branch":"master","displayName":"yytan25/ip[master]","outputFolderName":"yytan25_ip_master"},{"location":{"location":"https://github.com/tjch-o/ip.git","repoName":"ip","organization":"tjch-o","domainName":"github"},"branch":"master","displayName":"tjch-o/ip[master]","outputFolderName":"tjch-o_ip_master"},{"location":{"location":"https://github.com/jedkohjk/ip.git","repoName":"ip","organization":"jedkohjk","domainName":"github"},"branch":"master","displayName":"jedkohjk/ip[master]","outputFolderName":"jedkohjk_ip_master"},{"location":{"location":"https://github.com/raynertjx/ip.git","repoName":"ip","organization":"raynertjx","domainName":"github"},"branch":"master","displayName":"raynertjx/ip[master]","outputFolderName":"raynertjx_ip_master"},{"location":{"location":"https://github.com/cmHuang777/ip.git","repoName":"ip","organization":"cmHuang777","domainName":"github"},"branch":"master","displayName":"cmHuang777/ip[master]","outputFolderName":"cmHuang777_ip_master"},{"location":{"location":"https://github.com/wui-hong/ip.git","repoName":"ip","organization":"wui-hong","domainName":"github"},"branch":"master","displayName":"wui-hong/ip[master]","outputFolderName":"wui-hong_ip_master"},{"location":{"location":"https://github.com/PohSayKeong/ip.git","repoName":"ip","organization":"PohSayKeong","domainName":"github"},"branch":"master","displayName":"PohSayKeong/ip[master]","outputFolderName":"PohSayKeong_ip_master"},{"location":{"location":"https://github.com/lsyurea/ip.git","repoName":"ip","organization":"lsyurea","domainName":"github"},"branch":"master","displayName":"lsyurea/ip[master]","outputFolderName":"lsyurea_ip_master"},{"location":{"location":"https://github.com/ong-wei-hong/ip.git","repoName":"ip","organization":"ong-wei-hong","domainName":"github"},"branch":"master","displayName":"ong-wei-hong/ip[master]","outputFolderName":"ong-wei-hong_ip_master"},{"location":{"location":"https://github.com/asdfghjkxd/ip.git","repoName":"ip","organization":"asdfghjkxd","domainName":"github"},"branch":"master","displayName":"asdfghjkxd/ip[master]","outputFolderName":"asdfghjkxd_ip_master"},{"location":{"location":"https://github.com/GSgiansen/ip.git","repoName":"ip","organization":"GSgiansen","domainName":"github"},"branch":"master","displayName":"GSgiansen/ip[master]","outputFolderName":"GSgiansen_ip_master"},{"location":{"location":"https://github.com/syamfarh/ip.git","repoName":"ip","organization":"syamfarh","domainName":"github"},"branch":"master","displayName":"syamfarh/ip[master]","outputFolderName":"syamfarh_ip_master"},{"location":{"location":"https://github.com/PetrichorPrecipice/ip.git","repoName":"ip","organization":"PetrichorPrecipice","domainName":"github"},"branch":"master","displayName":"PetrichorPrecipice/ip[master]","outputFolderName":"PetrichorPrecipice_ip_master"},{"location":{"location":"https://github.com/ngeeyonglim/ip.git","repoName":"ip","organization":"ngeeyonglim","domainName":"github"},"branch":"master","displayName":"ngeeyonglim/ip[master]","outputFolderName":"ngeeyonglim_ip_master"},{"location":{"location":"https://github.com/ivanleekk/ip.git","repoName":"ip","organization":"ivanleekk","domainName":"github"},"branch":"master","displayName":"ivanleekk/ip[master]","outputFolderName":"ivanleekk_ip_master"},{"location":{"location":"https://github.com/ryanozx/ip.git","repoName":"ip","organization":"ryanozx","domainName":"github"},"branch":"master","displayName":"ryanozx/ip[master]","outputFolderName":"ryanozx_ip_master"},{"location":{"location":"https://github.com/Jweewee/ip.git","repoName":"ip","organization":"Jweewee","domainName":"github"},"branch":"master","displayName":"Jweewee/ip[master]","outputFolderName":"Jweewee_ip_master"},{"location":{"location":"https://github.com/supermii2/ip.git","repoName":"ip","organization":"supermii2","domainName":"github"},"branch":"master","displayName":"supermii2/ip[master]","outputFolderName":"supermii2_ip_master"},{"location":{"location":"https://github.com/bkjwjason/ip.git","repoName":"ip","organization":"bkjwjason","domainName":"github"},"branch":"master","displayName":"bkjwjason/ip[master]","outputFolderName":"bkjwjason_ip_master"},{"location":{"location":"https://github.com/Sasmik23/ip.git","repoName":"ip","organization":"Sasmik23","domainName":"github"},"branch":"master","displayName":"Sasmik23/ip[master]","outputFolderName":"Sasmik23_ip_master"},{"location":{"location":"https://github.com/nathanielcalimag/ip.git","repoName":"ip","organization":"nathanielcalimag","domainName":"github"},"branch":"master","displayName":"nathanielcalimag/ip[master]","outputFolderName":"nathanielcalimag_ip_master"},{"location":{"location":"https://github.com/AlagappanRa/ip.git","repoName":"ip","organization":"AlagappanRa","domainName":"github"},"branch":"master","displayName":"AlagappanRa/ip[master]","outputFolderName":"AlagappanRa_ip_master"},{"location":{"location":"https://github.com/McNaBry/ip.git","repoName":"ip","organization":"McNaBry","domainName":"github"},"branch":"master","displayName":"McNaBry/ip[master]","outputFolderName":"McNaBry_ip_master"},{"location":{"location":"https://github.com/phiphi-tan/ip.git","repoName":"ip","organization":"phiphi-tan","domainName":"github"},"branch":"master","displayName":"phiphi-tan/ip[master]","outputFolderName":"phiphi-tan_ip_master"},{"location":{"location":"https://github.com/LicongHuang/ip.git","repoName":"ip","organization":"LicongHuang","domainName":"github"},"branch":"master","displayName":"LicongHuang/ip[master]","outputFolderName":"LicongHuang_ip_master"},{"location":{"location":"https://github.com/tanshiyu1999/ip.git","repoName":"ip","organization":"tanshiyu1999","domainName":"github"},"branch":"master","displayName":"tanshiyu1999/ip[master]","outputFolderName":"tanshiyu1999_ip_master"},{"location":{"location":"https://github.com/raydenlim/ip.git","repoName":"ip","organization":"raydenlim","domainName":"github"},"branch":"master","displayName":"raydenlim/ip[master]","outputFolderName":"raydenlim_ip_master"},{"location":{"location":"https://github.com/jianyangg/ip.git","repoName":"ip","organization":"jianyangg","domainName":"github"},"branch":"master","displayName":"jianyangg/ip[master]","outputFolderName":"jianyangg_ip_master"},{"location":{"location":"https://github.com/rionshocker/ip.git","repoName":"ip","organization":"rionshocker","domainName":"github"},"branch":"master","displayName":"rionshocker/ip[master]","outputFolderName":"rionshocker_ip_master"},{"location":{"location":"https://github.com/conradsoon/ip.git","repoName":"ip","organization":"conradsoon","domainName":"github"},"branch":"master","displayName":"conradsoon/ip[master]","outputFolderName":"conradsoon_ip_master"},{"location":{"location":"https://github.com/Jonyxzx/ip.git","repoName":"ip","organization":"Jonyxzx","domainName":"github"},"branch":"master","displayName":"Jonyxzx/ip[master]","outputFolderName":"Jonyxzx_ip_master"},{"location":{"location":"https://github.com/euchangxian/ip.git","repoName":"ip","organization":"euchangxian","domainName":"github"},"branch":"master","displayName":"euchangxian/ip[master]","outputFolderName":"euchangxian_ip_master"},{"location":{"location":"https://github.com/teoks0199/ip.git","repoName":"ip","organization":"teoks0199","domainName":"github"},"branch":"master","displayName":"teoks0199/ip[master]","outputFolderName":"teoks0199_ip_master"},{"location":{"location":"https://github.com/HollaG/ip.git","repoName":"ip","organization":"HollaG","domainName":"github"},"branch":"master","displayName":"HollaG/ip[master]","outputFolderName":"HollaG_ip_master"},{"location":{"location":"https://github.com/leezhengjing/ip.git","repoName":"ip","organization":"leezhengjing","domainName":"github"},"branch":"master","displayName":"leezhengjing/ip[master]","outputFolderName":"leezhengjing_ip_master"},{"location":{"location":"https://github.com/timleow/ip.git","repoName":"ip","organization":"timleow","domainName":"github"},"branch":"master","displayName":"timleow/ip[master]","outputFolderName":"timleow_ip_master"},{"location":{"location":"https://github.com/jacksonyuan256/ip.git","repoName":"ip","organization":"jacksonyuan256","domainName":"github"},"branch":"master","displayName":"jacksonyuan256/ip[master]","outputFolderName":"jacksonyuan256_ip_master"},{"location":{"location":"https://github.com/victorlaiyeeteng/ip.git","repoName":"ip","organization":"victorlaiyeeteng","domainName":"github"},"branch":"master","displayName":"victorlaiyeeteng/ip[master]","outputFolderName":"victorlaiyeeteng_ip_master"},{"location":{"location":"https://github.com/prawnzyy/ip.git","repoName":"ip","organization":"prawnzyy","domainName":"github"},"branch":"master","displayName":"prawnzyy/ip[master]","outputFolderName":"prawnzyy_ip_master"},{"location":{"location":"https://github.com/ryanongwx/ip.git","repoName":"ip","organization":"ryanongwx","domainName":"github"},"branch":"master","displayName":"ryanongwx/ip[master]","outputFolderName":"ryanongwx_ip_master"},{"location":{"location":"https://github.com/tohpinren/ip.git","repoName":"ip","organization":"tohpinren","domainName":"github"},"branch":"master","displayName":"tohpinren/ip[master]","outputFolderName":"tohpinren_ip_master"},{"location":{"location":"https://github.com/DeltonCheng/ip.git","repoName":"ip","organization":"DeltonCheng","domainName":"github"},"branch":"master","displayName":"DeltonCheng/ip[master]","outputFolderName":"DeltonCheng_ip_master"},{"location":{"location":"https://github.com/leontan2/ip.git","repoName":"ip","organization":"leontan2","domainName":"github"},"branch":"master","displayName":"leontan2/ip[master]","outputFolderName":"leontan2_ip_master"},{"location":{"location":"https://github.com/alvinlim277/ip.git","repoName":"ip","organization":"alvinlim277","domainName":"github"},"branch":"master","displayName":"alvinlim277/ip[master]","outputFolderName":"alvinlim277_ip_master"},{"location":{"location":"https://github.com/lshaoqin/ip.git","repoName":"ip","organization":"lshaoqin","domainName":"github"},"branch":"master","displayName":"lshaoqin/ip[master]","outputFolderName":"lshaoqin_ip_master"},{"location":{"location":"https://github.com/ChongWeiJie29/ip.git","repoName":"ip","organization":"ChongWeiJie29","domainName":"github"},"branch":"master","displayName":"ChongWeiJie29/ip[master]","outputFolderName":"ChongWeiJie29_ip_master"},{"location":{"location":"https://github.com/zhonghan721/ip.git","repoName":"ip","organization":"zhonghan721","domainName":"github"},"branch":"master","displayName":"zhonghan721/ip[master]","outputFolderName":"zhonghan721_ip_master"},{"location":{"location":"https://github.com/teozhengyang/ip.git","repoName":"ip","organization":"teozhengyang","domainName":"github"},"branch":"master","displayName":"teozhengyang/ip[master]","outputFolderName":"teozhengyang_ip_master"},{"location":{"location":"https://github.com/garylow2001/ip.git","repoName":"ip","organization":"garylow2001","domainName":"github"},"branch":"master","displayName":"garylow2001/ip[master]","outputFolderName":"garylow2001_ip_master"},{"location":{"location":"https://github.com/Cleon2/ip.git","repoName":"ip","organization":"Cleon2","domainName":"github"},"branch":"master","displayName":"Cleon2/ip[master]","outputFolderName":"Cleon2_ip_master"},{"location":{"location":"https://github.com/limzhenwy/ip.git","repoName":"ip","organization":"limzhenwy","domainName":"github"},"branch":"master","displayName":"limzhenwy/ip[master]","outputFolderName":"limzhenwy_ip_master"},{"location":{"location":"https://github.com/ItsTYtan/ip.git","repoName":"ip","organization":"ItsTYtan","domainName":"github"},"branch":"master","displayName":"ItsTYtan/ip[master]","outputFolderName":"ItsTYtan_ip_master"},{"location":{"location":"https://github.com/owenyeo/ip.git","repoName":"ip","organization":"owenyeo","domainName":"github"},"branch":"master","displayName":"owenyeo/ip[master]","outputFolderName":"owenyeo_ip_master"},{"location":{"location":"https://github.com/jonasongg/ip.git","repoName":"ip","organization":"jonasongg","domainName":"github"},"branch":"master","displayName":"jonasongg/ip[master]","outputFolderName":"jonasongg_ip_master"},{"location":{"location":"https://github.com/Ruizhi2001/ip.git","repoName":"ip","organization":"Ruizhi2001","domainName":"github"},"branch":"master","displayName":"Ruizhi2001/ip[master]","outputFolderName":"Ruizhi2001_ip_master"},{"location":{"location":"https://github.com/Dioclei/ip.git","repoName":"ip","organization":"Dioclei","domainName":"github"},"branch":"master","displayName":"Dioclei/ip[master]","outputFolderName":"Dioclei_ip_master"},{"location":{"location":"https://github.com/bobscodedump/ip.git","repoName":"ip","organization":"bobscodedump","domainName":"github"},"branch":"master","displayName":"bobscodedump/ip[master]","outputFolderName":"bobscodedump_ip_master"},{"location":{"location":"https://github.com/andrefoo/ip.git","repoName":"ip","organization":"andrefoo","domainName":"github"},"branch":"master","displayName":"andrefoo/ip[master]","outputFolderName":"andrefoo_ip_master"},{"location":{"location":"https://github.com/Bombbird2001/ip.git","repoName":"ip","organization":"Bombbird2001","domainName":"github"},"branch":"master","displayName":"Bombbird2001/ip[master]","outputFolderName":"Bombbird2001_ip_master"},{"location":{"location":"https://github.com/chewjh1234/ip.git","repoName":"ip","organization":"chewjh1234","domainName":"github"},"branch":"master","displayName":"chewjh1234/ip[master]","outputFolderName":"chewjh1234_ip_master"},{"location":{"location":"https://github.com/dloh2236/ip.git","repoName":"ip","organization":"dloh2236","domainName":"github"},"branch":"master","displayName":"dloh2236/ip[master]","outputFolderName":"dloh2236_ip_master"},{"location":{"location":"https://github.com/chew01/ip.git","repoName":"ip","organization":"chew01","domainName":"github"},"branch":"master","displayName":"chew01/ip[master]","outputFolderName":"chew01_ip_master"},{"location":{"location":"https://github.com/trgao/ip.git","repoName":"ip","organization":"trgao","domainName":"github"},"branch":"master","displayName":"trgao/ip[master]","outputFolderName":"trgao_ip_master"},{"location":{"location":"https://github.com/richiehx/ip.git","repoName":"ip","organization":"richiehx","domainName":"github"},"branch":"master","displayName":"richiehx/ip[master]","outputFolderName":"richiehx_ip_master"},{"location":{"location":"https://github.com/LoMaply/ip.git","repoName":"ip","organization":"LoMaply","domainName":"github"},"branch":"master","displayName":"LoMaply/ip[master]","outputFolderName":"LoMaply_ip_master"},{"location":{"location":"https://github.com/Originalidk/ip.git","repoName":"ip","organization":"Originalidk","domainName":"github"},"branch":"master","displayName":"Originalidk/ip[master]","outputFolderName":"Originalidk_ip_master"},{"location":{"location":"https://github.com/kiatkat/ip.git","repoName":"ip","organization":"kiatkat","domainName":"github"},"branch":"master","displayName":"kiatkat/ip[master]","outputFolderName":"kiatkat_ip_master"},{"location":{"location":"https://github.com/juliusgambe/ip.git","repoName":"ip","organization":"juliusgambe","domainName":"github"},"branch":"master","displayName":"juliusgambe/ip[master]","outputFolderName":"juliusgambe_ip_master"},{"location":{"location":"https://github.com/jiakai-17/ip.git","repoName":"ip","organization":"jiakai-17","domainName":"github"},"branch":"master","displayName":"jiakai-17/ip[master]","outputFolderName":"jiakai-17_ip_master"},{"location":{"location":"https://github.com/nikele2001/ip.git","repoName":"ip","organization":"nikele2001","domainName":"github"},"branch":"master","displayName":"nikele2001/ip[master]","outputFolderName":"nikele2001_ip_master"},{"location":{"location":"https://github.com/jylow/ip.git","repoName":"ip","organization":"jylow","domainName":"github"},"branch":"master","displayName":"jylow/ip[master]","outputFolderName":"jylow_ip_master"},{"location":{"location":"https://github.com/jx124/ip.git","repoName":"ip","organization":"jx124","domainName":"github"},"branch":"master","displayName":"jx124/ip[master]","outputFolderName":"jx124_ip_master"},{"location":{"location":"https://github.com/Kb-Tay/ip.git","repoName":"ip","organization":"Kb-Tay","domainName":"github"},"branch":"master","displayName":"Kb-Tay/ip[master]","outputFolderName":"Kb-Tay_ip_master"},{"location":{"location":"https://github.com/jinyuan0425/ip.git","repoName":"ip","organization":"jinyuan0425","domainName":"github"},"branch":"master","displayName":"jinyuan0425/ip[master]","outputFolderName":"jinyuan0425_ip_master"},{"location":{"location":"https://github.com/darrentfy/ip.git","repoName":"ip","organization":"darrentfy","domainName":"github"},"branch":"master","displayName":"darrentfy/ip[master]","outputFolderName":"darrentfy_ip_master"},{"location":{"location":"https://github.com/HEEaZ/ip.git","repoName":"ip","organization":"HEEaZ","domainName":"github"},"branch":"master","displayName":"HEEaZ/ip[master]","outputFolderName":"HEEaZ_ip_master"},{"location":{"location":"https://github.com/ji-just-ji/ip.git","repoName":"ip","organization":"ji-just-ji","domainName":"github"},"branch":"master","displayName":"ji-just-ji/ip[master]","outputFolderName":"ji-just-ji_ip_master"},{"location":{"location":"https://github.com/simbayippy/ip.git","repoName":"ip","organization":"simbayippy","domainName":"github"},"branch":"master","displayName":"simbayippy/ip[master]","outputFolderName":"simbayippy_ip_master"},{"location":{"location":"https://github.com/teozern1/ip.git","repoName":"ip","organization":"teozern1","domainName":"github"},"branch":"master","displayName":"teozern1/ip[master]","outputFolderName":"teozern1_ip_master"},{"location":{"location":"https://github.com/brein62/ip.git","repoName":"ip","organization":"brein62","domainName":"github"},"branch":"master","displayName":"brein62/ip[master]","outputFolderName":"brein62_ip_master"},{"location":{"location":"https://github.com/awhb/ip.git","repoName":"ip","organization":"awhb","domainName":"github"},"branch":"master","displayName":"awhb/ip[master]","outputFolderName":"awhb_ip_master"},{"location":{"location":"https://github.com/Mahidharah/ip.git","repoName":"ip","organization":"Mahidharah","domainName":"github"},"branch":"master","displayName":"Mahidharah/ip[master]","outputFolderName":"Mahidharah_ip_master"},{"location":{"location":"https://github.com/timetraveller-123/ip.git","repoName":"ip","organization":"timetraveller-123","domainName":"github"},"branch":"master","displayName":"timetraveller-123/ip[master]","outputFolderName":"timetraveller-123_ip_master"},{"location":{"location":"https://github.com/ElginTZM/ip.git","repoName":"ip","organization":"ElginTZM","domainName":"github"},"branch":"master","displayName":"ElginTZM/ip[master]","outputFolderName":"ElginTZM_ip_master"},{"location":{"location":"https://github.com/ryamgoh/ip.git","repoName":"ip","organization":"ryamgoh","domainName":"github"},"branch":"master","displayName":"ryamgoh/ip[master]","outputFolderName":"ryamgoh_ip_master"},{"location":{"location":"https://github.com/Blizzeracz/ip.git","repoName":"ip","organization":"Blizzeracz","domainName":"github"},"branch":"master","displayName":"Blizzeracz/ip[master]","outputFolderName":"Blizzeracz_ip_master"},{"location":{"location":"https://github.com/kiwibang/ip.git","repoName":"ip","organization":"kiwibang","domainName":"github"},"branch":"master","displayName":"kiwibang/ip[master]","outputFolderName":"kiwibang_ip_master"},{"location":{"location":"https://github.com/redtailedfox/ip.git","repoName":"ip","organization":"redtailedfox","domainName":"github"},"branch":"master","displayName":"redtailedfox/ip[master]","outputFolderName":"redtailedfox_ip_master"},{"location":{"location":"https://github.com/lamchenghou/ip.git","repoName":"ip","organization":"lamchenghou","domainName":"github"},"branch":"master","displayName":"lamchenghou/ip[master]","outputFolderName":"lamchenghou_ip_master"},{"location":{"location":"https://github.com/gongg21/ip.git","repoName":"ip","organization":"gongg21","domainName":"github"},"branch":"master","displayName":"gongg21/ip[master]","outputFolderName":"gongg21_ip_master"},{"location":{"location":"https://github.com/CJ-Lee01/ip.git","repoName":"ip","organization":"CJ-Lee01","domainName":"github"},"branch":"master","displayName":"CJ-Lee01/ip[master]","outputFolderName":"CJ-Lee01_ip_master"},{"location":{"location":"https://github.com/Sheeepen/ip.git","repoName":"ip","organization":"Sheeepen","domainName":"github"},"branch":"master","displayName":"Sheeepen/ip[master]","outputFolderName":"Sheeepen_ip_master"},{"location":{"location":"https://github.com/AaronJT1/ip.git","repoName":"ip","organization":"AaronJT1","domainName":"github"},"branch":"master","displayName":"AaronJT1/ip[master]","outputFolderName":"AaronJT1_ip_master"},{"location":{"location":"https://github.com/Respirayson/ip.git","repoName":"ip","organization":"Respirayson","domainName":"github"},"branch":"master","displayName":"Respirayson/ip[master]","outputFolderName":"Respirayson_ip_master"},{"location":{"location":"https://github.com/dickongwd/ip.git","repoName":"ip","organization":"dickongwd","domainName":"github"},"branch":"master","displayName":"dickongwd/ip[master]","outputFolderName":"dickongwd_ip_master"},{"location":{"location":"https://github.com/nicholascher/ip.git","repoName":"ip","organization":"nicholascher","domainName":"github"},"branch":"master","displayName":"nicholascher/ip[master]","outputFolderName":"nicholascher_ip_master"},{"location":{"location":"https://github.com/et-irl/ip.git","repoName":"ip","organization":"et-irl","domainName":"github"},"branch":"master","displayName":"et-irl/ip[master]","outputFolderName":"et-irl_ip_master"},{"location":{"location":"https://github.com/aslam341/ip.git","repoName":"ip","organization":"aslam341","domainName":"github"},"branch":"master","displayName":"aslam341/ip[master]","outputFolderName":"aslam341_ip_master"},{"location":{"location":"https://github.com/seantehds/ip.git","repoName":"ip","organization":"seantehds","domainName":"github"},"branch":"master","displayName":"seantehds/ip[master]","outputFolderName":"seantehds_ip_master"},{"location":{"location":"https://github.com/jianrong7/ip.git","repoName":"ip","organization":"jianrong7","domainName":"github"},"branch":"master","displayName":"jianrong7/ip[master]","outputFolderName":"jianrong7_ip_master"},{"location":{"location":"https://github.com/TeeRenJing/ip.git","repoName":"ip","organization":"TeeRenJing","domainName":"github"},"branch":"master","displayName":"TeeRenJing/ip[master]","outputFolderName":"TeeRenJing_ip_master"},{"location":{"location":"https://github.com/RoeReRe/ip.git","repoName":"ip","organization":"RoeReRe","domainName":"github"},"branch":"master","displayName":"RoeReRe/ip[master]","outputFolderName":"RoeReRe_ip_master"},{"location":{"location":"https://github.com/zsh-eng/ip.git","repoName":"ip","organization":"zsh-eng","domainName":"github"},"branch":"master","displayName":"zsh-eng/ip[master]","outputFolderName":"zsh-eng_ip_master"},{"location":{"location":"https://github.com/seanpzk/ip.git","repoName":"ip","organization":"seanpzk","domainName":"github"},"branch":"master","displayName":"seanpzk/ip[master]","outputFolderName":"seanpzk_ip_master"},{"location":{"location":"https://github.com/quzhetao01/ip.git","repoName":"ip","organization":"quzhetao01","domainName":"github"},"branch":"master","displayName":"quzhetao01/ip[master]","outputFolderName":"quzhetao01_ip_master"},{"location":{"location":"https://github.com/joel-foo/ip.git","repoName":"ip","organization":"joel-foo","domainName":"github"},"branch":"master","displayName":"joel-foo/ip[master]","outputFolderName":"joel-foo_ip_master"},{"location":{"location":"https://github.com/markgcera/ip.git","repoName":"ip","organization":"markgcera","domainName":"github"},"branch":"master","displayName":"markgcera/ip[master]","outputFolderName":"markgcera_ip_master"},{"location":{"location":"https://github.com/dylkaw/ip.git","repoName":"ip","organization":"dylkaw","domainName":"github"},"branch":"master","displayName":"dylkaw/ip[master]","outputFolderName":"dylkaw_ip_master"},{"location":{"location":"https://github.com/SelwynAng/ip.git","repoName":"ip","organization":"SelwynAng","domainName":"github"},"branch":"master","displayName":"SelwynAng/ip[master]","outputFolderName":"SelwynAng_ip_master"},{"location":{"location":"https://github.com/jinyang628/ip.git","repoName":"ip","organization":"jinyang628","domainName":"github"},"branch":"master","displayName":"jinyang628/ip[master]","outputFolderName":"jinyang628_ip_master"},{"location":{"location":"https://github.com/matochichap/ip.git","repoName":"ip","organization":"matochichap","domainName":"github"},"branch":"master","displayName":"matochichap/ip[master]","outputFolderName":"matochichap_ip_master"},{"location":{"location":"https://github.com/sk2001git/ip.git","repoName":"ip","organization":"sk2001git","domainName":"github"},"branch":"master","displayName":"sk2001git/ip[master]","outputFolderName":"sk2001git_ip_master"},{"location":{"location":"https://github.com/jason-raiin/ip.git","repoName":"ip","organization":"jason-raiin","domainName":"github"},"branch":"master","displayName":"jason-raiin/ip[master]","outputFolderName":"jason-raiin_ip_master"},{"location":{"location":"https://github.com/Sebtey/ip.git","repoName":"ip","organization":"Sebtey","domainName":"github"},"branch":"master","displayName":"Sebtey/ip[master]","outputFolderName":"Sebtey_ip_master"},{"location":{"location":"https://github.com/Jweng88/ip.git","repoName":"ip","organization":"Jweng88","domainName":"github"},"branch":"master","displayName":"Jweng88/ip[master]","outputFolderName":"Jweng88_ip_master"},{"location":{"location":"https://github.com/billieboy7/ip.git","repoName":"ip","organization":"billieboy7","domainName":"github"},"branch":"master","displayName":"billieboy7/ip[master]","outputFolderName":"billieboy7_ip_master"},{"location":{"location":"https://github.com/ldinghan/ip.git","repoName":"ip","organization":"ldinghan","domainName":"github"},"branch":"master","displayName":"ldinghan/ip[master]","outputFolderName":"ldinghan_ip_master"},{"location":{"location":"https://github.com/anthonytamzil/ip.git","repoName":"ip","organization":"anthonytamzil","domainName":"github"},"branch":"master","displayName":"anthonytamzil/ip[master]","outputFolderName":"anthonytamzil_ip_master"},{"location":{"location":"https://github.com/ryantzr1/ip.git","repoName":"ip","organization":"ryantzr1","domainName":"github"},"branch":"master","displayName":"ryantzr1/ip[master]","outputFolderName":"ryantzr1_ip_master"},{"location":{"location":"https://github.com/shuyangk/ip.git","repoName":"ip","organization":"shuyangk","domainName":"github"},"branch":"master","displayName":"shuyangk/ip[master]","outputFolderName":"shuyangk_ip_master"},{"location":{"location":"https://github.com/seewhyjay/ip.git","repoName":"ip","organization":"seewhyjay","domainName":"github"},"branch":"master","displayName":"seewhyjay/ip[master]","outputFolderName":"seewhyjay_ip_master"},{"location":{"location":"https://github.com/waseemingly/ip.git","repoName":"ip","organization":"waseemingly","domainName":"github"},"branch":"master","displayName":"waseemingly/ip[master]","outputFolderName":"waseemingly_ip_master"},{"location":{"location":"https://github.com/DistractedCat/ip.git","repoName":"ip","organization":"DistractedCat","domainName":"github"},"branch":"master","displayName":"DistractedCat/ip[master]","outputFolderName":"DistractedCat_ip_master"},{"location":{"location":"https://github.com/geraldngjx/ip.git","repoName":"ip","organization":"geraldngjx","domainName":"github"},"branch":"master","displayName":"geraldngjx/ip[master]","outputFolderName":"geraldngjx_ip_master"},{"location":{"location":"https://github.com/tayian/ip.git","repoName":"ip","organization":"tayian","domainName":"github"},"branch":"master","displayName":"tayian/ip[master]","outputFolderName":"tayian_ip_master"},{"location":{"location":"https://github.com/AlfredBeNoel/ip.git","repoName":"ip","organization":"AlfredBeNoel","domainName":"github"},"branch":"master","displayName":"AlfredBeNoel/ip[master]","outputFolderName":"AlfredBeNoel_ip_master"},{"location":{"location":"https://github.com/Chen1x/ip.git","repoName":"ip","organization":"Chen1x","domainName":"github"},"branch":"master","displayName":"Chen1x/ip[master]","outputFolderName":"Chen1x_ip_master"},{"location":{"location":"https://github.com/juzzztinsoong/ip.git","repoName":"ip","organization":"juzzztinsoong","domainName":"github"},"branch":"master","displayName":"juzzztinsoong/ip[master]","outputFolderName":"juzzztinsoong_ip_master"},{"location":{"location":"https://github.com/lambraydon/ip.git","repoName":"ip","organization":"lambraydon","domainName":"github"},"branch":"master","displayName":"lambraydon/ip[master]","outputFolderName":"lambraydon_ip_master"},{"location":{"location":"https://github.com/lilozz2/ip.git","repoName":"ip","organization":"lilozz2","domainName":"github"},"branch":"master","displayName":"lilozz2/ip[master]","outputFolderName":"lilozz2_ip_master"},{"location":{"location":"https://github.com/tyouwei/ip.git","repoName":"ip","organization":"tyouwei","domainName":"github"},"branch":"master","displayName":"tyouwei/ip[master]","outputFolderName":"tyouwei_ip_master"},{"location":{"location":"https://github.com/Kailash201/ip.git","repoName":"ip","organization":"Kailash201","domainName":"github"},"branch":"master","displayName":"Kailash201/ip[master]","outputFolderName":"Kailash201_ip_master"},{"location":{"location":"https://github.com/tjingsheng/ip.git","repoName":"ip","organization":"tjingsheng","domainName":"github"},"branch":"master","displayName":"tjingsheng/ip[master]","outputFolderName":"tjingsheng_ip_master"},{"location":{"location":"https://github.com/pangyyen/ip.git","repoName":"ip","organization":"pangyyen","domainName":"github"},"branch":"master","displayName":"pangyyen/ip[master]","outputFolderName":"pangyyen_ip_master"},{"location":{"location":"https://github.com/Khaleelur-Rahman/ip.git","repoName":"ip","organization":"Khaleelur-Rahman","domainName":"github"},"branch":"master","displayName":"Khaleelur-Rahman/ip[master]","outputFolderName":"Khaleelur-Rahman_ip_master"},{"location":{"location":"https://github.com/erohsikivar/ip.git","repoName":"ip","organization":"erohsikivar","domainName":"github"},"branch":"master","displayName":"erohsikivar/ip[master]","outputFolderName":"erohsikivar_ip_master"},{"location":{"location":"https://github.com/shishirbychapur/ip.git","repoName":"ip","organization":"shishirbychapur","domainName":"github"},"branch":"master","displayName":"shishirbychapur/ip[master]","outputFolderName":"shishirbychapur_ip_master"},{"location":{"location":"https://github.com/Badatprogrammiing/ip.git","repoName":"ip","organization":"Badatprogrammiing","domainName":"github"},"branch":"master","displayName":"Badatprogrammiing/ip[master]","outputFolderName":"Badatprogrammiing_ip_master"},{"location":{"location":"https://github.com/Angelyxx/ip.git","repoName":"ip","organization":"Angelyxx","domainName":"github"},"branch":"master","displayName":"Angelyxx/ip[master]","outputFolderName":"Angelyxx_ip_master"},{"location":{"location":"https://github.com/ravern/ip.git","repoName":"ip","organization":"ravern","domainName":"github"},"branch":"master","displayName":"ravern/ip[master]","outputFolderName":"ravern_ip_master"},{"location":{"location":"https://github.com/B-enguin/ip.git","repoName":"ip","organization":"B-enguin","domainName":"github"},"branch":"master","displayName":"B-enguin/ip[master]","outputFolderName":"B-enguin_ip_master"},{"location":{"location":"https://github.com/AlyssaPng/ip.git","repoName":"ip","organization":"AlyssaPng","domainName":"github"},"branch":"master","displayName":"AlyssaPng/ip[master]","outputFolderName":"AlyssaPng_ip_master"},{"location":{"location":"https://github.com/flexibo/ip.git","repoName":"ip","organization":"flexibo","domainName":"github"},"branch":"master","displayName":"flexibo/ip[master]","outputFolderName":"flexibo_ip_master"},{"location":{"location":"https://github.com/lordidiot/ip.git","repoName":"ip","organization":"lordidiot","domainName":"github"},"branch":"master","displayName":"lordidiot/ip[master]","outputFolderName":"lordidiot_ip_master"},{"location":{"location":"https://github.com/vansh284/ip.git","repoName":"ip","organization":"vansh284","domainName":"github"},"branch":"master","displayName":"vansh284/ip[master]","outputFolderName":"vansh284_ip_master"},{"location":{"location":"https://github.com/samuelim01/ip.git","repoName":"ip","organization":"samuelim01","domainName":"github"},"branch":"master","displayName":"samuelim01/ip[master]","outputFolderName":"samuelim01_ip_master"},{"location":{"location":"https://github.com/WZWren/ip.git","repoName":"ip","organization":"WZWren","domainName":"github"},"branch":"master","displayName":"WZWren/ip[master]","outputFolderName":"WZWren_ip_master"},{"location":{"location":"https://github.com/cxo05/ip.git","repoName":"ip","organization":"cxo05","domainName":"github"},"branch":"master","displayName":"cxo05/ip[master]","outputFolderName":"cxo05_ip_master"},{"location":{"location":"https://github.com/sudarshan2401/ip.git","repoName":"ip","organization":"sudarshan2401","domainName":"github"},"branch":"master","displayName":"sudarshan2401/ip[master]","outputFolderName":"sudarshan2401_ip_master"},{"location":{"location":"https://github.com/jingyu987/ip.git","repoName":"ip","organization":"jingyu987","domainName":"github"},"branch":"master","displayName":"jingyu987/ip[master]","outputFolderName":"jingyu987_ip_master"},{"location":{"location":"https://github.com/H1410101/ip.git","repoName":"ip","organization":"H1410101","domainName":"github"},"branch":"master","displayName":"H1410101/ip[master]","outputFolderName":"H1410101_ip_master"},{"location":{"location":"https://github.com/MagnificentCreature/ip.git","repoName":"ip","organization":"MagnificentCreature","domainName":"github"},"branch":"master","displayName":"MagnificentCreature/ip[master]","outputFolderName":"MagnificentCreature_ip_master"},{"location":{"location":"https://github.com/shyanyong/ip.git","repoName":"ip","organization":"shyanyong","domainName":"github"},"branch":"master","displayName":"shyanyong/ip[master]","outputFolderName":"shyanyong_ip_master"},{"location":{"location":"https://github.com/peasantbird/ip.git","repoName":"ip","organization":"peasantbird","domainName":"github"},"branch":"master","displayName":"peasantbird/ip[master]","outputFolderName":"peasantbird_ip_master"},{"location":{"location":"https://github.com/tllshan/ip.git","repoName":"ip","organization":"tllshan","domainName":"github"},"branch":"master","displayName":"tllshan/ip[master]","outputFolderName":"tllshan_ip_master"},{"location":{"location":"https://github.com/sushiyade/ip.git","repoName":"ip","organization":"sushiyade","domainName":"github"},"branch":"master","displayName":"sushiyade/ip[master]","outputFolderName":"sushiyade_ip_master"},{"location":{"location":"https://github.com/iyioon/ip.git","repoName":"ip","organization":"iyioon","domainName":"github"},"branch":"master","displayName":"iyioon/ip[master]","outputFolderName":"iyioon_ip_master"},{"location":{"location":"https://github.com/shashahchk/ip.git","repoName":"ip","organization":"shashahchk","domainName":"github"},"branch":"master","displayName":"shashahchk/ip[master]","outputFolderName":"shashahchk_ip_master"},{"location":{"location":"https://github.com/Chandan8186/ip.git","repoName":"ip","organization":"Chandan8186","domainName":"github"},"branch":"master","displayName":"Chandan8186/ip[master]","outputFolderName":"Chandan8186_ip_master"},{"location":{"location":"https://github.com/wesho1107/ip.git","repoName":"ip","organization":"wesho1107","domainName":"github"},"branch":"master","displayName":"wesho1107/ip[master]","outputFolderName":"wesho1107_ip_master"},{"location":{"location":"https://github.com/tim-pipi/ip.git","repoName":"ip","organization":"tim-pipi","domainName":"github"},"branch":"master","displayName":"tim-pipi/ip[master]","outputFolderName":"tim-pipi_ip_master"},{"location":{"location":"https://github.com/emzm2023/ip.git","repoName":"ip","organization":"emzm2023","domainName":"github"},"branch":"master","displayName":"emzm2023/ip[master]","outputFolderName":"emzm2023_ip_master"},{"location":{"location":"https://github.com/dlathyun/ip.git","repoName":"ip","organization":"dlathyun","domainName":"github"},"branch":"master","displayName":"dlathyun/ip[master]","outputFolderName":"dlathyun_ip_master"},{"location":{"location":"https://github.com/tanboonkhong/ip.git","repoName":"ip","organization":"tanboonkhong","domainName":"github"},"branch":"master","displayName":"tanboonkhong/ip[master]","outputFolderName":"tanboonkhong_ip_master"},{"location":{"location":"https://github.com/joeng03/ip.git","repoName":"ip","organization":"joeng03","domainName":"github"},"branch":"master","displayName":"joeng03/ip[master]","outputFolderName":"joeng03_ip_master"},{"location":{"location":"https://github.com/VN-Hao/ip.git","repoName":"ip","organization":"VN-Hao","domainName":"github"},"branch":"master","displayName":"VN-Hao/ip[master]","outputFolderName":"VN-Hao_ip_master"},{"location":{"location":"https://github.com/NgChunMan/ip.git","repoName":"ip","organization":"NgChunMan","domainName":"github"},"branch":"master","displayName":"NgChunMan/ip[master]","outputFolderName":"NgChunMan_ip_master"},{"location":{"location":"https://github.com/TiwKangXu/ip.git","repoName":"ip","organization":"TiwKangXu","domainName":"github"},"branch":"master","displayName":"TiwKangXu/ip[master]","outputFolderName":"TiwKangXu_ip_master"},{"location":{"location":"https://github.com/josepholim/ip.git","repoName":"ip","organization":"josepholim","domainName":"github"},"branch":"master","displayName":"josepholim/ip[master]","outputFolderName":"josepholim_ip_master"},{"location":{"location":"https://github.com/dinde2004/ip.git","repoName":"ip","organization":"dinde2004","domainName":"github"},"branch":"master","displayName":"dinde2004/ip[master]","outputFolderName":"dinde2004_ip_master"},{"location":{"location":"https://github.com/yucongkoo/ip.git","repoName":"ip","organization":"yucongkoo","domainName":"github"},"branch":"master","displayName":"yucongkoo/ip[master]","outputFolderName":"yucongkoo_ip_master"},{"location":{"location":"https://github.com/TohLiYuan/ip.git","repoName":"ip","organization":"TohLiYuan","domainName":"github"},"branch":"master","displayName":"TohLiYuan/ip[master]","outputFolderName":"TohLiYuan_ip_master"},{"location":{"location":"https://github.com/NereusWB922/ip.git","repoName":"ip","organization":"NereusWB922","domainName":"github"},"branch":"master","displayName":"NereusWB922/ip[master]","outputFolderName":"NereusWB922_ip_master"},{"location":{"location":"https://github.com/ph-nathan/ip.git","repoName":"ip","organization":"ph-nathan","domainName":"github"},"branch":"master","displayName":"ph-nathan/ip[master]","outputFolderName":"ph-nathan_ip_master"},{"location":{"location":"https://github.com/antonTan96/ip.git","repoName":"ip","organization":"antonTan96","domainName":"github"},"branch":"master","displayName":"antonTan96/ip[master]","outputFolderName":"antonTan96_ip_master"},{"location":{"location":"https://github.com/WinstonLeonard/ip.git","repoName":"ip","organization":"WinstonLeonard","domainName":"github"},"branch":"master","displayName":"WinstonLeonard/ip[master]","outputFolderName":"WinstonLeonard_ip_master"},{"location":{"location":"https://github.com/TehOPanas/ip.git","repoName":"ip","organization":"TehOPanas","domainName":"github"},"branch":"master","displayName":"TehOPanas/ip[master]","outputFolderName":"TehOPanas_ip_master"},{"location":{"location":"https://github.com/marioalvaro/ip.git","repoName":"ip","organization":"marioalvaro","domainName":"github"},"branch":"master","displayName":"marioalvaro/ip[master]","outputFolderName":"marioalvaro_ip_master"},{"location":{"location":"https://github.com/LINCHENYU2030S/ip.git","repoName":"ip","organization":"LINCHENYU2030S","domainName":"github"},"branch":"master","displayName":"LINCHENYU2030S/ip[master]","outputFolderName":"LINCHENYU2030S_ip_master"},{"location":{"location":"https://github.com/LamJiuFong/ip.git","repoName":"ip","organization":"LamJiuFong","domainName":"github"},"branch":"master","displayName":"LamJiuFong/ip[master]","outputFolderName":"LamJiuFong_ip_master"},{"location":{"location":"https://github.com/AndrewJanong/ip.git","repoName":"ip","organization":"AndrewJanong","domainName":"github"},"branch":"master","displayName":"AndrewJanong/ip[master]","outputFolderName":"AndrewJanong_ip_master"},{"location":{"location":"https://github.com/songfangyl/ip.git","repoName":"ip","organization":"songfangyl","domainName":"github"},"branch":"master","displayName":"songfangyl/ip[master]","outputFolderName":"songfangyl_ip_master"},{"location":{"location":"https://github.com/AriellaCallista/ip.git","repoName":"ip","organization":"AriellaCallista","domainName":"github"},"branch":"master","displayName":"AriellaCallista/ip[master]","outputFolderName":"AriellaCallista_ip_master"},{"location":{"location":"https://github.com/KamJiaYue/ip.git","repoName":"ip","organization":"KamJiaYue","domainName":"github"},"branch":"master","displayName":"KamJiaYue/ip[master]","outputFolderName":"KamJiaYue_ip_master"},{"location":{"location":"https://github.com/feifeiraindrops/ip.git","repoName":"ip","organization":"feifeiraindrops","domainName":"github"},"branch":"master","displayName":"feifeiraindrops/ip[master]","outputFolderName":"feifeiraindrops_ip_master"},{"location":{"location":"https://github.com/czhiruo/ip.git","repoName":"ip","organization":"czhiruo","domainName":"github"},"branch":"master","displayName":"czhiruo/ip[master]","outputFolderName":"czhiruo_ip_master"},{"location":{"location":"https://github.com/butteredyakiimo/ip.git","repoName":"ip","organization":"butteredyakiimo","domainName":"github"},"branch":"master","displayName":"butteredyakiimo/ip[master]","outputFolderName":"butteredyakiimo_ip_master"},{"location":{"location":"https://github.com/RiyaMehta2211/ip.git","repoName":"ip","organization":"RiyaMehta2211","domainName":"github"},"branch":"master","displayName":"RiyaMehta2211/ip[master]","outputFolderName":"RiyaMehta2211_ip_master"},{"location":{"location":"https://github.com/beatricecst/ip.git","repoName":"ip","organization":"beatricecst","domainName":"github"},"branch":"master","displayName":"beatricecst/ip[master]","outputFolderName":"beatricecst_ip_master"},{"location":{"location":"https://github.com/maypfv/ip.git","repoName":"ip","organization":"maypfv","domainName":"github"},"branch":"master","displayName":"maypfv/ip[master]","outputFolderName":"maypfv_ip_master"},{"location":{"location":"https://github.com/pra-navi/ip.git","repoName":"ip","organization":"pra-navi","domainName":"github"},"branch":"master","displayName":"pra-navi/ip[master]","outputFolderName":"pra-navi_ip_master"},{"location":{"location":"https://github.com/xxiaoweii/ip.git","repoName":"ip","organization":"xxiaoweii","domainName":"github"},"branch":"master","displayName":"xxiaoweii/ip[master]","outputFolderName":"xxiaoweii_ip_master"},{"location":{"location":"https://github.com/qyaner/ip.git","repoName":"ip","organization":"qyaner","domainName":"github"},"branch":"master","displayName":"qyaner/ip[master]","outputFolderName":"qyaner_ip_master"},{"location":{"location":"https://github.com/qz1004/ip.git","repoName":"ip","organization":"qz1004","domainName":"github"},"branch":"master","displayName":"qz1004/ip[master]","outputFolderName":"qz1004_ip_master"},{"location":{"location":"https://github.com/miljyy/ip.git","repoName":"ip","organization":"miljyy","domainName":"github"},"branch":"master","displayName":"miljyy/ip[master]","outputFolderName":"miljyy_ip_master"},{"location":{"location":"https://github.com/yihfei/ip.git","repoName":"ip","organization":"yihfei","domainName":"github"},"branch":"master","displayName":"yihfei/ip[master]","outputFolderName":"yihfei_ip_master"},{"location":{"location":"https://github.com/Gabriel4357/ip.git","repoName":"ip","organization":"Gabriel4357","domainName":"github"},"branch":"master","displayName":"Gabriel4357/ip[master]","outputFolderName":"Gabriel4357_ip_master"},{"location":{"location":"https://github.com/saraozn/ip.git","repoName":"ip","organization":"saraozn","domainName":"github"},"branch":"master","displayName":"saraozn/ip[master]","outputFolderName":"saraozn_ip_master"},{"location":{"location":"https://github.com/JeremyYong128/ip.git","repoName":"ip","organization":"JeremyYong128","domainName":"github"},"branch":"master","displayName":"JeremyYong128/ip[master]","outputFolderName":"JeremyYong128_ip_master"},{"location":{"location":"https://github.com/samuelmui8/ip.git","repoName":"ip","organization":"samuelmui8","domainName":"github"},"branch":"master","displayName":"samuelmui8/ip[master]","outputFolderName":"samuelmui8_ip_master"},{"location":{"location":"https://github.com/elaineshijie/ip.git","repoName":"ip","organization":"elaineshijie","domainName":"github"},"branch":"master","displayName":"elaineshijie/ip[master]","outputFolderName":"elaineshijie_ip_master"},{"location":{"location":"https://github.com/zhengyup/ip.git","repoName":"ip","organization":"zhengyup","domainName":"github"},"branch":"master","displayName":"zhengyup/ip[master]","outputFolderName":"zhengyup_ip_master"},{"location":{"location":"https://github.com/ruishanteo/ip.git","repoName":"ip","organization":"ruishanteo","domainName":"github"},"branch":"master","displayName":"ruishanteo/ip[master]","outputFolderName":"ruishanteo_ip_master"},{"location":{"location":"https://github.com/lynnlow175/ip.git","repoName":"ip","organization":"lynnlow175","domainName":"github"},"branch":"master","displayName":"lynnlow175/ip[master]","outputFolderName":"lynnlow175_ip_master"},{"location":{"location":"https://github.com/kohkaijie/ip.git","repoName":"ip","organization":"kohkaijie","domainName":"github"},"branch":"master","displayName":"kohkaijie/ip[master]","outputFolderName":"kohkaijie_ip_master"},{"location":{"location":"https://github.com/CelestineTan03/ip.git","repoName":"ip","organization":"CelestineTan03","domainName":"github"},"branch":"master","displayName":"CelestineTan03/ip[master]","outputFolderName":"CelestineTan03_ip_master"},{"location":{"location":"https://github.com/PearlynnT/ip.git","repoName":"ip","organization":"PearlynnT","domainName":"github"},"branch":"master","displayName":"PearlynnT/ip[master]","outputFolderName":"PearlynnT_ip_master"},{"location":{"location":"https://github.com/Elijah5399/ip.git","repoName":"ip","organization":"Elijah5399","domainName":"github"},"branch":"master","displayName":"Elijah5399/ip[master]","outputFolderName":"Elijah5399_ip_master"},{"location":{"location":"https://github.com/nicleongyj/ip.git","repoName":"ip","organization":"nicleongyj","domainName":"github"},"branch":"master","displayName":"nicleongyj/ip[master]","outputFolderName":"nicleongyj_ip_master"},{"location":{"location":"https://github.com/AnnabelTing/ip.git","repoName":"ip","organization":"AnnabelTing","domainName":"github"},"branch":"master","displayName":"AnnabelTing/ip[master]","outputFolderName":"AnnabelTing_ip_master"},{"location":{"location":"https://github.com/jrchoo/ip.git","repoName":"ip","organization":"jrchoo","domainName":"github"},"branch":"master","displayName":"jrchoo/ip[master]","outputFolderName":"jrchoo_ip_master"},{"location":{"location":"https://github.com/wujy28/ip.git","repoName":"ip","organization":"wujy28","domainName":"github"},"branch":"master","displayName":"wujy28/ip[master]","outputFolderName":"wujy28_ip_master"},{"location":{"location":"https://github.com/Nauxe/ip.git","repoName":"ip","organization":"Nauxe","domainName":"github"},"branch":"master","displayName":"Nauxe/ip[master]","outputFolderName":"Nauxe_ip_master"},{"location":{"location":"https://github.com/yyyaohhh/ip.git","repoName":"ip","organization":"yyyaohhh","domainName":"github"},"branch":"master","displayName":"yyyaohhh/ip[master]","outputFolderName":"yyyaohhh_ip_master"},{"location":{"location":"https://github.com/xenosf/ip.git","repoName":"ip","organization":"xenosf","domainName":"github"},"branch":"master","displayName":"xenosf/ip[master]","outputFolderName":"xenosf_ip_master"},{"location":{"location":"https://github.com/WinSheng1/ip.git","repoName":"ip","organization":"WinSheng1","domainName":"github"},"branch":"master","displayName":"WinSheng1/ip[master]","outputFolderName":"WinSheng1_ip_master"},{"location":{"location":"https://github.com/nreHieW/ip.git","repoName":"ip","organization":"nreHieW","domainName":"github"},"branch":"master","displayName":"nreHieW/ip[master]","outputFolderName":"nreHieW_ip_master"},{"location":{"location":"https://github.com/peiran18/ip.git","repoName":"ip","organization":"peiran18","domainName":"github"},"branch":"master","displayName":"peiran18/ip[master]","outputFolderName":"peiran18_ip_master"},{"location":{"location":"https://github.com/cheeggered/ip.git","repoName":"ip","organization":"cheeggered","domainName":"github"},"branch":"master","displayName":"cheeggered/ip[master]","outputFolderName":"cheeggered_ip_master"},{"location":{"location":"https://github.com/GohTengFong/ip.git","repoName":"ip","organization":"GohTengFong","domainName":"github"},"branch":"master","displayName":"GohTengFong/ip[master]","outputFolderName":"GohTengFong_ip_master"},{"location":{"location":"https://github.com/jibtaf/ip.git","repoName":"ip","organization":"jibtaf","domainName":"github"},"branch":"master","displayName":"jibtaf/ip[master]","outputFolderName":"jibtaf_ip_master"},{"location":{"location":"https://github.com/bhnuka/ip.git","repoName":"ip","organization":"bhnuka","domainName":"github"},"branch":"master","displayName":"bhnuka/ip[master]","outputFolderName":"bhnuka_ip_master"},{"location":{"location":"https://github.com/laurenlim2112/ip.git","repoName":"ip","organization":"laurenlim2112","domainName":"github"},"branch":"master","displayName":"laurenlim2112/ip[master]","outputFolderName":"laurenlim2112_ip_master"},{"location":{"location":"https://github.com/howenc/ip.git","repoName":"ip","organization":"howenc","domainName":"github"},"branch":"master","displayName":"howenc/ip[master]","outputFolderName":"howenc_ip_master"},{"location":{"location":"https://github.com/Kokseng1/ip.git","repoName":"ip","organization":"Kokseng1","domainName":"github"},"branch":"master","displayName":"Kokseng1/ip[master]","outputFolderName":"Kokseng1_ip_master"},{"location":{"location":"https://github.com/yiwen101/ip.git","repoName":"ip","organization":"yiwen101","domainName":"github"},"branch":"master","displayName":"yiwen101/ip[master]","outputFolderName":"yiwen101_ip_master"},{"location":{"location":"https://github.com/Cikguseven/ip.git","repoName":"ip","organization":"Cikguseven","domainName":"github"},"branch":"master","displayName":"Cikguseven/ip[master]","outputFolderName":"Cikguseven_ip_master"},{"location":{"location":"https://github.com/javinchua/ip.git","repoName":"ip","organization":"javinchua","domainName":"github"},"branch":"master","displayName":"javinchua/ip[master]","outputFolderName":"javinchua_ip_master"},{"location":{"location":"https://github.com/frrrrry/ip.git","repoName":"ip","organization":"frrrrry","domainName":"github"},"branch":"master","displayName":"frrrrry/ip[master]","outputFolderName":"frrrrry_ip_master"},{"location":{"location":"https://github.com/YeoBohShin/ip.git","repoName":"ip","organization":"YeoBohShin","domainName":"github"},"branch":"master","displayName":"YeoBohShin/ip[master]","outputFolderName":"YeoBohShin_ip_master"},{"location":{"location":"https://github.com/yongning0310/ip.git","repoName":"ip","organization":"yongning0310","domainName":"github"},"branch":"master","displayName":"yongning0310/ip[master]","outputFolderName":"yongning0310_ip_master"},{"location":{"location":"https://github.com/SimWPEric/ip.git","repoName":"ip","organization":"SimWPEric","domainName":"github"},"branch":"master","displayName":"SimWPEric/ip[master]","outputFolderName":"SimWPEric_ip_master"},{"location":{"location":"https://github.com/sopa301/ip.git","repoName":"ip","organization":"sopa301","domainName":"github"},"branch":"master","displayName":"sopa301/ip[master]","outputFolderName":"sopa301_ip_master"},{"location":{"location":"https://github.com/nananakx-x/ip.git","repoName":"ip","organization":"nananakx-x","domainName":"github"},"branch":"master","displayName":"nananakx-x/ip[master]","outputFolderName":"nananakx-x_ip_master"},{"location":{"location":"https://github.com/LuoZYi/ip.git","repoName":"ip","organization":"LuoZYi","domainName":"github"},"branch":"master","displayName":"LuoZYi/ip[master]","outputFolderName":"LuoZYi_ip_master"},{"location":{"location":"https://github.com/LinWanLeii/ip.git","repoName":"ip","organization":"LinWanLeii","domainName":"github"},"branch":"master","displayName":"LinWanLeii/ip[master]","outputFolderName":"LinWanLeii_ip_master"},{"location":{"location":"https://github.com/mingyuanc/ip.git","repoName":"ip","organization":"mingyuanc","domainName":"github"},"branch":"master","displayName":"mingyuanc/ip[master]","outputFolderName":"mingyuanc_ip_master"},{"location":{"location":"https://github.com/chonguschonguschongus/ip.git","repoName":"ip","organization":"chonguschonguschongus","domainName":"github"},"branch":"master","displayName":"chonguschonguschongus/ip[master]","outputFolderName":"chonguschonguschongus_ip_master"},{"location":{"location":"https://github.com/yanghengtang/ip.git","repoName":"ip","organization":"yanghengtang","domainName":"github"},"branch":"master","displayName":"yanghengtang/ip[master]","outputFolderName":"yanghengtang_ip_master"},{"location":{"location":"https://github.com/victorpengmx/ip.git","repoName":"ip","organization":"victorpengmx","domainName":"github"},"branch":"master","displayName":"victorpengmx/ip[master]","outputFolderName":"victorpengmx_ip_master"},{"location":{"location":"https://github.com/kanna-1/ip.git","repoName":"ip","organization":"kanna-1","domainName":"github"},"branch":"master","displayName":"kanna-1/ip[master]","outputFolderName":"kanna-1_ip_master"},{"location":{"location":"https://github.com/ncduy0303/ip.git","repoName":"ip","organization":"ncduy0303","domainName":"github"},"branch":"master","displayName":"ncduy0303/ip[master]","outputFolderName":"ncduy0303_ip_master"},{"location":{"location":"https://github.com/jannnice/ip.git","repoName":"ip","organization":"jannnice","domainName":"github"},"branch":"master","displayName":"jannnice/ip[master]","outputFolderName":"jannnice_ip_master"},{"location":{"location":"https://github.com/itssisi/ip.git","repoName":"ip","organization":"itssisi","domainName":"github"},"branch":"master","displayName":"itssisi/ip[master]","outputFolderName":"itssisi_ip_master"},{"location":{"location":"https://github.com/freddychenyouren2/ip.git","repoName":"ip","organization":"freddychenyouren2","domainName":"github"},"branch":"master","displayName":"freddychenyouren2/ip[master]","outputFolderName":"freddychenyouren2_ip_master"},{"location":{"location":"https://github.com/Vanessamae23/ip.git","repoName":"ip","organization":"Vanessamae23","domainName":"github"},"branch":"master","displayName":"Vanessamae23/ip[master]","outputFolderName":"Vanessamae23_ip_master"},{"location":{"location":"https://github.com/cbj252/ip.git","repoName":"ip","organization":"cbj252","domainName":"github"},"branch":"master","displayName":"cbj252/ip[master]","outputFolderName":"cbj252_ip_master"},{"location":{"location":"https://github.com/freshcabbage123/ip.git","repoName":"ip","organization":"freshcabbage123","domainName":"github"},"branch":"master","displayName":"freshcabbage123/ip[master]","outputFolderName":"freshcabbage123_ip_master"},{"location":{"location":"https://github.com/thienmy0/ip.git","repoName":"ip","organization":"thienmy0","domainName":"github"},"branch":"master","displayName":"thienmy0/ip[master]","outputFolderName":"thienmy0_ip_master"},{"location":{"location":"https://github.com/glenngnng/ip.git","repoName":"ip","organization":"glenngnng","domainName":"github"},"branch":"master","displayName":"glenngnng/ip[master]","outputFolderName":"glenngnng_ip_master"},{"location":{"location":"https://github.com/Darren159/ip.git","repoName":"ip","organization":"Darren159","domainName":"github"},"branch":"master","displayName":"Darren159/ip[master]","outputFolderName":"Darren159_ip_master"},{"location":{"location":"https://github.com/J-hta-n/ip.git","repoName":"ip","organization":"J-hta-n","domainName":"github"},"branch":"master","displayName":"J-hta-n/ip[master]","outputFolderName":"J-hta-n_ip_master"},{"location":{"location":"https://github.com/evanyan13/ip.git","repoName":"ip","organization":"evanyan13","domainName":"github"},"branch":"master","displayName":"evanyan13/ip[master]","outputFolderName":"evanyan13_ip_master"},{"location":{"location":"https://github.com/tanveersingh10/ip.git","repoName":"ip","organization":"tanveersingh10","domainName":"github"},"branch":"master","displayName":"tanveersingh10/ip[master]","outputFolderName":"tanveersingh10_ip_master"},{"location":{"location":"https://github.com/neyapraveen/ip.git","repoName":"ip","organization":"neyapraveen","domainName":"github"},"branch":"master","displayName":"neyapraveen/ip[master]","outputFolderName":"neyapraveen_ip_master"},{"location":{"location":"https://github.com/weeweh/ip.git","repoName":"ip","organization":"weeweh","domainName":"github"},"branch":"master","displayName":"weeweh/ip[master]","outputFolderName":"weeweh_ip_master"},{"location":{"location":"https://github.com/HugeNoob/ip.git","repoName":"ip","organization":"HugeNoob","domainName":"github"},"branch":"master","displayName":"HugeNoob/ip[master]","outputFolderName":"HugeNoob_ip_master"},{"location":{"location":"https://github.com/wasjoe1/ip.git","repoName":"ip","organization":"wasjoe1","domainName":"github"},"branch":"master","displayName":"wasjoe1/ip[master]","outputFolderName":"wasjoe1_ip_master"},{"location":{"location":"https://github.com/s-kybound/ip.git","repoName":"ip","organization":"s-kybound","domainName":"github"},"branch":"master","displayName":"s-kybound/ip[master]","outputFolderName":"s-kybound_ip_master"},{"location":{"location":"https://github.com/Singa-pirate/ip.git","repoName":"ip","organization":"Singa-pirate","domainName":"github"},"branch":"master","displayName":"Singa-pirate/ip[master]","outputFolderName":"Singa-pirate_ip_master"},{"location":{"location":"https://github.com/wanghejin/ip.git","repoName":"ip","organization":"wanghejin","domainName":"github"},"branch":"master","displayName":"wanghejin/ip[master]","outputFolderName":"wanghejin_ip_master"},{"location":{"location":"https://github.com/yarnmengnus/ip.git","repoName":"ip","organization":"yarnmengnus","domainName":"github"},"branch":"master","displayName":"yarnmengnus/ip[master]","outputFolderName":"yarnmengnus_ip_master"},{"location":{"location":"https://github.com/Kurtyjlee/ip.git","repoName":"ip","organization":"Kurtyjlee","domainName":"github"},"branch":"master","displayName":"Kurtyjlee/ip[master]","outputFolderName":"Kurtyjlee_ip_master"},{"location":{"location":"https://github.com/jellywaiyan/ip.git","repoName":"ip","organization":"jellywaiyan","domainName":"github"},"branch":"master","displayName":"jellywaiyan/ip[master]","outputFolderName":"jellywaiyan_ip_master"},{"location":{"location":"https://github.com/ylyma/ip.git","repoName":"ip","organization":"ylyma","domainName":"github"},"branch":"master","displayName":"ylyma/ip[master]","outputFolderName":"ylyma_ip_master"},{"location":{"location":"https://github.com/revdrag/ip.git","repoName":"ip","organization":"revdrag","domainName":"github"},"branch":"master","displayName":"revdrag/ip[master]","outputFolderName":"revdrag_ip_master"},{"location":{"location":"https://github.com/vijay-shankaranand/ip.git","repoName":"ip","organization":"vijay-shankaranand","domainName":"github"},"branch":"master","displayName":"vijay-shankaranand/ip[master]","outputFolderName":"vijay-shankaranand_ip_master"},{"location":{"location":"https://github.com/lerxuann/ip.git","repoName":"ip","organization":"lerxuann","domainName":"github"},"branch":"master","displayName":"lerxuann/ip[master]","outputFolderName":"lerxuann_ip_master"},{"location":{"location":"https://github.com/yuxunn/ip.git","repoName":"ip","organization":"yuxunn","domainName":"github"},"branch":"master","displayName":"yuxunn/ip[master]","outputFolderName":"yuxunn_ip_master"},{"location":{"location":"https://github.com/zannloo/ip.git","repoName":"ip","organization":"zannloo","domainName":"github"},"branch":"master","displayName":"zannloo/ip[master]","outputFolderName":"zannloo_ip_master"},{"location":{"location":"https://github.com/AryanG01/ip.git","repoName":"ip","organization":"AryanG01","domainName":"github"},"branch":"master","displayName":"AryanG01/ip[master]","outputFolderName":"AryanG01_ip_master"},{"location":{"location":"https://github.com/oeggy03/ip.git","repoName":"ip","organization":"oeggy03","domainName":"github"},"branch":"master","displayName":"oeggy03/ip[master]","outputFolderName":"oeggy03_ip_master"},{"location":{"location":"https://github.com/jeffrey-jian/ip.git","repoName":"ip","organization":"jeffrey-jian","domainName":"github"},"branch":"master","displayName":"jeffrey-jian/ip[master]","outputFolderName":"jeffrey-jian_ip_master"},{"location":{"location":"https://github.com/nicholastng010601/ip.git","repoName":"ip","organization":"nicholastng010601","domainName":"github"},"branch":"master","displayName":"nicholastng010601/ip[master]","outputFolderName":"nicholastng010601_ip_master"},{"location":{"location":"https://github.com/Weiennn/ip.git","repoName":"ip","organization":"Weiennn","domainName":"github"},"branch":"master","displayName":"Weiennn/ip[master]","outputFolderName":"Weiennn_ip_master"},{"location":{"location":"https://github.com/tayruxin/ip.git","repoName":"ip","organization":"tayruxin","domainName":"github"},"branch":"master","displayName":"tayruxin/ip[master]","outputFolderName":"tayruxin_ip_master"},{"location":{"location":"https://github.com/xyT-T/ip.git","repoName":"ip","organization":"xyT-T","domainName":"github"},"branch":"master","displayName":"xyT-T/ip[master]","outputFolderName":"xyT-T_ip_master"},{"location":{"location":"https://github.com/lunaroddity/ip.git","repoName":"ip","organization":"lunaroddity","domainName":"github"},"branch":"master","displayName":"lunaroddity/ip[master]","outputFolderName":"lunaroddity_ip_master"},{"location":{"location":"https://github.com/nabonitasen/ip.git","repoName":"ip","organization":"nabonitasen","domainName":"github"},"branch":"master","displayName":"nabonitasen/ip[master]","outputFolderName":"nabonitasen_ip_master"},{"location":{"location":"https://github.com/inezkok/ip.git","repoName":"ip","organization":"inezkok","domainName":"github"},"branch":"master","displayName":"inezkok/ip[master]","outputFolderName":"inezkok_ip_master"},{"location":{"location":"https://github.com/nknguyenhc/ip.git","repoName":"ip","organization":"nknguyenhc","domainName":"github"},"branch":"master","displayName":"nknguyenhc/ip[master]","outputFolderName":"nknguyenhc_ip_master"},{"location":{"location":"https://github.com/keaganpzh/ip.git","repoName":"ip","organization":"keaganpzh","domainName":"github"},"branch":"master","displayName":"keaganpzh/ip[master]","outputFolderName":"keaganpzh_ip_master"},{"location":{"location":"https://github.com/lululwtv/ip.git","repoName":"ip","organization":"lululwtv","domainName":"github"},"branch":"master","displayName":"lululwtv/ip[master]","outputFolderName":"lululwtv_ip_master"},{"location":{"location":"https://github.com/hcs1203/ip.git","repoName":"ip","organization":"hcs1203","domainName":"github"},"branch":"master","displayName":"hcs1203/ip[master]","outputFolderName":"hcs1203_ip_master"},{"location":{"location":"https://github.com/migfoo02/ip.git","repoName":"ip","organization":"migfoo02","domainName":"github"},"branch":"master","displayName":"migfoo02/ip[master]","outputFolderName":"migfoo02_ip_master"},{"location":{"location":"https://github.com/papataco14/ip.git","repoName":"ip","organization":"papataco14","domainName":"github"},"branch":"master","displayName":"papataco14/ip[master]","outputFolderName":"papataco14_ip_master"},{"location":{"location":"https://github.com/coderhuang559/ip.git","repoName":"ip","organization":"coderhuang559","domainName":"github"},"branch":"master","displayName":"coderhuang559/ip[master]","outputFolderName":"coderhuang559_ip_master"},{"location":{"location":"https://github.com/craigtonlian/ip.git","repoName":"ip","organization":"craigtonlian","domainName":"github"},"branch":"master","displayName":"craigtonlian/ip[master]","outputFolderName":"craigtonlian_ip_master"},{"location":{"location":"https://github.com/adammangzijun/ip.git","repoName":"ip","organization":"adammangzijun","domainName":"github"},"branch":"master","displayName":"adammangzijun/ip[master]","outputFolderName":"adammangzijun_ip_master"},{"location":{"location":"https://github.com/AlainS87/ip.git","repoName":"ip","organization":"AlainS87","domainName":"github"},"branch":"master","displayName":"AlainS87/ip[master]","outputFolderName":"AlainS87_ip_master"},{"location":{"location":"https://github.com/tanyyyming/ip.git","repoName":"ip","organization":"tanyyyming","domainName":"github"},"branch":"master","displayName":"tanyyyming/ip[master]","outputFolderName":"tanyyyming_ip_master"},{"location":{"location":"https://github.com/Saezenn/ip.git","repoName":"ip","organization":"Saezenn","domainName":"github"},"branch":"master","displayName":"Saezenn/ip[master]","outputFolderName":"Saezenn_ip_master"},{"location":{"location":"https://github.com/kayabuttertoastt/ip.git","repoName":"ip","organization":"kayabuttertoastt","domainName":"github"},"branch":"master","displayName":"kayabuttertoastt/ip[master]","outputFolderName":"kayabuttertoastt_ip_master"},{"location":{"location":"https://github.com/limjunxian1/ip.git","repoName":"ip","organization":"limjunxian1","domainName":"github"},"branch":"master","displayName":"limjunxian1/ip[master]","outputFolderName":"limjunxian1_ip_master"},{"location":{"location":"https://github.com/andrechuakj/ip.git","repoName":"ip","organization":"andrechuakj","domainName":"github"},"branch":"master","displayName":"andrechuakj/ip[master]","outputFolderName":"andrechuakj_ip_master"},{"location":{"location":"https://github.com/kwangthiag/ip.git","repoName":"ip","organization":"kwangthiag","domainName":"github"},"branch":"master","displayName":"kwangthiag/ip[master]","outputFolderName":"kwangthiag_ip_master"},{"location":{"location":"https://github.com/ricketytoc/ip.git","repoName":"ip","organization":"ricketytoc","domainName":"github"},"branch":"master","displayName":"ricketytoc/ip[master]","outputFolderName":"ricketytoc_ip_master"},{"location":{"location":"https://github.com/applepiofmyeye/ip.git","repoName":"ip","organization":"applepiofmyeye","domainName":"github"},"branch":"master","displayName":"applepiofmyeye/ip[master]","outputFolderName":"applepiofmyeye_ip_master"},{"location":{"location":"https://github.com/nubnubyas/ip.git","repoName":"ip","organization":"nubnubyas","domainName":"github"},"branch":"master","displayName":"nubnubyas/ip[master]","outputFolderName":"nubnubyas_ip_master"},{"location":{"location":"https://github.com/WeeeHung/ip.git","repoName":"ip","organization":"WeeeHung","domainName":"github"},"branch":"master","displayName":"WeeeHung/ip[master]","outputFolderName":"WeeeHung_ip_master"},{"location":{"location":"https://github.com/Eola-Z/ip.git","repoName":"ip","organization":"Eola-Z","domainName":"github"},"branch":"master","displayName":"Eola-Z/ip[master]","outputFolderName":"Eola-Z_ip_master"},{"location":{"location":"https://github.com/jordankanghm/ip.git","repoName":"ip","organization":"jordankanghm","domainName":"github"},"branch":"master","displayName":"jordankanghm/ip[master]","outputFolderName":"jordankanghm_ip_master"},{"location":{"location":"https://github.com/zacwong2151/ip.git","repoName":"ip","organization":"zacwong2151","domainName":"github"},"branch":"master","displayName":"zacwong2151/ip[master]","outputFolderName":"zacwong2151_ip_master"},{"location":{"location":"https://github.com/m1oojv/ip.git","repoName":"ip","organization":"m1oojv","domainName":"github"},"branch":"master","displayName":"m1oojv/ip[master]","outputFolderName":"m1oojv_ip_master"},{"location":{"location":"https://github.com/JCSnap/ip.git","repoName":"ip","organization":"JCSnap","domainName":"github"},"branch":"master","displayName":"JCSnap/ip[master]","outputFolderName":"JCSnap_ip_master"},{"location":{"location":"https://github.com/Nid21cs/ip.git","repoName":"ip","organization":"Nid21cs","domainName":"github"},"branch":"master","displayName":"Nid21cs/ip[master]","outputFolderName":"Nid21cs_ip_master"},{"location":{"location":"https://github.com/mfjkri/ip.git","repoName":"ip","organization":"mfjkri","domainName":"github"},"branch":"master","displayName":"mfjkri/ip[master]","outputFolderName":"mfjkri_ip_master"},{"location":{"location":"https://github.com/Choonyan02/ip.git","repoName":"ip","organization":"Choonyan02","domainName":"github"},"branch":"master","displayName":"Choonyan02/ip[master]","outputFolderName":"Choonyan02_ip_master"},{"location":{"location":"https://github.com/rayyan35p/ip.git","repoName":"ip","organization":"rayyan35p","domainName":"github"},"branch":"master","displayName":"rayyan35p/ip[master]","outputFolderName":"rayyan35p_ip_master"},{"location":{"location":"https://github.com/dhruvir29/ip.git","repoName":"ip","organization":"dhruvir29","domainName":"github"},"branch":"master","displayName":"dhruvir29/ip[master]","outputFolderName":"dhruvir29_ip_master"},{"location":{"location":"https://github.com/Mohammed-Faizzzz/ip.git","repoName":"ip","organization":"Mohammed-Faizzzz","domainName":"github"},"branch":"master","displayName":"Mohammed-Faizzzz/ip[master]","outputFolderName":"Mohammed-Faizzzz_ip_master"},{"location":{"location":"https://github.com/ruo-x/ip.git","repoName":"ip","organization":"ruo-x","domainName":"github"},"branch":"master","displayName":"ruo-x/ip[master]","outputFolderName":"ruo-x_ip_master"},{"location":{"location":"https://github.com/DonovanJJ/ip.git","repoName":"ip","organization":"DonovanJJ","domainName":"github"},"branch":"master","displayName":"DonovanJJ/ip[master]","outputFolderName":"DonovanJJ_ip_master"},{"location":{"location":"https://github.com/kristayeo/ip.git","repoName":"ip","organization":"kristayeo","domainName":"github"},"branch":"master","displayName":"kristayeo/ip[master]","outputFolderName":"kristayeo_ip_master"},{"location":{"location":"https://github.com/ZD292/ip.git","repoName":"ip","organization":"ZD292","domainName":"github"},"branch":"master","displayName":"ZD292/ip[master]","outputFolderName":"ZD292_ip_master"},{"location":{"location":"https://github.com/jingjie88/ip.git","repoName":"ip","organization":"jingjie88","domainName":"github"},"branch":"master","displayName":"jingjie88/ip[master]","outputFolderName":"jingjie88_ip_master"},{"location":{"location":"https://github.com/iantsaii/ip.git","repoName":"ip","organization":"iantsaii","domainName":"github"},"branch":"master","displayName":"iantsaii/ip[master]","outputFolderName":"iantsaii_ip_master"},{"location":{"location":"https://github.com/jingting1412/ip.git","repoName":"ip","organization":"jingting1412","domainName":"github"},"branch":"master","displayName":"jingting1412/ip[master]","outputFolderName":"jingting1412_ip_master"},{"location":{"location":"https://github.com/wnchan/ip.git","repoName":"ip","organization":"wnchan","domainName":"github"},"branch":"master","displayName":"wnchan/ip[master]","outputFolderName":"wnchan_ip_master"},{"location":{"location":"https://github.com/jack1e0/ip.git","repoName":"ip","organization":"jack1e0","domainName":"github"},"branch":"master","displayName":"jack1e0/ip[master]","outputFolderName":"jack1e0_ip_master"},{"location":{"location":"https://github.com/mingyu-wan/ip.git","repoName":"ip","organization":"mingyu-wan","domainName":"github"},"branch":"master","displayName":"mingyu-wan/ip[master]","outputFolderName":"mingyu-wan_ip_master"},{"location":{"location":"https://github.com/nicolengk/ip.git","repoName":"ip","organization":"nicolengk","domainName":"github"},"branch":"master","displayName":"nicolengk/ip[master]","outputFolderName":"nicolengk_ip_master"},{"location":{"location":"https://github.com/cyaoxuan/ip.git","repoName":"ip","organization":"cyaoxuan","domainName":"github"},"branch":"master","displayName":"cyaoxuan/ip[master]","outputFolderName":"cyaoxuan_ip_master"},{"location":{"location":"https://github.com/sunzihan23/ip.git","repoName":"ip","organization":"sunzihan23","domainName":"github"},"branch":"master","displayName":"sunzihan23/ip[master]","outputFolderName":"sunzihan23_ip_master"},{"location":{"location":"https://github.com/Goh-Li-Ting/ip.git","repoName":"ip","organization":"Goh-Li-Ting","domainName":"github"},"branch":"master","displayName":"Goh-Li-Ting/ip[master]","outputFolderName":"Goh-Li-Ting_ip_master"},{"location":{"location":"https://github.com/wjayee/ip.git","repoName":"ip","organization":"wjayee","domainName":"github"},"branch":"master","displayName":"wjayee/ip[master]","outputFolderName":"wjayee_ip_master"},{"location":{"location":"https://github.com/fuyiqiao/ip.git","repoName":"ip","organization":"fuyiqiao","domainName":"github"},"branch":"master","displayName":"fuyiqiao/ip[master]","outputFolderName":"fuyiqiao_ip_master"},{"location":{"location":"https://github.com/GlendaChong/ip.git","repoName":"ip","organization":"GlendaChong","domainName":"github"},"branch":"master","displayName":"GlendaChong/ip[master]","outputFolderName":"GlendaChong_ip_master"},{"location":{"location":"https://github.com/hyc17003/ip.git","repoName":"ip","organization":"hyc17003","domainName":"github"},"branch":"master","displayName":"hyc17003/ip[master]","outputFolderName":"hyc17003_ip_master"},{"location":{"location":"https://github.com/spatuly/ip.git","repoName":"ip","organization":"spatuly","domainName":"github"},"branch":"master","displayName":"spatuly/ip[master]","outputFolderName":"spatuly_ip_master"},{"location":{"location":"https://github.com/tanteckfang/ip.git","repoName":"ip","organization":"tanteckfang","domainName":"github"},"branch":"master","displayName":"tanteckfang/ip[master]","outputFolderName":"tanteckfang_ip_master"},{"location":{"location":"https://github.com/Clin-lyx/ip.git","repoName":"ip","organization":"Clin-lyx","domainName":"github"},"branch":"master","displayName":"Clin-lyx/ip[master]","outputFolderName":"Clin-lyx_ip_master"},{"location":{"location":"https://github.com/lyuanww/ip.git","repoName":"ip","organization":"lyuanww","domainName":"github"},"branch":"master","displayName":"lyuanww/ip[master]","outputFolderName":"lyuanww_ip_master"},{"location":{"location":"https://github.com/LimJH2002/ip.git","repoName":"ip","organization":"LimJH2002","domainName":"github"},"branch":"master","displayName":"LimJH2002/ip[master]","outputFolderName":"LimJH2002_ip_master"},{"location":{"location":"https://github.com/LWZ19/ip.git","repoName":"ip","organization":"LWZ19","domainName":"github"},"branch":"master","displayName":"LWZ19/ip[master]","outputFolderName":"LWZ19_ip_master"},{"location":{"location":"https://github.com/Gavino3o/ip.git","repoName":"ip","organization":"Gavino3o","domainName":"github"},"branch":"master","displayName":"Gavino3o/ip[master]","outputFolderName":"Gavino3o_ip_master"},{"location":{"location":"https://github.com/suryanshkushwaha/ip.git","repoName":"ip","organization":"suryanshkushwaha","domainName":"github"},"branch":"master","displayName":"suryanshkushwaha/ip[master]","outputFolderName":"suryanshkushwaha_ip_master"},{"location":{"location":"https://github.com/JasonRay168/ip.git","repoName":"ip","organization":"JasonRay168","domainName":"github"},"branch":"master","displayName":"JasonRay168/ip[master]","outputFolderName":"JasonRay168_ip_master"},{"location":{"location":"https://github.com/jovkusuma/ip.git","repoName":"ip","organization":"jovkusuma","domainName":"github"},"branch":"master","displayName":"jovkusuma/ip[master]","outputFolderName":"jovkusuma_ip_master"},{"location":{"location":"https://github.com/Chrainx/ip.git","repoName":"ip","organization":"Chrainx","domainName":"github"},"branch":"master","displayName":"Chrainx/ip[master]","outputFolderName":"Chrainx_ip_master"},{"location":{"location":"https://github.com/Daphne789/ip.git","repoName":"ip","organization":"Daphne789","domainName":"github"},"branch":"master","displayName":"Daphne789/ip[master]","outputFolderName":"Daphne789_ip_master"},{"location":{"location":"https://github.com/ChuanXinNg/ip.git","repoName":"ip","organization":"ChuanXinNg","domainName":"github"},"branch":"master","displayName":"ChuanXinNg/ip[master]","outputFolderName":"ChuanXinNg_ip_master"},{"location":{"location":"https://github.com/LHeng1/ip.git","repoName":"ip","organization":"LHeng1","domainName":"github"},"branch":"master","displayName":"LHeng1/ip[master]","outputFolderName":"LHeng1_ip_master"},{"location":{"location":"https://github.com/wr1159/ip.git","repoName":"ip","organization":"wr1159","domainName":"github"},"branch":"master","displayName":"wr1159/ip[master]","outputFolderName":"wr1159_ip_master"},{"location":{"location":"https://github.com/wjacobw/ip.git","repoName":"ip","organization":"wjacobw","domainName":"github"},"branch":"master","displayName":"wjacobw/ip[master]","outputFolderName":"wjacobw_ip_master"},{"location":{"location":"https://github.com/tiongjjyi/ip.git","repoName":"ip","organization":"tiongjjyi","domainName":"github"},"branch":"master","displayName":"tiongjjyi/ip[master]","outputFolderName":"tiongjjyi_ip_master"},{"location":{"location":"https://github.com/longnguyentan/ip.git","repoName":"ip","organization":"longnguyentan","domainName":"github"},"branch":"master","displayName":"longnguyentan/ip[master]","outputFolderName":"longnguyentan_ip_master"},{"location":{"location":"https://github.com/proto-aiken-13/ip.git","repoName":"ip","organization":"proto-aiken-13","domainName":"github"},"branch":"master","displayName":"proto-aiken-13/ip[master]","outputFolderName":"proto-aiken-13_ip_master"},{"location":{"location":"https://github.com/junnengsoo/ip.git","repoName":"ip","organization":"junnengsoo","domainName":"github"},"branch":"master","displayName":"junnengsoo/ip[master]","outputFolderName":"junnengsoo_ip_master"},{"location":{"location":"https://github.com/yezkez10/ip.git","repoName":"ip","organization":"yezkez10","domainName":"github"},"branch":"master","displayName":"yezkez10/ip[master]","outputFolderName":"yezkez10_ip_master"},{"location":{"location":"https://github.com/jamesebond/ip.git","repoName":"ip","organization":"jamesebond","domainName":"github"},"branch":"master","displayName":"jamesebond/ip[master]","outputFolderName":"jamesebond_ip_master"},{"location":{"location":"https://github.com/alyssaongyx/ip.git","repoName":"ip","organization":"alyssaongyx","domainName":"github"},"branch":"master","displayName":"alyssaongyx/ip[master]","outputFolderName":"alyssaongyx_ip_master"},{"location":{"location":"https://github.com/Carlintyj/ip.git","repoName":"ip","organization":"Carlintyj","domainName":"github"},"branch":"master","displayName":"Carlintyj/ip[master]","outputFolderName":"Carlintyj_ip_master"},{"location":{"location":"https://github.com/ruth-lim/ip.git","repoName":"ip","organization":"ruth-lim","domainName":"github"},"branch":"master","displayName":"ruth-lim/ip[master]","outputFolderName":"ruth-lim_ip_master"},{"location":{"location":"https://github.com/licongshen12/ip.git","repoName":"ip","organization":"licongshen12","domainName":"github"},"branch":"master","displayName":"licongshen12/ip[master]","outputFolderName":"licongshen12_ip_master"},{"location":{"location":"https://github.com/thaddeusong/ip.git","repoName":"ip","organization":"thaddeusong","domainName":"github"},"branch":"master","displayName":"thaddeusong/ip[master]","outputFolderName":"thaddeusong_ip_master"},{"location":{"location":"https://github.com/LordSaumya/ip.git","repoName":"ip","organization":"LordSaumya","domainName":"github"},"branch":"master","displayName":"LordSaumya/ip[master]","outputFolderName":"LordSaumya_ip_master"},{"location":{"location":"https://github.com/Kevin-Liusx/ip.git","repoName":"ip","organization":"Kevin-Liusx","domainName":"github"},"branch":"master","displayName":"Kevin-Liusx/ip[master]","outputFolderName":"Kevin-Liusx_ip_master"},{"location":{"location":"https://github.com/Ken-Lai/ip.git","repoName":"ip","organization":"Ken-Lai","domainName":"github"},"branch":"master","displayName":"Ken-Lai/ip[master]","outputFolderName":"Ken-Lai_ip_master"},{"location":{"location":"https://github.com/KumChaiYin/ip.git","repoName":"ip","organization":"KumChaiYin","domainName":"github"},"branch":"master","displayName":"KumChaiYin/ip[master]","outputFolderName":"KumChaiYin_ip_master"},{"location":{"location":"https://github.com/pzl111/ip.git","repoName":"ip","organization":"pzl111","domainName":"github"},"branch":"master","displayName":"pzl111/ip[master]","outputFolderName":"pzl111_ip_master"},{"location":{"location":"https://github.com/alientian/ip.git","repoName":"ip","organization":"alientian","domainName":"github"},"branch":"master","displayName":"alientian/ip[master]","outputFolderName":"alientian_ip_master"},{"location":{"location":"https://github.com/eyelessrhyme7/ip.git","repoName":"ip","organization":"eyelessrhyme7","domainName":"github"},"branch":"master","displayName":"eyelessrhyme7/ip[master]","outputFolderName":"eyelessrhyme7_ip_master"},{"location":{"location":"https://github.com/AprupKale/ip.git","repoName":"ip","organization":"AprupKale","domainName":"github"},"branch":"master","displayName":"AprupKale/ip[master]","outputFolderName":"AprupKale_ip_master"},{"location":{"location":"https://github.com/kimshitong/ip.git","repoName":"ip","organization":"kimshitong","domainName":"github"},"branch":"master","displayName":"kimshitong/ip[master]","outputFolderName":"kimshitong_ip_master"},{"location":{"location":"https://github.com/Bryan-Goh/ip.git","repoName":"ip","organization":"Bryan-Goh","domainName":"github"},"branch":"master","displayName":"Bryan-Goh/ip[master]","outputFolderName":"Bryan-Goh_ip_master"},{"location":{"location":"https://github.com/tiif/ip.git","repoName":"ip","organization":"tiif","domainName":"github"},"branch":"master","displayName":"tiif/ip[master]","outputFolderName":"tiif_ip_master"},{"location":{"location":"https://github.com/angkyakdifp/ip.git","repoName":"ip","organization":"angkyakdifp","domainName":"github"},"branch":"master","displayName":"angkyakdifp/ip[master]","outputFolderName":"angkyakdifp_ip_master"},{"location":{"location":"https://github.com/Chen-Kuei/ip.git","repoName":"ip","organization":"Chen-Kuei","domainName":"github"},"branch":"master","displayName":"Chen-Kuei/ip[master]","outputFolderName":"Chen-Kuei_ip_master"},{"location":{"location":"https://github.com/SinhaVedant/ip.git","repoName":"ip","organization":"SinhaVedant","domainName":"github"},"branch":"master","displayName":"SinhaVedant/ip[master]","outputFolderName":"SinhaVedant_ip_master"},{"location":{"location":"https://github.com/D-Limiter/ip.git","repoName":"ip","organization":"D-Limiter","domainName":"github"},"branch":"master","displayName":"D-Limiter/ip[master]","outputFolderName":"D-Limiter_ip_master"},{"location":{"location":"https://github.com/larrywang0701/ip.git","repoName":"ip","organization":"larrywang0701","domainName":"github"},"branch":"master","displayName":"larrywang0701/ip[master]","outputFolderName":"larrywang0701_ip_master"},{"location":{"location":"https://github.com/Song-Mengfei/ip.git","repoName":"ip","organization":"Song-Mengfei","domainName":"github"},"branch":"master","displayName":"Song-Mengfei/ip[master]","outputFolderName":"Song-Mengfei_ip_master"},{"location":{"location":"https://github.com/ChangruHenryQian/ip.git","repoName":"ip","organization":"ChangruHenryQian","domainName":"github"},"branch":"master","displayName":"ChangruHenryQian/ip[master]","outputFolderName":"ChangruHenryQian_ip_master"},{"location":{"location":"https://github.com/ketweeen/ip.git","repoName":"ip","organization":"ketweeen","domainName":"github"},"branch":"master","displayName":"ketweeen/ip[master]","outputFolderName":"ketweeen_ip_master"},{"location":{"location":"https://github.com/RSXIX/ip.git","repoName":"ip","organization":"RSXIX","domainName":"github"},"branch":"master","displayName":"RSXIX/ip[master]","outputFolderName":"RSXIX_ip_master"},{"location":{"location":"https://github.com/songgthu/ip.git","repoName":"ip","organization":"songgthu","domainName":"github"},"branch":"master","displayName":"songgthu/ip[master]","outputFolderName":"songgthu_ip_master"},{"location":{"location":"https://github.com/maj0-0/ip.git","repoName":"ip","organization":"maj0-0","domainName":"github"},"branch":"master","displayName":"maj0-0/ip[master]","outputFolderName":"maj0-0_ip_master"},{"location":{"location":"https://github.com/tiongMax/ip.git","repoName":"ip","organization":"tiongMax","domainName":"github"},"branch":"master","displayName":"tiongMax/ip[master]","outputFolderName":"tiongMax_ip_master"},{"location":{"location":"https://github.com/A1WAYSD/ip.git","repoName":"ip","organization":"A1WAYSD","domainName":"github"},"branch":"master","displayName":"A1WAYSD/ip[master]","outputFolderName":"A1WAYSD_ip_master"},{"location":{"location":"https://github.com/hjoneweek/ip.git","repoName":"ip","organization":"hjoneweek","domainName":"github"},"branch":"master","displayName":"hjoneweek/ip[master]","outputFolderName":"hjoneweek_ip_master"},{"location":{"location":"https://github.com/itsNatTan/ip.git","repoName":"ip","organization":"itsNatTan","domainName":"github"},"branch":"master","displayName":"itsNatTan/ip[master]","outputFolderName":"itsNatTan_ip_master"},{"location":{"location":"https://github.com/AustinHuang1203/ip.git","repoName":"ip","organization":"AustinHuang1203","domainName":"github"},"branch":"master","displayName":"AustinHuang1203/ip[master]","outputFolderName":"AustinHuang1203_ip_master"},{"location":{"location":"https://github.com/WangCheng0116/ip.git","repoName":"ip","organization":"WangCheng0116","domainName":"github"},"branch":"master","displayName":"WangCheng0116/ip[master]","outputFolderName":"WangCheng0116_ip_master"},{"location":{"location":"https://github.com/Tim-Siu/ip.git","repoName":"ip","organization":"Tim-Siu","domainName":"github"},"branch":"master","displayName":"Tim-Siu/ip[master]","outputFolderName":"Tim-Siu_ip_master"},{"location":{"location":"https://github.com/newway1814/ip.git","repoName":"ip","organization":"newway1814","domainName":"github"},"branch":"master","displayName":"newway1814/ip[master]","outputFolderName":"newway1814_ip_master"},{"location":{"location":"https://github.com/li-rongzhi/ip.git","repoName":"ip","organization":"li-rongzhi","domainName":"github"},"branch":"master","displayName":"li-rongzhi/ip[master]","outputFolderName":"li-rongzhi_ip_master"},{"location":{"location":"https://github.com/adhigop13/ip.git","repoName":"ip","organization":"adhigop13","domainName":"github"},"branch":"master","displayName":"adhigop13/ip[master]","outputFolderName":"adhigop13_ip_master"},{"location":{"location":"https://github.com/MadLamprey/ip.git","repoName":"ip","organization":"MadLamprey","domainName":"github"},"branch":"master","displayName":"MadLamprey/ip[master]","outputFolderName":"MadLamprey_ip_master"}],"errorSet":[{"repoName":"Propene-Dan/ip[master]","errorMessage":"Failed to clone from https://github.com/Propene-Dan/ip.git"},{"repoName":"Cloud7050/ip[master]","errorMessage":"Failed to clone from https://github.com/Cloud7050/ip.git"}],"sinceDate":"2023-08-18","untilDate":"2023-08-30","isSinceDateProvided":true,"isUntilDateProvided":false,"supportedDomainUrlMap":{"NOT_RECOGNIZED":{"BRANCH":"","REPO_URL":"UNSUPPORTED","BASE_URL":"UNSUPPORTED","HISTORY_PATH":"","COMMIT_PATH":"","BLAME_PATH":""},"github":{"BRANCH":"tree/$BRANCH","REPO_URL":"https://github.com/$ORGANIZATION/$REPO_NAME/","BASE_URL":"https://github.com/","HISTORY_PATH":"commits/$BRANCH/$FILE_PATH","COMMIT_PATH":"commit/$COMMIT_HASH","BLAME_PATH":"blame/$BRANCH/$FILE_PATH"}}} diff --git a/thaddeusong_ip_master/commits.json b/thaddeusong_ip_master/commits.json index f6117d7f..7b47dfbf 100644 --- a/thaddeusong_ip_master/commits.json +++ b/thaddeusong_ip_master/commits.json @@ -1 +1 @@ -{"authorDailyContributionsMap":{"thaddeusong":[{"date":"2023-08-24","commitResults":[{"hash":"15766d22aa5e67d4900b242fa9661d8af25ee229","isMergeCommit":false,"messageTitle":"Level-0","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":15,"deletions":6}}},{"hash":"21966a7dba450a6c4383ab8aa7021794b0b5188e","isMergeCommit":false,"messageTitle":"Level-1","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":69,"deletions":11}}},{"hash":"b07c77b3fe54a1e946e88bc68bafb84e1729366a","isMergeCommit":false,"messageTitle":"Level-2","messageBody":"","tags":["Level-2","A-Collections"],"fileTypesAndContributionMap":{"java":{"insertions":48,"deletions":9}}},{"hash":"db8bf4c7efacf2389623504014d554c9fe25e9bf","isMergeCommit":false,"messageTitle":"Level-3 and Level-4","messageBody":"","tags":["Level-4","Level-3","A-Inheritance","A-Enums","A-Classes"],"fileTypesAndContributionMap":{"java":{"insertions":142,"deletions":15}}},{"hash":"7b7c3acf21f11354e53aeae885e8f6612ad9cb7c","isMergeCommit":false,"messageTitle":"Add Testing","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":11,"deletions":0},"bat":{"insertions":1,"deletions":0},"sh":{"insertions":2,"deletions":1}}},{"hash":"8db79d915ecdf1ccb5293572b8bfd8cc218966e0","isMergeCommit":false,"messageTitle":"Add Exceptions","messageBody":"","tags":["Level-5","A-Exceptions"],"fileTypesAndContributionMap":{"java":{"insertions":99,"deletions":51}}},{"hash":"30075b808547faf78041df5810d1280e54634921","isMergeCommit":false,"messageTitle":"Add Delete method","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"java":{"insertions":30,"deletions":2}}}]},{"date":"2023-08-28","commitResults":[{"hash":"57495cea96fbe43d29ddb26c3bf1d22f400bcce0","isMergeCommit":false,"messageTitle":"Use More OOP","messageBody":"(cherry picked from commit 735bfbe59b74709b7cea91ab32e9e914a9c4c062)\n","tags":["A-MoreOOP"],"fileTypesAndContributionMap":{"java":{"insertions":145,"deletions":61}}},{"hash":"04980d04f7a332d9fea5525043b773da5b4d4ae7","isMergeCommit":false,"messageTitle":"Add File Saving","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":166,"deletions":51},"bat":{"insertions":3,"deletions":2},"sh":{"insertions":4,"deletions":2}}}]},{"date":"2023-08-29","commitResults":[{"hash":"4f1c165992c67b962afd594af99ab13af76d7c0b","isMergeCommit":false,"messageTitle":"Reorganize Files","messageBody":"","tags":["A-Packages"],"fileTypesAndContributionMap":{"java":{"insertions":588,"deletions":373}}}]},{"date":"2023-08-30","commitResults":[{"hash":"bab945044e6f7fb70887998ff646ebe980b89d99","isMergeCommit":false,"messageTitle":"Add JUnit Tests to Deadline and Todo","messageBody":"","tags":["A-JUnit"],"fileTypesAndContributionMap":{"java":{"insertions":55,"deletions":4}}},{"hash":"dadeac06d02dfa3ec33d8ba39215c9d71da98114","isMergeCommit":false,"messageTitle":"Add File Saving","messageBody":"","tags":["Level-7"],"fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":11}}}]}]},"authorFileTypeContributionMap":{"thaddeusong":{"java":783,"md":0,"fxml":0,"sh":4,"bat":3,"gradle":0,"txt":11}},"authorContributionVariance":{"thaddeusong":82791.3},"authorDisplayNameMap":{"thaddeusong":"CS2103T-F10-3 ONG ..DEUS"}} +{"authorDailyContributionsMap":{"thaddeusong":[{"date":"2023-08-24","commitResults":[{"hash":"15766d22aa5e67d4900b242fa9661d8af25ee229","isMergeCommit":false,"messageTitle":"Level-0","messageBody":"","tags":["Level-0"],"fileTypesAndContributionMap":{"java":{"insertions":15,"deletions":6}}},{"hash":"21966a7dba450a6c4383ab8aa7021794b0b5188e","isMergeCommit":false,"messageTitle":"Level-1","messageBody":"","tags":["Level-1"],"fileTypesAndContributionMap":{"java":{"insertions":69,"deletions":11}}},{"hash":"b07c77b3fe54a1e946e88bc68bafb84e1729366a","isMergeCommit":false,"messageTitle":"Level-2","messageBody":"","tags":["Level-2","A-Collections"],"fileTypesAndContributionMap":{"java":{"insertions":48,"deletions":9}}},{"hash":"db8bf4c7efacf2389623504014d554c9fe25e9bf","isMergeCommit":false,"messageTitle":"Level-3 and Level-4","messageBody":"","tags":["Level-4","Level-3","A-Inheritance","A-Enums","A-Classes"],"fileTypesAndContributionMap":{"java":{"insertions":142,"deletions":15}}},{"hash":"7b7c3acf21f11354e53aeae885e8f6612ad9cb7c","isMergeCommit":false,"messageTitle":"Add Testing","messageBody":"","tags":["A-TextUiTesting"],"fileTypesAndContributionMap":{"txt":{"insertions":11,"deletions":0},"bat":{"insertions":1,"deletions":0},"sh":{"insertions":2,"deletions":1}}},{"hash":"8db79d915ecdf1ccb5293572b8bfd8cc218966e0","isMergeCommit":false,"messageTitle":"Add Exceptions","messageBody":"","tags":["Level-5","A-Exceptions"],"fileTypesAndContributionMap":{"java":{"insertions":99,"deletions":51}}},{"hash":"30075b808547faf78041df5810d1280e54634921","isMergeCommit":false,"messageTitle":"Add Delete method","messageBody":"","tags":["Level-6"],"fileTypesAndContributionMap":{"java":{"insertions":30,"deletions":2}}}]},{"date":"2023-08-28","commitResults":[{"hash":"57495cea96fbe43d29ddb26c3bf1d22f400bcce0","isMergeCommit":false,"messageTitle":"Use More OOP","messageBody":"(cherry picked from commit 735bfbe59b74709b7cea91ab32e9e914a9c4c062)\n","tags":["A-MoreOOP"],"fileTypesAndContributionMap":{"java":{"insertions":145,"deletions":61}}},{"hash":"04980d04f7a332d9fea5525043b773da5b4d4ae7","isMergeCommit":false,"messageTitle":"Add File Saving","messageBody":"","fileTypesAndContributionMap":{"java":{"insertions":166,"deletions":51},"bat":{"insertions":3,"deletions":2},"sh":{"insertions":4,"deletions":2}}}]},{"date":"2023-08-29","commitResults":[{"hash":"4f1c165992c67b962afd594af99ab13af76d7c0b","isMergeCommit":false,"messageTitle":"Reorganize Files","messageBody":"","tags":["A-Packages"],"fileTypesAndContributionMap":{"java":{"insertions":588,"deletions":373}}},{"hash":"6cce3d4add086b466ecb4a0319d45d16c226c2e2","isMergeCommit":false,"messageTitle":"Add Gradle Support","messageBody":"","tags":["A-Gradle"],"fileTypesAndContributionMap":{"gradle":{"insertions":42,"deletions":0}}}]},{"date":"2023-08-30","commitResults":[{"hash":"bab945044e6f7fb70887998ff646ebe980b89d99","isMergeCommit":false,"messageTitle":"Add JUnit Tests to Deadline and Todo","messageBody":"","tags":["A-JUnit"],"fileTypesAndContributionMap":{"java":{"insertions":55,"deletions":4}}},{"hash":"dadeac06d02dfa3ec33d8ba39215c9d71da98114","isMergeCommit":false,"messageTitle":"Add File Saving","messageBody":"","tags":["Level-7"],"fileTypesAndContributionMap":{"java":{"insertions":13,"deletions":11}}}]}]},"authorFileTypeContributionMap":{"thaddeusong":{"java":783,"md":0,"fxml":0,"sh":4,"bat":3,"gradle":0,"txt":11}},"authorContributionVariance":{"thaddeusong":88136.984},"authorDisplayNameMap":{"thaddeusong":"CS2103T-F10-3 ONG ..DEUS"}}