diff --git a/Binary_Search b/Binary_Search new file mode 100644 index 0000000..81c5dea --- /dev/null +++ b/Binary_Search @@ -0,0 +1,17 @@ +template +bool _binary_search(Iter beg,Iter end,const T& val) +{ + Iter m,_beg; + std::sort(beg ,end); //先从小到大排序 + end=end-1; + _beg=beg; //指针无法参与算术运算,保存首地址 + while(beg<=end) +{ + m=_beg+(beg-_beg)/2+(end-_beg)/2+((beg-_beg)%2&(end-_beg)%2); + if((*m)==val) + return true; + else if(*m>val) + end=m-1; + else if(*m& nums, int k) { + //反转法 + k %= nums.size(); + std::reverse(nums.begin(), nums.end()); + std::reverse(nums.begin(),nums.begin()+k); + std::reverse(nums.begin()+k, nums.end()); + } +}; diff --git a/LeetCode.268 b/LeetCode.268 new file mode 100644 index 0000000..6e4b8c4 --- /dev/null +++ b/LeetCode.268 @@ -0,0 +1,11 @@ +class Solution { +public: + int missingNumber(vector nums) { + std::sort(nums.begin(),nums.end()); + int i; + for( i=0;i +#include +#include +namespace sp +{ + +float iou(const cv::Rect& lhs, const cv::Rect& rhs) +{ + const int lt_x = std::max(lhs.x, rhs.x); + const int lt_y = std::max(lhs.y, rhs.y); + const int rd_x = std::min(lhs.x + lhs.width, rhs.x + rhs.width); + const int rd_y = std::min(lhs.y + lhs.height, rhs.y + rhs.height); + + const int inner_w = std::max(0, rd_x - lt_x + 1); + const int inner_h = std::max(0, rd_y - lt_y + 1); + const int inner_area = inner_h * inner_w; + + return static_cast(inner_area) / (lhs.area() + rhs.area() - inner_area); +} + +} + +int main() +{ + auto mat = cv::imread("test.jpg", cv::IMREAD_GRAYSCALE); + cv::resize(mat, mat, {1280, 720}); + auto mser = cv::MSER::create(8,85,10000,0.1); + /*修改MSER算法中初始设置的参数,使既减少 + BBOXES数量又不遗漏数字,且适用于不同图片*/ + std::vector> contours; + std::vector bboxes; + + mser->detectRegions(mat, contours, bboxes); + std::cout << bboxes.size() << '\n'; + std::cin.get(); + + std::vector drawed_rects; + drawed_rects.reserve(bboxes.size() / 4); + + int cnt = 0; + if (!bboxes.empty()) + { + ++cnt; + cv::rectangle(mat, bboxes.front(), {255, 0, 0}); + drawed_rects.push_back(0); + } + constexpr float thresh = 0.5; + int prop=8;//设置矩形长宽比界限 + for (int i = 1; i < bboxes.size(); ++i) + { + bool skip = false; + for (auto&& index : drawed_rects) + if (skip = (sp::iou(bboxes[i], bboxes[index]) > thresh)) + break; + if (skip) + continue; + if((bboxes[i].width/bboxes[i].height)>=prop||(bboxes[i].height/bboxes[i].width)>=prop) + continue;//超过长宽比就舍弃 + cv::rectangle(mat, bboxes[i], { 255, 0, 0 }); + drawed_rects.push_back(i); + ++cnt; + } + + std::cout << cnt << '\n'; + std::cin.get(); + cv::imwrite("test_out.jpg", mat); +} \ No newline at end of file diff --git a/VideoCapture_threshold b/VideoCapture_threshold new file mode 100644 index 0000000..752fef3 --- /dev/null +++ b/VideoCapture_threshold @@ -0,0 +1,46 @@ +#include +#include "opencv2/core.hpp" +#include "opencv2/imgproc.hpp" +#include "opencv2/highgui.hpp" +#include "opencv2/videoio.hpp" + +using namespace cv; +using namespace std; + +void to_GrayImage(Mat &Image,Mat &GrayImage);//转灰度图 + +int main() +{ + cout << "Built with OpenCV " << CV_VERSION << endl; + Mat Image,GrayImage,BinaryImage; + VideoCapture capture; + capture.open(0); + if(capture.isOpened()) + { + cout << "Capture is opened" << endl; + for(;;) + { + capture >> Image; + if(Image.empty()) + break; + to_GrayImage(Image,GrayImage); + threshold(GrayImage,BinaryImage,100,255,THRESH_BINARY); + imshow("Sample", BinaryImage); + if(waitKey(10) >= 0) + break; + } + } + else + { + cout << "No capture" << endl; + Image = Mat::zeros(480, 640, CV_8UC1); + imshow("Sample", Image); + waitKey(0); + } + return 0; +} +void to_GrayImage(Mat &Image,Mat &GrayImage) +{ + GrayImage.create(Image.size(),Image.type()); + cvtColor(Image,GrayImage,COLOR_BGR2GRAY); +} diff --git a/prop_thre.cpp b/prop_thre.cpp new file mode 100644 index 0000000..ae2bddb --- /dev/null +++ b/prop_thre.cpp @@ -0,0 +1,34 @@ + //(1)namespace局部命名空间可以有效避免项目协作时因函数等命名相同造成冲突 + /*(2)具体操作应该打包成函数,而且不能随意在函数过程中给变量赋值,如比例等, + 这样修改比较麻烦*/ + /*(3).at(j,i)访问制定行与列,但由于像素存储按行存储,而且存在行与行之间有距离 + 与无距离两种情况,所以用.ptr(uchar)(i)访问每行首地址更准确*/ + //(4).at(j+1,i+1)是我错误的认为像素坐标是从(1,1)开始 + //(5)程序中定义过多变量,而且程序写的冗长,多是使用最基本的C++语句 + //看书不是太多,自己需要多看多学多用 +#pragma once +#include +namespace zjx + { + void prop_thre(cv::Mat& src_in,cv::Mat&src_out,double proproportion ) + { + int image1[256]={0},threshold_val=255; + uint32_t iter_rows =src_in.isContinuous() ? 1 : src_in.rows; + uint32_t iter_cols=src_in.rows*src_in.cols/iter_rows; + + for(size_t i=0;i(i); + for(std::size_t j=0;j0) + num-=image1[--threshold_val]; + + threshold(src_in,src_out,threshold_val,255,cv::THRESH_BINARY); + imshow("thre_im",src_out); + cv::waitKey(0); + } + } + + diff --git a/proportion_thresh.cpp b/proportion_thresh.cpp new file mode 100644 index 0000000..9b58e54 --- /dev/null +++ b/proportion_thresh.cpp @@ -0,0 +1,27 @@ +#include "opencv2/opencv.hpp" +using namespace std; +using namespace cv; +int main( ) +{ + Mat Image,BinaryImage; + Image=imread("1.jpg",cv::IMREAD_GRAYSCALE); + int Image1[256]={0}; + uchar ThresholdVal; + int num=0; + for(int i=0;i(j+1,i+1)]++;//将像素值作为数组下标,记录同像素数量 + } + for(int i=255;i>=0;i--) + {num+=Image1[i]; + if(num>=int(Image.rows*Image.cols*(0.14))) + {ThresholdVal=i+1; + break; + } + } + + threshold(Image,BinaryImage,ThresholdVal,255,THRESH_BINARY); + imshow("imgae",BinaryImage); + waitKey(0); +} \ No newline at end of file diff --git a/superpower19classifier-zjx/.vscode/c_cpp_properties.json b/superpower19classifier-zjx/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..2797d20 --- /dev/null +++ b/superpower19classifier-zjx/.vscode/c_cpp_properties.json @@ -0,0 +1,19 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/local/include", + "/usr/local/include/opencv4", + "/usr/local/include/opencv4/opencv2" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "c11", + "cppStandard": "c++17", + "intelliSenseMode": "clang-x64" + } + ], + "version": 4 +} \ No newline at end of file diff --git a/superpower19classifier-zjx/.vscode/launch.json b/superpower19classifier-zjx/.vscode/launch.json new file mode 100644 index 0000000..dde7412 --- /dev/null +++ b/superpower19classifier-zjx/.vscode/launch.json @@ -0,0 +1,29 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "g++ build and debug active file", + "type": "cppdbg", + "request": "launch", + "program": "${fileDirname}/${fileBasenameNoExtension}.o", + "args": [], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ], + "preLaunchTask": "g++ build active file", + "miDebuggerPath": "/usr/bin/gdb" + } + ] +} \ No newline at end of file diff --git a/superpower19classifier-zjx/.vscode/settings.json b/superpower19classifier-zjx/.vscode/settings.json new file mode 100644 index 0000000..b1d7ac4 --- /dev/null +++ b/superpower19classifier-zjx/.vscode/settings.json @@ -0,0 +1,57 @@ +{ + "files.associations": { + "ostream": "cpp", + "iostream": "cpp", + "array": "cpp", + "atomic": "cpp", + "*.tcc": "cpp", + "cctype": "cpp", + "chrono": "cpp", + "clocale": "cpp", + "cmath": "cpp", + "complex": "cpp", + "condition_variable": "cpp", + "cstdarg": "cpp", + "cstddef": "cpp", + "cstdint": "cpp", + "cstdio": "cpp", + "cstdlib": "cpp", + "cstring": "cpp", + "ctime": "cpp", + "cwchar": "cpp", + "cwctype": "cpp", + "deque": "cpp", + "list": "cpp", + "unordered_map": "cpp", + "vector": "cpp", + "exception": "cpp", + "algorithm": "cpp", + "functional": "cpp", + "iterator": "cpp", + "map": "cpp", + "memory": "cpp", + "memory_resource": "cpp", + "optional": "cpp", + "ratio": "cpp", + "set": "cpp", + "string": "cpp", + "string_view": "cpp", + "system_error": "cpp", + "tuple": "cpp", + "type_traits": "cpp", + "utility": "cpp", + "fstream": "cpp", + "initializer_list": "cpp", + "iomanip": "cpp", + "iosfwd": "cpp", + "istream": "cpp", + "limits": "cpp", + "mutex": "cpp", + "new": "cpp", + "sstream": "cpp", + "stdexcept": "cpp", + "streambuf": "cpp", + "thread": "cpp", + "typeinfo": "cpp" + } +} \ No newline at end of file diff --git a/superpower19classifier-zjx/.vscode/tasks.json b/superpower19classifier-zjx/.vscode/tasks.json new file mode 100644 index 0000000..7d8d820 --- /dev/null +++ b/superpower19classifier-zjx/.vscode/tasks.json @@ -0,0 +1,35 @@ +{ + "tasks": [ + { + "type": "shell", + "label": "g++ build active file", + "command": "/usr/bin/g++", + "args": [ + "-g", + "${file}", + "-o", + "${fileDirname}/${fileBasenameNoExtension}.o", + "-I", "/usr/local/include", + "-I", "/usr/local/include/opencv4", + "-I", "/usr/local/include/opencv4/opencv2", + "-L", "/usr/local/lib", + "-l", "opencv_core", + "-l", "opencv_imgproc", + "-l", "opencv_imgcodecs", + "-l", "opencv_video", + "-l", "opencv_ml", + "-l", "opencv_highgui", + "-l", "opencv_objdetect", + "-l", "opencv_flann", + "-l", "opencv_imgcodecs", + "-l", "opencv_photo", + "-l", "opencv_videoio", + "-l","opencv_features2d" + ], + "options": { + "cwd": "/usr/bin" + } + } + ], + "version": "2.0.0" +} \ No newline at end of file diff --git a/superpower19classifier-zjx/CMakeLists.txt b/superpower19classifier-zjx/CMakeLists.txt new file mode 100644 index 0000000..9ceaa8d --- /dev/null +++ b/superpower19classifier-zjx/CMakeLists.txt @@ -0,0 +1,19 @@ +cmake_minimum_required(VERSION 3.12) +project(SP19CLASSIFIER_TEST) + +set(CMAKE_CXX_STANDARD 11) +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Ofast -march=native") + +add_executable(${PROJECT_NAME} test.cpp) +set(OpenCV_DIR /usr/local/include) +find_package(OpenCV REQUIRED) +if(OpenCV_FOUND) + message(STATUS "OpenCV library status:") + message(STATUS " version: ${OpenCV_VERSION}") + message(STATUS " libraries: ${OpenCV_LIBS}") + message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}") + include_directories(${OPENCV_INCLUDE_DIR}) + target_link_libraries(${PROJECT_NAME} ${OpenCV_LIBS}) +endif() + + diff --git a/superpower19classifier-zjx/README.md b/superpower19classifier-zjx/README.md new file mode 100644 index 0000000..e7ad34c --- /dev/null +++ b/superpower19classifier-zjx/README.md @@ -0,0 +1,103 @@ +## What's this + +[Robomaster](https://www.robomaster.com/zh-CN) Competition 2019. The demostration of classifier from SuperPower Team(from Tongji University, China). + +**Note that we just published our demo code to show the main idea of our algorithm. We actually made a better version of code which has higher accuracy and faster interface time** (98+%, 2~3 ms time cost when dealing with 100 pieces of images on our NUC). + +Our team was the first team to beat the small energy organ at RM19, and the classifier algorithm used is just what the code of this repo describes. + +## Unzip Data And Check File Num + +```shell +unzip data + +echo "Number of Test Negitive Sample: " +ls -l data/negative | grep '^-' | wc -l +echo "Number of Test Positive Sample: " +ls -l data/positive | grep '^-' | wc -l +``` + +You'll see: + +``` +Number of Test Negitive Sample: + 1493 +Number of Test Positive Sample: + 1470 +``` + +## Run Test + +```shell +cd build +cmake .. && make -j4 && ./SP19CLASSIFIER_TEST +``` + +You'll see: + +``` +@@@ ../armor/positive ~ 11 file reading finished. +@@@ ../armor/negative ~ 20 file reading finished. +Average bench time: 0.0528991 ms +goods right: 1410 / 1470 ~ 95.9184 % +bads right: 1469 / 1493 ~ 98.3925 % +Total accuracy: 97.165 % +``` + +> I ran this code on my MacBook Pro 2015 with clang 8.0. The performance of my Mac is just similar to NUC(And we can get nearly same result on NUC). + +## How To Use + +#### Prepare Ur Templates + +```shell +mkdir template # The folder to hold positive and negative templates. +cd template # You can replace "template" with any other name. +mkdir positive # !!! You cannot replace "positive" with any other name. +mkdir negative # !!! You cannot replace "negative" with any other name. +# The put positive samples into "positive" folder. "negative" is just as the same. +``` + +#### API + +```c++ +#include "classifier.hpp" + +int main() +{ + sp::classifier classifier("../template"); + auto img = cv::imread(...); + + // Binary prediction. + bool out = classifier.boolean_forward(img); + // Get the index of image that "img" matches. + // (Only available for positive templates) + int index = classifier.forward(img); +} +``` + +## How To Optimize This + +#### Accuracy + +- Tune the parameters: + - Compare strategy + - Thresholding strategy + - Use better templates + +> Acctually, from my experience, about 5 positive templates and 10 for negative templates can already get a satisfactory result(And, of course, faster). + +#### Speed + +Use some optimization techniques( this is great ). + +Some simple tips that I can share with U: + +- SIMD(We enabled "auto-SIMD" via "-march=native" and "-Ofast"), U can include `` to optimize ur code using other good instructions. +- Always use clang as ur compiler. (Clang is perfect at numeric code optimization, while gcc …) +- Muti-threading. (In our deployment code, I used thread pool technique which can help when dealing with a big image sequence. But of course, pay attention to the strategy of switching single threading and multi-threading) + +> Of course, the algorithm it self is simple and effective. No need to optimize too much. +> +> (The fastest answer may be Cuda … ) + diff --git a/superpower19classifier-zjx/armor/.DS_Store b/superpower19classifier-zjx/armor/.DS_Store new file mode 100644 index 0000000..d6a5731 Binary files /dev/null and b/superpower19classifier-zjx/armor/.DS_Store differ diff --git a/superpower19classifier-zjx/armor/negative/F1.png b/superpower19classifier-zjx/armor/negative/F1.png new file mode 100644 index 0000000..5374626 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F1.png differ diff --git a/superpower19classifier-zjx/armor/negative/F10.png b/superpower19classifier-zjx/armor/negative/F10.png new file mode 100644 index 0000000..00e0e41 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F10.png differ diff --git a/superpower19classifier-zjx/armor/negative/F11.png b/superpower19classifier-zjx/armor/negative/F11.png new file mode 100644 index 0000000..9ec6dc1 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F11.png differ diff --git a/superpower19classifier-zjx/armor/negative/F12.png b/superpower19classifier-zjx/armor/negative/F12.png new file mode 100644 index 0000000..771890b Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F12.png differ diff --git a/superpower19classifier-zjx/armor/negative/F13.png b/superpower19classifier-zjx/armor/negative/F13.png new file mode 100644 index 0000000..ecbe133 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F13.png differ diff --git a/superpower19classifier-zjx/armor/negative/F14.png b/superpower19classifier-zjx/armor/negative/F14.png new file mode 100644 index 0000000..a1d1470 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F14.png differ diff --git a/superpower19classifier-zjx/armor/negative/F15.png b/superpower19classifier-zjx/armor/negative/F15.png new file mode 100644 index 0000000..bbe75cc Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F15.png differ diff --git a/superpower19classifier-zjx/armor/negative/F16.png b/superpower19classifier-zjx/armor/negative/F16.png new file mode 100644 index 0000000..cfb9deb Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F16.png differ diff --git a/superpower19classifier-zjx/armor/negative/F17.png b/superpower19classifier-zjx/armor/negative/F17.png new file mode 100644 index 0000000..53029bd Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F17.png differ diff --git a/superpower19classifier-zjx/armor/negative/F18.png b/superpower19classifier-zjx/armor/negative/F18.png new file mode 100644 index 0000000..98a9aaf Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F18.png differ diff --git a/superpower19classifier-zjx/armor/negative/F2.png b/superpower19classifier-zjx/armor/negative/F2.png new file mode 100644 index 0000000..48ae882 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F2.png differ diff --git a/superpower19classifier-zjx/armor/negative/F3.png b/superpower19classifier-zjx/armor/negative/F3.png new file mode 100644 index 0000000..d78cc89 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F3.png differ diff --git a/superpower19classifier-zjx/armor/negative/F4.png b/superpower19classifier-zjx/armor/negative/F4.png new file mode 100644 index 0000000..f20e431 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F4.png differ diff --git a/superpower19classifier-zjx/armor/negative/F5.png b/superpower19classifier-zjx/armor/negative/F5.png new file mode 100644 index 0000000..97f5b94 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F5.png differ diff --git a/superpower19classifier-zjx/armor/negative/F6.png b/superpower19classifier-zjx/armor/negative/F6.png new file mode 100644 index 0000000..0eaa176 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F6.png differ diff --git a/superpower19classifier-zjx/armor/negative/F666.png b/superpower19classifier-zjx/armor/negative/F666.png new file mode 100644 index 0000000..ed0589d Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F666.png differ diff --git a/superpower19classifier-zjx/armor/negative/F7.png b/superpower19classifier-zjx/armor/negative/F7.png new file mode 100644 index 0000000..1b1ec57 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F7.png differ diff --git a/superpower19classifier-zjx/armor/negative/F8.png b/superpower19classifier-zjx/armor/negative/F8.png new file mode 100644 index 0000000..5fad01f Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F8.png differ diff --git a/superpower19classifier-zjx/armor/negative/F886.png b/superpower19classifier-zjx/armor/negative/F886.png new file mode 100644 index 0000000..4adf5a1 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F886.png differ diff --git a/superpower19classifier-zjx/armor/negative/F9.png b/superpower19classifier-zjx/armor/negative/F9.png new file mode 100644 index 0000000..659e693 Binary files /dev/null and b/superpower19classifier-zjx/armor/negative/F9.png differ diff --git a/superpower19classifier-zjx/armor/positive/.DS_Store b/superpower19classifier-zjx/armor/positive/.DS_Store new file mode 100644 index 0000000..1df685e Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/.DS_Store differ diff --git a/superpower19classifier-zjx/armor/positive/T1.jpg b/superpower19classifier-zjx/armor/positive/T1.jpg new file mode 100644 index 0000000..a088418 Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T1.jpg differ diff --git a/superpower19classifier-zjx/armor/positive/T14.png b/superpower19classifier-zjx/armor/positive/T14.png new file mode 100755 index 0000000..9a95512 Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T14.png differ diff --git a/superpower19classifier-zjx/armor/positive/T2.png b/superpower19classifier-zjx/armor/positive/T2.png new file mode 100644 index 0000000..8df7bc2 Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T2.png differ diff --git a/superpower19classifier-zjx/armor/positive/T23333.png b/superpower19classifier-zjx/armor/positive/T23333.png new file mode 100755 index 0000000..250dc2a Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T23333.png differ diff --git a/superpower19classifier-zjx/armor/positive/T3.png b/superpower19classifier-zjx/armor/positive/T3.png new file mode 100644 index 0000000..42ed55e Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T3.png differ diff --git a/superpower19classifier-zjx/armor/positive/T4.png b/superpower19classifier-zjx/armor/positive/T4.png new file mode 100644 index 0000000..2ace72a Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T4.png differ diff --git a/superpower19classifier-zjx/armor/positive/T5.png b/superpower19classifier-zjx/armor/positive/T5.png new file mode 100644 index 0000000..d5ccab2 Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T5.png differ diff --git a/superpower19classifier-zjx/armor/positive/T6.png b/superpower19classifier-zjx/armor/positive/T6.png new file mode 100644 index 0000000..fba73ba Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T6.png differ diff --git a/superpower19classifier-zjx/armor/positive/T7.png b/superpower19classifier-zjx/armor/positive/T7.png new file mode 100644 index 0000000..cfda253 Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/T7.png differ diff --git a/superpower19classifier-zjx/armor/positive/Twtf.png b/superpower19classifier-zjx/armor/positive/Twtf.png new file mode 100644 index 0000000..1f7f102 Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/Twtf.png differ diff --git a/superpower19classifier-zjx/armor/positive/Tx.png b/superpower19classifier-zjx/armor/positive/Tx.png new file mode 100644 index 0000000..5bb1d33 Binary files /dev/null and b/superpower19classifier-zjx/armor/positive/Tx.png differ diff --git a/superpower19classifier-zjx/build/CMakeCache.txt b/superpower19classifier-zjx/build/CMakeCache.txt new file mode 100644 index 0000000..15d8ffe --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeCache.txt @@ -0,0 +1,356 @@ +# This is the CMakeCache file. +# For build in directory: /home/zhoujiaxuan/superpower19classifier-master/build +# It was generated by CMake: /usr/local/bin/cmake +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=SP19CLASSIFIER_TEST + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//The directory containing a CMake configuration file for OpenCV. +OpenCV_DIR:PATH=/usr/local/lib/cmake/opencv4 + +//Value Computed by CMake +SP19CLASSIFIER_TEST_BINARY_DIR:STATIC=/home/zhoujiaxuan/superpower19classifier-master/build + +//Value Computed by CMake +SP19CLASSIFIER_TEST_SOURCE_DIR:STATIC=/home/zhoujiaxuan/superpower19classifier-master + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/zhoujiaxuan/superpower19classifier-master/build +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=15 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=0 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/local/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/local/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/local/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER +CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/zhoujiaxuan/superpower19classifier-master +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/local/share/cmake-3.15 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding OpenCV +FIND_PACKAGE_MESSAGE_DETAILS_OpenCV:INTERNAL=[/usr/local][v4.0.0()] + diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeCCompiler.cmake b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeCCompiler.cmake new file mode 100644 index 0000000..923ea1d --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeCCompiler.cmake @@ -0,0 +1,76 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "7.4.0") +set(CMAKE_C_COMPILER_VERSION_INTERNAL "") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_C_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCC 1) +set(CMAKE_C_COMPILER_LOADED 1) +set(CMAKE_C_COMPILER_WORKS TRUE) +set(CMAKE_C_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_C_COMPILER_ENV_VAR "CC") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_C_COMPILER_ID_RUN 1) +set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) +set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_C_LINKER_PREFERENCE 10) + +# Save compiler ABI information. +set(CMAKE_C_SIZEOF_DATA_PTR "8") +set(CMAKE_C_COMPILER_ABI "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_C_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_C_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") +endif() + +if(CMAKE_C_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeCXXCompiler.cmake b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..32ddf21 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeCXXCompiler.cmake @@ -0,0 +1,79 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "7.4.0") +set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") +set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") +set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") +set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") +set(CMAKE_CXX20_COMPILE_FEATURES "") + +set(CMAKE_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") +set(CMAKE_CXX_SIMULATE_VERSION "") + + + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_MT "") +set(CMAKE_COMPILER_IS_GNUCXX 1) +set(CMAKE_CXX_COMPILER_LOADED 1) +set(CMAKE_CXX_COMPILER_WORKS TRUE) +set(CMAKE_CXX_ABI_COMPILED TRUE) +set(CMAKE_COMPILER_IS_MINGW ) +set(CMAKE_COMPILER_IS_CYGWIN ) +if(CMAKE_COMPILER_IS_CYGWIN) + set(CYGWIN 1) + set(UNIX 1) +endif() + +set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") + +if(CMAKE_COMPILER_IS_MINGW) + set(MINGW 1) +endif() +set(CMAKE_CXX_COMPILER_ID_RUN 1) +set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +set(CMAKE_CXX_LINKER_PREFERENCE 30) +set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) + +# Save compiler ABI information. +set(CMAKE_CXX_SIZEOF_DATA_PTR "8") +set(CMAKE_CXX_COMPILER_ABI "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +if(CMAKE_CXX_SIZEOF_DATA_PTR) + set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") +endif() + +if(CMAKE_CXX_COMPILER_ABI) + set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") +endif() + +if(CMAKE_CXX_LIBRARY_ARCHITECTURE) + set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") +endif() + +set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") +if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) + set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") +endif() + + + + + +set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/7;/usr/include/x86_64-linux-gnu/c++/7;/usr/include/c++/7/backward;/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include") +set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeDetermineCompilerABI_C.bin b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..d6681da Binary files /dev/null and b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeDetermineCompilerABI_C.bin differ diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeDetermineCompilerABI_CXX.bin b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..816578d Binary files /dev/null and b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeSystem.cmake b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeSystem.cmake new file mode 100644 index 0000000..038b5f4 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-5.0.0-31-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "5.0.0-31-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-5.0.0-31-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "5.0.0-31-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdC/CMakeCCompilerId.c b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..917e8b9 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,665 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#endif +#if defined(__CLASSIC_C__) +/* cv-qualifiers did not exist in K&R C */ +# define const +# define volatile +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_C) +# define COMPILER_ID "SunPro" +# if __SUNPRO_C >= 0x5100 + /* __SUNPRO_C = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) +# endif + +#elif defined(__HP_cc) +# define COMPILER_ID "HP" + /* __HP_cc = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) + +#elif defined(__DECC) +# define COMPILER_ID "Compaq" + /* __DECC_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) + +#elif defined(__IBMC__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 +# define COMPILER_ID "XL" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMC__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__BCC__) +# define COMPILER_ID "Bruce" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) +# define COMPILER_ID "GNU" +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + +#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) +# define COMPILER_ID "SDCC" +# if defined(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) +# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) +# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) +# else + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if !defined(__STDC__) +# if (defined(_MSC_VER) && !defined(__clang__)) \ + || (defined(__ibmxl__) || defined(__IBMC__)) +# define C_DIALECT "90" +# else +# define C_DIALECT +# endif +#elif __STDC_VERSION__ >= 201000L +# define C_DIALECT "11" +#elif __STDC_VERSION__ >= 199901L +# define C_DIALECT "99" +#else +# define C_DIALECT "90" +#endif +const char* info_language_dialect_default = + "INFO" ":" "dialect_default[" C_DIALECT "]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +# if defined(__CLASSIC_C__) +int main(argc, argv) int argc; char *argv[]; +# else +int main(int argc, char* argv[]) +# endif +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; + require += info_arch[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdC/a.out b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdC/a.out new file mode 100755 index 0000000..f81a831 Binary files /dev/null and b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdC/a.out differ diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdCXX/CMakeCXXCompilerId.cpp b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..4761ea2 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,644 @@ +/* This source file must have a .cpp extension so that all C++ compilers + recognize the extension without flags. Borland does not know .cxx for + example. */ +#ifndef __cplusplus +# error "A C compiler has been selected for C++." +#endif + + +/* Version number components: V=Version, R=Revision, P=Patch + Version date components: YYYY=Year, MM=Month, DD=Day */ + +#if defined(__COMO__) +# define COMPILER_ID "Comeau" + /* __COMO_VERSION__ = VRR */ +# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) +# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) + +#elif defined(__INTEL_COMPILER) || defined(__ICC) +# define COMPILER_ID "Intel" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# if defined(__GNUC__) +# define SIMULATE_ID "GNU" +# endif + /* __INTEL_COMPILER = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) +# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) +# if defined(__INTEL_COMPILER_UPDATE) +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) +# else +# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) +# endif +# if defined(__INTEL_COMPILER_BUILD_DATE) + /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ +# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) +# endif +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# if defined(__GNUC__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) +# elif defined(__GNUG__) +# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(__PATHCC__) +# define COMPILER_ID "PathScale" +# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) +# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) +# if defined(__PATHCC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) +# endif + +#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) +# define COMPILER_ID "Embarcadero" +# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) +# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) +# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) + +#elif defined(__BORLANDC__) +# define COMPILER_ID "Borland" + /* __BORLANDC__ = 0xVRR */ +# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) +# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) + +#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 +# define COMPILER_ID "Watcom" + /* __WATCOMC__ = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__WATCOMC__) +# define COMPILER_ID "OpenWatcom" + /* __WATCOMC__ = VVRP + 1100 */ +# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) +# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) +# if (__WATCOMC__ % 10) > 0 +# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) +# endif + +#elif defined(__SUNPRO_CC) +# define COMPILER_ID "SunPro" +# if __SUNPRO_CC >= 0x5100 + /* __SUNPRO_CC = 0xVRRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# else + /* __SUNPRO_CC = 0xVRP */ +# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) +# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) +# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) +# endif + +#elif defined(__HP_aCC) +# define COMPILER_ID "HP" + /* __HP_aCC = VVRRPP */ +# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) +# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) +# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) + +#elif defined(__DECCXX) +# define COMPILER_ID "Compaq" + /* __DECCXX_VER = VVRRTPPPP */ +# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) +# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) +# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) + +#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) +# define COMPILER_ID "zOS" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__ibmxl__) && defined(__clang__) +# define COMPILER_ID "XLClang" +# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) +# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) +# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) +# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) + + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 +# define COMPILER_ID "XL" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 +# define COMPILER_ID "VisualAge" + /* __IBMCPP__ = VRP */ +# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) +# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) +# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) + +#elif defined(__PGI) +# define COMPILER_ID "PGI" +# define COMPILER_VERSION_MAJOR DEC(__PGIC__) +# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) +# if defined(__PGIC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) +# endif + +#elif defined(_CRAYC) +# define COMPILER_ID "Cray" +# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) +# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) + +#elif defined(__TI_COMPILER_VERSION__) +# define COMPILER_ID "TI" + /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ +# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) +# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) +# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) + +#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version) +# define COMPILER_ID "Fujitsu" + +#elif defined(__ghs__) +# define COMPILER_ID "GHS" +/* __GHS_VERSION_NUMBER = VVVVRP */ +# ifdef __GHS_VERSION_NUMBER +# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) +# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) +# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) +# endif + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#elif defined(__ARMCC_VERSION) && !defined(__clang__) +# define COMPILER_ID "ARMCC" +#if __ARMCC_VERSION >= 1000000 + /* __ARMCC_VERSION = VRRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#else + /* __ARMCC_VERSION = VRPPPP */ + # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) + # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) + # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) +#endif + + +#elif defined(__clang__) && defined(__apple_build_version__) +# define COMPILER_ID "AppleClang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif +# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) + +#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) +# define COMPILER_ID "ARMClang" + # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) + # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) + # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) +# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) + +#elif defined(__clang__) +# define COMPILER_ID "Clang" +# if defined(_MSC_VER) +# define SIMULATE_ID "MSVC" +# endif +# define COMPILER_VERSION_MAJOR DEC(__clang_major__) +# define COMPILER_VERSION_MINOR DEC(__clang_minor__) +# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) +# if defined(_MSC_VER) + /* _MSC_VER = VVRR */ +# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) +# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) +# endif + +#elif defined(__GNUC__) || defined(__GNUG__) +# define COMPILER_ID "GNU" +# if defined(__GNUC__) +# define COMPILER_VERSION_MAJOR DEC(__GNUC__) +# else +# define COMPILER_VERSION_MAJOR DEC(__GNUG__) +# endif +# if defined(__GNUC_MINOR__) +# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) +# endif +# if defined(__GNUC_PATCHLEVEL__) +# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) +# endif + +#elif defined(_MSC_VER) +# define COMPILER_ID "MSVC" + /* _MSC_VER = VVRR */ +# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) +# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) +# if defined(_MSC_FULL_VER) +# if _MSC_VER >= 1400 + /* _MSC_FULL_VER = VVRRPPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) +# else + /* _MSC_FULL_VER = VVRRPPPP */ +# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) +# endif +# endif +# if defined(_MSC_BUILD) +# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) +# endif + +#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__) +# define COMPILER_ID "ADSP" +#if defined(__VISUALDSPVERSION__) + /* __VISUALDSPVERSION__ = 0xVVRRPP00 */ +# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24) +# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF) +# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF) +#endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# define COMPILER_ID "IAR" +# if defined(__VER__) && defined(__ICCARM__) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) +# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) +# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__)) +# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) +# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) +# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) +# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) +# endif + + +/* These compilers are either not known or too old to define an + identification macro. Try to identify the platform and guess that + it is the native compiler. */ +#elif defined(__hpux) || defined(__hpua) +# define COMPILER_ID "HP" + +#else /* unknown compiler */ +# define COMPILER_ID "" +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; +#ifdef SIMULATE_ID +char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; +#endif + +#ifdef __QNXNTO__ +char const* qnxnto = "INFO" ":" "qnxnto[]"; +#endif + +#if defined(__CRAYXE) || defined(__CRAYXC) +char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; +#endif + +#define STRINGIFY_HELPER(X) #X +#define STRINGIFY(X) STRINGIFY_HELPER(X) + +/* Identify known platforms by name. */ +#if defined(__linux) || defined(__linux__) || defined(linux) +# define PLATFORM_ID "Linux" + +#elif defined(__CYGWIN__) +# define PLATFORM_ID "Cygwin" + +#elif defined(__MINGW32__) +# define PLATFORM_ID "MinGW" + +#elif defined(__APPLE__) +# define PLATFORM_ID "Darwin" + +#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) +# define PLATFORM_ID "Windows" + +#elif defined(__FreeBSD__) || defined(__FreeBSD) +# define PLATFORM_ID "FreeBSD" + +#elif defined(__NetBSD__) || defined(__NetBSD) +# define PLATFORM_ID "NetBSD" + +#elif defined(__OpenBSD__) || defined(__OPENBSD) +# define PLATFORM_ID "OpenBSD" + +#elif defined(__sun) || defined(sun) +# define PLATFORM_ID "SunOS" + +#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) +# define PLATFORM_ID "AIX" + +#elif defined(__hpux) || defined(__hpux__) +# define PLATFORM_ID "HP-UX" + +#elif defined(__HAIKU__) +# define PLATFORM_ID "Haiku" + +#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) +# define PLATFORM_ID "BeOS" + +#elif defined(__QNX__) || defined(__QNXNTO__) +# define PLATFORM_ID "QNX" + +#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) +# define PLATFORM_ID "Tru64" + +#elif defined(__riscos) || defined(__riscos__) +# define PLATFORM_ID "RISCos" + +#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) +# define PLATFORM_ID "SINIX" + +#elif defined(__UNIX_SV__) +# define PLATFORM_ID "UNIX_SV" + +#elif defined(__bsdos__) +# define PLATFORM_ID "BSDOS" + +#elif defined(_MPRAS) || defined(MPRAS) +# define PLATFORM_ID "MP-RAS" + +#elif defined(__osf) || defined(__osf__) +# define PLATFORM_ID "OSF1" + +#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) +# define PLATFORM_ID "SCO_SV" + +#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) +# define PLATFORM_ID "ULTRIX" + +#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) +# define PLATFORM_ID "Xenix" + +#elif defined(__WATCOMC__) +# if defined(__LINUX__) +# define PLATFORM_ID "Linux" + +# elif defined(__DOS__) +# define PLATFORM_ID "DOS" + +# elif defined(__OS2__) +# define PLATFORM_ID "OS2" + +# elif defined(__WINDOWS__) +# define PLATFORM_ID "Windows3x" + +# else /* unknown platform */ +# define PLATFORM_ID +# endif + +#elif defined(__INTEGRITY) +# if defined(INT_178B) +# define PLATFORM_ID "Integrity178" + +# else /* regular Integrity */ +# define PLATFORM_ID "Integrity" +# endif + +#else /* unknown platform */ +# define PLATFORM_ID + +#endif + +/* For windows compilers MSVC and Intel we can determine + the architecture of the compiler being used. This is because + the compilers do not have flags that can change the architecture, + but rather depend on which compiler is being used +*/ +#if defined(_WIN32) && defined(_MSC_VER) +# if defined(_M_IA64) +# define ARCHITECTURE_ID "IA64" + +# elif defined(_M_X64) || defined(_M_AMD64) +# define ARCHITECTURE_ID "x64" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# elif defined(_M_ARM64) +# define ARCHITECTURE_ID "ARM64" + +# elif defined(_M_ARM) +# if _M_ARM == 4 +# define ARCHITECTURE_ID "ARMV4I" +# elif _M_ARM == 5 +# define ARCHITECTURE_ID "ARMV5I" +# else +# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) +# endif + +# elif defined(_M_MIPS) +# define ARCHITECTURE_ID "MIPS" + +# elif defined(_M_SH) +# define ARCHITECTURE_ID "SHx" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__WATCOMC__) +# if defined(_M_I86) +# define ARCHITECTURE_ID "I86" + +# elif defined(_M_IX86) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) +# if defined(__ICCARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__ICCRX__) +# define ARCHITECTURE_ID "RX" + +# elif defined(__ICCRH850__) +# define ARCHITECTURE_ID "RH850" + +# elif defined(__ICCRL78__) +# define ARCHITECTURE_ID "RL78" + +# elif defined(__ICCRISCV__) +# define ARCHITECTURE_ID "RISCV" + +# elif defined(__ICCAVR__) +# define ARCHITECTURE_ID "AVR" + +# elif defined(__ICC430__) +# define ARCHITECTURE_ID "MSP430" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif + +#elif defined(__ghs__) +# if defined(__PPC64__) +# define ARCHITECTURE_ID "PPC64" + +# elif defined(__ppc__) +# define ARCHITECTURE_ID "PPC" + +# elif defined(__ARM__) +# define ARCHITECTURE_ID "ARM" + +# elif defined(__x86_64__) +# define ARCHITECTURE_ID "x64" + +# elif defined(__i386__) +# define ARCHITECTURE_ID "X86" + +# else /* unknown architecture */ +# define ARCHITECTURE_ID "" +# endif +#else +# define ARCHITECTURE_ID +#endif + +/* Convert integer to decimal digit literals. */ +#define DEC(n) \ + ('0' + (((n) / 10000000)%10)), \ + ('0' + (((n) / 1000000)%10)), \ + ('0' + (((n) / 100000)%10)), \ + ('0' + (((n) / 10000)%10)), \ + ('0' + (((n) / 1000)%10)), \ + ('0' + (((n) / 100)%10)), \ + ('0' + (((n) / 10)%10)), \ + ('0' + ((n) % 10)) + +/* Convert integer to hex digit literals. */ +#define HEX(n) \ + ('0' + ((n)>>28 & 0xF)), \ + ('0' + ((n)>>24 & 0xF)), \ + ('0' + ((n)>>20 & 0xF)), \ + ('0' + ((n)>>16 & 0xF)), \ + ('0' + ((n)>>12 & 0xF)), \ + ('0' + ((n)>>8 & 0xF)), \ + ('0' + ((n)>>4 & 0xF)), \ + ('0' + ((n) & 0xF)) + +/* Construct a string literal encoding the version number components. */ +#ifdef COMPILER_VERSION_MAJOR +char const info_version[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', + COMPILER_VERSION_MAJOR, +# ifdef COMPILER_VERSION_MINOR + '.', COMPILER_VERSION_MINOR, +# ifdef COMPILER_VERSION_PATCH + '.', COMPILER_VERSION_PATCH, +# ifdef COMPILER_VERSION_TWEAK + '.', COMPILER_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct a string literal encoding the internal version number. */ +#ifdef COMPILER_VERSION_INTERNAL +char const info_version_internal[] = { + 'I', 'N', 'F', 'O', ':', + 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', + 'i','n','t','e','r','n','a','l','[', + COMPILER_VERSION_INTERNAL,']','\0'}; +#endif + +/* Construct a string literal encoding the version number components. */ +#ifdef SIMULATE_VERSION_MAJOR +char const info_simulate_version[] = { + 'I', 'N', 'F', 'O', ':', + 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', + SIMULATE_VERSION_MAJOR, +# ifdef SIMULATE_VERSION_MINOR + '.', SIMULATE_VERSION_MINOR, +# ifdef SIMULATE_VERSION_PATCH + '.', SIMULATE_VERSION_PATCH, +# ifdef SIMULATE_VERSION_TWEAK + '.', SIMULATE_VERSION_TWEAK, +# endif +# endif +# endif + ']','\0'}; +#endif + +/* Construct the string literal in pieces to prevent the source from + getting matched. Store it in a pointer rather than an array + because some compilers will just produce instructions to fill the + array rather than assigning a pointer to a static array. */ +char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; +char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; + + + + +#if defined(_MSC_VER) && defined(_MSVC_LANG) +#define CXX_STD _MSVC_LANG +#else +#define CXX_STD __cplusplus +#endif + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if CXX_STD > 201703L + "20" +#elif CXX_STD >= 201703L + "17" +#elif CXX_STD >= 201402L + "14" +#elif CXX_STD >= 201103L + "11" +#else + "98" +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +int main(int argc, char* argv[]) +{ + int require = 0; + require += info_compiler[argc]; + require += info_platform[argc]; +#ifdef COMPILER_VERSION_MAJOR + require += info_version[argc]; +#endif +#ifdef COMPILER_VERSION_INTERNAL + require += info_version_internal[argc]; +#endif +#ifdef SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdCXX/a.out b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdCXX/a.out new file mode 100755 index 0000000..7ce2802 Binary files /dev/null and b/superpower19classifier-zjx/build/CMakeFiles/3.15.0/CompilerIdCXX/a.out differ diff --git a/superpower19classifier-zjx/build/CMakeFiles/CMakeDirectoryInformation.cmake b/superpower19classifier-zjx/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..8697992 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/zhoujiaxuan/superpower19classifier-master") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/zhoujiaxuan/superpower19classifier-master/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/superpower19classifier-zjx/build/CMakeFiles/CMakeOutput.log b/superpower19classifier-zjx/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..b0a0b47 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,467 @@ +The system is: Linux - 5.0.0-31-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/3.15.0/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/3.15.0/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_2f63f/fast && /usr/bin/make -f CMakeFiles/cmTC_2f63f.dir/build.make CMakeFiles/cmTC_2f63f.dir/build +make[1]: 进入目录“/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp” +Building C object CMakeFiles/cmTC_2f63f.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_2f63f.dir/testCCompiler.c.o -c /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_2f63f +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2f63f.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_2f63f.dir/testCCompiler.c.o -o cmTC_2f63f +make[1]: 离开目录“/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp” + + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_db626/fast && /usr/bin/make -f CMakeFiles/cmTC_db626.dir/build.make CMakeFiles/cmTC_db626.dir/build +make[1]: Entering directory '/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -v -o CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.15/Modules/CMakeCCompilerABI.c +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-3.15/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccGfk7Vk.s +GNU C11 (Ubuntu 7.4.0-1ubuntu1~18.04.1) version 7.4.0 (x86_64-linux-gnu) + compiled by GNU C version 7.4.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/lib/gcc/x86_64-linux-gnu/7/include + /usr/local/include + /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C11 (Ubuntu 7.4.0-1ubuntu1~18.04.1) version 7.4.0 (x86_64-linux-gnu) + compiled by GNU C version 7.4.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: fa57db1fe2d756b22d454aa8428fd3bd +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o /tmp/ccGfk7Vk.s +GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' +Linking C executable cmTC_db626 +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_db626.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o -o cmTC_db626 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_db626' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdLYzKj.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_db626 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_db626' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp' + + + +Parsed C implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/lib/gcc/x86_64-linux-gnu/7/include] + add: [/usr/local/include] + add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include] + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_db626/fast && /usr/bin/make -f CMakeFiles/cmTC_db626.dir/build.make CMakeFiles/cmTC_db626.dir/build] + ignore line: [make[1]: Entering directory '/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o -c /usr/local/share/cmake-3.15/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/local/share/cmake-3.15/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccGfk7Vk.s] + ignore line: [GNU C11 (Ubuntu 7.4.0-1ubuntu1~18.04.1) version 7.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 7.4.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C11 (Ubuntu 7.4.0-1ubuntu1~18.04.1) version 7.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 7.4.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: fa57db1fe2d756b22d454aa8428fd3bd] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o /tmp/ccGfk7Vk.s] + ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking C executable cmTC_db626] + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_db626.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o -o cmTC_db626 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_db626' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccdLYzKj.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_db626 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccdLYzKj.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_db626] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_db626.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--push-state] ==> ignore + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--pop-state] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [gcc;gcc_s;c;gcc;gcc_s] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_820e7/fast && /usr/bin/make -f CMakeFiles/cmTC_820e7.dir/build.make CMakeFiles/cmTC_820e7.dir/build +make[1]: 进入目录“/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp” +Building CXX object CMakeFiles/cmTC_820e7.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_820e7.dir/testCXXCompiler.cxx.o -c /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_820e7 +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_820e7.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_820e7.dir/testCXXCompiler.cxx.o -o cmTC_820e7 +make[1]: 离开目录“/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp” + + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp + +Run Build Command(s):/usr/bin/make cmTC_783ef/fast && /usr/bin/make -f CMakeFiles/cmTC_783ef.dir/build.make CMakeFiles/cmTC_783ef.dir/build +make[1]: Entering directory '/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -v -o CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccCLjWly.s +GNU C++14 (Ubuntu 7.4.0-1ubuntu1~18.04.1) version 7.4.0 (x86_64-linux-gnu) + compiled by GNU C version 7.4.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7" +ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" +ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" +#include "..." search starts here: +#include <...> search starts here: + /usr/include/c++/7 + /usr/include/x86_64-linux-gnu/c++/7 + /usr/include/c++/7/backward + /usr/lib/gcc/x86_64-linux-gnu/7/include + /usr/local/include + /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed + /usr/include/x86_64-linux-gnu + /usr/include +End of search list. +GNU C++14 (Ubuntu 7.4.0-1ubuntu1~18.04.1) version 7.4.0 (x86_64-linux-gnu) + compiled by GNU C version 7.4.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP + +GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 +Compiler executable checksum: 38816e3807cdcb3c59571e251bd6c090 +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + as -v --64 -o CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccCLjWly.s +GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +Linking CXX executable cmTC_783ef +/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_783ef.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_783ef +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper +OFFLOAD_TARGET_NAMES=nvptx-none +OFFLOAD_TARGET_DEFAULT=1 +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_783ef' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cctw5FDB.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_783ef /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_783ef' '-shared-libgcc' '-mtune=generic' '-march=x86-64' +make[1]: Leaving directory '/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp' + + + +Parsed CXX implicit include dir info from above output: rv=done + found start of include info + found start of implicit include info + add: [/usr/include/c++/7] + add: [/usr/include/x86_64-linux-gnu/c++/7] + add: [/usr/include/c++/7/backward] + add: [/usr/lib/gcc/x86_64-linux-gnu/7/include] + add: [/usr/local/include] + add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] + add: [/usr/include/x86_64-linux-gnu] + add: [/usr/include] + end of search list found + collapse include dir [/usr/include/c++/7] ==> [/usr/include/c++/7] + collapse include dir [/usr/include/x86_64-linux-gnu/c++/7] ==> [/usr/include/x86_64-linux-gnu/c++/7] + collapse include dir [/usr/include/c++/7/backward] ==> [/usr/include/c++/7/backward] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include] + collapse include dir [/usr/local/include] ==> [/usr/local/include] + collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] + collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] + collapse include dir [/usr/include] ==> [/usr/include] + implicit include dirs: [/usr/include/c++/7;/usr/include/x86_64-linux-gnu/c++/7;/usr/include/c++/7/backward;/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include] + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command(s):/usr/bin/make cmTC_783ef/fast && /usr/bin/make -f CMakeFiles/cmTC_783ef.dir/build.make CMakeFiles/cmTC_783ef.dir/build] + ignore line: [make[1]: Entering directory '/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -v -o CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o -c /usr/local/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) ] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /usr/local/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccCLjWly.s] + ignore line: [GNU C++14 (Ubuntu 7.4.0-1ubuntu1~18.04.1) version 7.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 7.4.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"] + ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] + ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ /usr/include/c++/7] + ignore line: [ /usr/include/x86_64-linux-gnu/c++/7] + ignore line: [ /usr/include/c++/7/backward] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] + ignore line: [ /usr/local/include] + ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] + ignore line: [ /usr/include/x86_64-linux-gnu] + ignore line: [ /usr/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (Ubuntu 7.4.0-1ubuntu1~18.04.1) version 7.4.0 (x86_64-linux-gnu)] + ignore line: [ compiled by GNU C version 7.4.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: 38816e3807cdcb3c59571e251bd6c090] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [ as -v --64 -o CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccCLjWly.s] + ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + ignore line: [Linking CXX executable cmTC_783ef] + ignore line: [/usr/local/bin/cmake -E cmake_link_script CMakeFiles/cmTC_783ef.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_783ef ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] + ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] + ignore line: [OFFLOAD_TARGET_DEFAULT=1] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_783ef' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cctw5FDB.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_783ef /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cctw5FDB.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-pie] ==> ignore + arg [-znow] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_783ef] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] + arg [CMakeFiles/cmTC_783ef.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> ignore + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + diff --git a/superpower19classifier-zjx/build/CMakeFiles/Makefile.cmake b/superpower19classifier-zjx/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..5e815c5 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,126 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "CMakeFiles/3.15.0/CMakeCCompiler.cmake" + "CMakeFiles/3.15.0/CMakeCXXCompiler.cmake" + "CMakeFiles/3.15.0/CMakeSystem.cmake" + "/usr/local/lib/cmake/opencv4/OpenCVConfig-version.cmake" + "/usr/local/lib/cmake/opencv4/OpenCVConfig.cmake" + "/usr/local/lib/cmake/opencv4/OpenCVModules-release.cmake" + "/usr/local/lib/cmake/opencv4/OpenCVModules.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeCCompiler.cmake.in" + "/usr/local/share/cmake-3.15/Modules/CMakeCCompilerABI.c" + "/usr/local/share/cmake-3.15/Modules/CMakeCInformation.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeCXXCompiler.cmake.in" + "/usr/local/share/cmake-3.15/Modules/CMakeCXXCompilerABI.cpp" + "/usr/local/share/cmake-3.15/Modules/CMakeCXXInformation.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeCompilerIdDetection.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeDetermineCCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeDetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeDetermineCompilerId.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeDetermineSystem.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeFindBinUtils.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeGenericSystem.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeInitializeConfigs.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeLanguageInformation.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeParseImplicitIncludeInfo.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeSystem.cmake.in" + "/usr/local/share/cmake-3.15/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeTestCCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeTestCXXCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeTestCompilerCommon.cmake" + "/usr/local/share/cmake-3.15/Modules/CMakeUnixFindMake.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/ARMClang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/CMakeCommonCompilerMacros.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/GNU-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/GNU-C.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/GNU-CXX.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/GNU-FindBinUtils.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/GNU.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/local/share/cmake-3.15/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/local/share/cmake-3.15/Modules/FindPackageMessage.cmake" + "/usr/local/share/cmake-3.15/Modules/Internal/CMakeCheckCompilerFlag.cmake" + "/usr/local/share/cmake-3.15/Modules/Internal/FeatureTesting.cmake" + "/usr/local/share/cmake-3.15/Modules/Platform/Linux-Determine-CXX.cmake" + "/usr/local/share/cmake-3.15/Modules/Platform/Linux-GNU-C.cmake" + "/usr/local/share/cmake-3.15/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/local/share/cmake-3.15/Modules/Platform/Linux-GNU.cmake" + "/usr/local/share/cmake-3.15/Modules/Platform/Linux.cmake" + "/usr/local/share/cmake-3.15/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.15.0/CMakeSystem.cmake" + "CMakeFiles/3.15.0/CMakeCCompiler.cmake" + "CMakeFiles/3.15.0/CMakeCXXCompiler.cmake" + "CMakeFiles/3.15.0/CMakeCCompiler.cmake" + "CMakeFiles/3.15.0/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/SP19CLASSIFIER_TEST.dir/DependInfo.cmake" + ) diff --git a/superpower19classifier-zjx/build/CMakeFiles/Makefile2 b/superpower19classifier-zjx/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..f23e07c --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/Makefile2 @@ -0,0 +1,106 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhoujiaxuan/superpower19classifier-master + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhoujiaxuan/superpower19classifier-master/build + +#============================================================================= +# Directory level rules for the build root directory + +# The main recursive "all" target. +all: CMakeFiles/SP19CLASSIFIER_TEST.dir/all + +.PHONY : all + +# The main recursive "clean" target. +clean: CMakeFiles/SP19CLASSIFIER_TEST.dir/clean + +.PHONY : clean + +# The main recursive "preinstall" target. +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Target rules for target CMakeFiles/SP19CLASSIFIER_TEST.dir + +# All Build rule for target. +CMakeFiles/SP19CLASSIFIER_TEST.dir/all: + $(MAKE) -f CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make CMakeFiles/SP19CLASSIFIER_TEST.dir/depend + $(MAKE) -f CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make CMakeFiles/SP19CLASSIFIER_TEST.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles --progress-num=1,2 "Built target SP19CLASSIFIER_TEST" +.PHONY : CMakeFiles/SP19CLASSIFIER_TEST.dir/all + +# Build rule for subdir invocation for target. +CMakeFiles/SP19CLASSIFIER_TEST.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/SP19CLASSIFIER_TEST.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles 0 +.PHONY : CMakeFiles/SP19CLASSIFIER_TEST.dir/rule + +# Convenience name for target. +SP19CLASSIFIER_TEST: CMakeFiles/SP19CLASSIFIER_TEST.dir/rule + +.PHONY : SP19CLASSIFIER_TEST + +# clean rule for target. +CMakeFiles/SP19CLASSIFIER_TEST.dir/clean: + $(MAKE) -f CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make CMakeFiles/SP19CLASSIFIER_TEST.dir/clean +.PHONY : CMakeFiles/SP19CLASSIFIER_TEST.dir/clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/CXX.includecache b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/CXX.includecache new file mode 100644 index 0000000..410bf21 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/CXX.includecache @@ -0,0 +1,1048 @@ +#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/zhoujiaxuan/superpower19classifier-master/classifier.hpp +string +- +vector +- +utility +- +iostream +- +opencv2/opencv.hpp +- +dirent.h +- + +/home/zhoujiaxuan/superpower19classifier-master/test.cpp +chrono +- +future +- +classifier.hpp +/home/zhoujiaxuan/superpower19classifier-master/classifier.hpp + +/usr/local/include/opencv4/opencv2/calib3d.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv4/opencv2/opencv2/features2d.hpp +opencv2/core/affine.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/affine.hpp + +/usr/local/include/opencv4/opencv2/core.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/opencv2/core/cvdef.h +opencv2/core/version.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/version.hpp +opencv2/core/base.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/base.hpp +opencv2/core/cvstd.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/cvstd.hpp +opencv2/core/traits.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/traits.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/matx.hpp +opencv2/core/types.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/types.hpp +opencv2/core/mat.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/mat.hpp +opencv2/core/persistence.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/persistence.hpp +opencv2/core/operations.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/operations.hpp +opencv2/core/cvstd.inl.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/cvstd.inl.hpp +opencv2/core/utility.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/utility.hpp +opencv2/core/optim.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/optim.hpp +opencv2/core/ovx.hpp +/usr/local/include/opencv4/opencv2/opencv2/core/ovx.hpp + +/usr/local/include/opencv4/opencv2/core/affine.hpp +opencv2/core.hpp +- + +/usr/local/include/opencv4/opencv2/core/base.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/opencv_modules.hpp +climits +- +algorithm +- +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h +opencv2/core/cvstd.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvstd.hpp +opencv2/core/neon_utils.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/neon_utils.hpp +opencv2/core/vsx_utils.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/vsx_utils.hpp +opencv2/core/check.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/check.hpp + +/usr/local/include/opencv4/opencv2/core/bufferpool.hpp + +/usr/local/include/opencv4/opencv2/core/check.hpp +opencv2/core/base.hpp +- + +/usr/local/include/opencv4/opencv2/core/cuda.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core.hpp +opencv2/core/cuda_types.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/cuda_types.hpp +opencv2/opencv.hpp +- +opencv2/core/cuda.inl.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/cuda.inl.hpp + +/usr/local/include/opencv4/opencv2/core/cuda.inl.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/cuda.hpp + +/usr/local/include/opencv4/opencv2/core/cuda_types.hpp + +/usr/local/include/opencv4/opencv2/core/cv_cpu_dispatch.h +cv_cpu_config.h +/usr/local/include/opencv4/opencv2/core/cv_cpu_config.h +cv_cpu_helper.h +/usr/local/include/opencv4/opencv2/core/cv_cpu_helper.h +emmintrin.h +- +pmmintrin.h +- +tmmintrin.h +- +smmintrin.h +- +nmmintrin.h +- +nmmintrin.h +- +popcntintrin.h +- +immintrin.h +- +arm_neon.h +- +immintrin.h +- +immintrin.h +- +immintrin.h +- +immintrin.h +- +Intrin.h +- +arm_neon.h +- +arm_neon.h +- +arm_neon.h +- +altivec.h +- +emmintrin.h +- +Intrin.h +- +arm_neon.h +- +arm_neon.h +- +altivec.h +- + +/usr/local/include/opencv4/opencv2/core/cv_cpu_helper.h + +/usr/local/include/opencv4/opencv2/core/cvdef.h +cvconfig.h +/usr/local/include/opencv4/opencv2/core/cvconfig.h +limits.h +- +opencv2/core/hal/interface.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/hal/interface.h +cv_cpu_dispatch.h +/usr/local/include/opencv4/opencv2/core/cv_cpu_dispatch.h +intrin.h +- +array +- +cstdint +- +stdint.h +- +stdint.h +- +opencv2/core/fast_math.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/fast_math.hpp + +/usr/local/include/opencv4/opencv2/core/cvstd.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h +cstddef +- +cstring +- +cctype +- +string +- +algorithm +- +utility +- +cstdlib +- +cmath +- +cvstd_wrapper.hpp +/usr/local/include/opencv4/opencv2/core/cvstd_wrapper.hpp + +/usr/local/include/opencv4/opencv2/core/cvstd.inl.hpp +complex +- +ostream +- + +/usr/local/include/opencv4/opencv2/core/cvstd_wrapper.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h +string +- +memory +- +type_traits +- + +/usr/local/include/opencv4/opencv2/core/fast_math.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h +emmintrin.h +- +cmath +- +fastmath.h +- +math.h +- + +/usr/local/include/opencv4/opencv2/core/hal/interface.h +cstddef +- +stddef.h +- +stdbool.h +- +cstdint +- +stdint.h +- + +/usr/local/include/opencv4/opencv2/core/mat.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/matx.hpp +opencv2/core/types.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/types.hpp +opencv2/core/bufferpool.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/bufferpool.hpp +type_traits +- +opencv2/core/mat.inl.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/mat.inl.hpp + +/usr/local/include/opencv4/opencv2/core/mat.inl.hpp + +/usr/local/include/opencv4/opencv2/core/matx.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h +opencv2/core/base.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/base.hpp +opencv2/core/traits.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/traits.hpp +opencv2/core/saturate.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/saturate.hpp +initializer_list +- + +/usr/local/include/opencv4/opencv2/core/neon_utils.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h + +/usr/local/include/opencv4/opencv2/core/operations.hpp +cstdio +- + +/usr/local/include/opencv4/opencv2/core/optim.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core.hpp + +/usr/local/include/opencv4/opencv2/core/ovx.hpp +cvdef.h +/usr/local/include/opencv4/opencv2/core/cvdef.h + +/usr/local/include/opencv4/opencv2/core/persistence.hpp +opencv2/core/types.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/types.hpp +opencv2/core/mat.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/mat.hpp +opencv2/opencv.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/opencv.hpp +time.h +- + +/usr/local/include/opencv4/opencv2/core/saturate.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h +opencv2/core/fast_math.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/fast_math.hpp + +/usr/local/include/opencv4/opencv2/core/traits.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h + +/usr/local/include/opencv4/opencv2/core/types.hpp +climits +- +cfloat +- +vector +- +limits +- +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h +opencv2/core/cvstd.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvstd.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core/matx.hpp + +/usr/local/include/opencv4/opencv2/core/utility.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/core/opencv2/core.hpp +ostream +- +functional +- +mutex +- + +/usr/local/include/opencv4/opencv2/core/version.hpp + +/usr/local/include/opencv4/opencv2/core/vsx_utils.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv4/opencv2/core/opencv2/core/cvdef.h +assert.h +- + +/usr/local/include/opencv4/opencv2/dnn.hpp +opencv2/dnn/dnn.hpp +- + +/usr/local/include/opencv4/opencv2/dnn/dict.hpp +opencv2/core.hpp +- +map +- +ostream +- +opencv2/dnn/dnn.hpp +- + +/usr/local/include/opencv4/opencv2/dnn/dnn.hpp +vector +- +opencv2/core.hpp +- +../dnn/version.hpp +/usr/local/include/opencv4/opencv2/dnn/version.hpp +opencv2/dnn/dict.hpp +- +opencv2/dnn/layer.hpp +- +opencv2/dnn/dnn.inl.hpp +- + +/usr/local/include/opencv4/opencv2/dnn/dnn.inl.hpp +opencv2/dnn.hpp +- + +/usr/local/include/opencv4/opencv2/dnn/layer.hpp +opencv2/dnn.hpp +- + +/usr/local/include/opencv4/opencv2/dnn/version.hpp + +/usr/local/include/opencv4/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv4/opencv2/opencv2/opencv_modules.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +opencv2/flann/miniflann.hpp +/usr/local/include/opencv4/opencv2/opencv2/flann/miniflann.hpp + +/usr/local/include/opencv4/opencv2/flann.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +opencv2/flann/miniflann.hpp +/usr/local/include/opencv4/opencv2/opencv2/flann/miniflann.hpp +opencv2/flann/flann_base.hpp +/usr/local/include/opencv4/opencv2/opencv2/flann/flann_base.hpp + +/usr/local/include/opencv4/opencv2/flann/all_indices.h +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +kdtree_index.h +/usr/local/include/opencv4/opencv2/flann/kdtree_index.h +kdtree_single_index.h +/usr/local/include/opencv4/opencv2/flann/kdtree_single_index.h +kmeans_index.h +/usr/local/include/opencv4/opencv2/flann/kmeans_index.h +composite_index.h +/usr/local/include/opencv4/opencv2/flann/composite_index.h +linear_index.h +/usr/local/include/opencv4/opencv2/flann/linear_index.h +hierarchical_clustering_index.h +/usr/local/include/opencv4/opencv2/flann/hierarchical_clustering_index.h +lsh_index.h +/usr/local/include/opencv4/opencv2/flann/lsh_index.h +autotuned_index.h +/usr/local/include/opencv4/opencv2/flann/autotuned_index.h + +/usr/local/include/opencv4/opencv2/flann/allocator.h +stdlib.h +- +stdio.h +- + +/usr/local/include/opencv4/opencv2/flann/any.h +defines.h +/usr/local/include/opencv4/opencv2/flann/defines.h +stdexcept +- +ostream +- +typeinfo +- + +/usr/local/include/opencv4/opencv2/flann/autotuned_index.h +sstream +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +ground_truth.h +/usr/local/include/opencv4/opencv2/flann/ground_truth.h +index_testing.h +/usr/local/include/opencv4/opencv2/flann/index_testing.h +sampling.h +/usr/local/include/opencv4/opencv2/flann/sampling.h +kdtree_index.h +/usr/local/include/opencv4/opencv2/flann/kdtree_index.h +kdtree_single_index.h +/usr/local/include/opencv4/opencv2/flann/kdtree_single_index.h +kmeans_index.h +/usr/local/include/opencv4/opencv2/flann/kmeans_index.h +composite_index.h +/usr/local/include/opencv4/opencv2/flann/composite_index.h +linear_index.h +/usr/local/include/opencv4/opencv2/flann/linear_index.h +logger.h +/usr/local/include/opencv4/opencv2/flann/logger.h + +/usr/local/include/opencv4/opencv2/flann/composite_index.h +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +kdtree_index.h +/usr/local/include/opencv4/opencv2/flann/kdtree_index.h +kmeans_index.h +/usr/local/include/opencv4/opencv2/flann/kmeans_index.h + +/usr/local/include/opencv4/opencv2/flann/config.h + +/usr/local/include/opencv4/opencv2/flann/defines.h +config.h +/usr/local/include/opencv4/opencv2/flann/config.h + +/usr/local/include/opencv4/opencv2/flann/dist.h +cmath +- +cstdlib +- +string.h +- +stdint.h +- +defines.h +/usr/local/include/opencv4/opencv2/flann/defines.h +Intrin.h +- +arm_neon.h +/usr/local/include/opencv4/opencv2/flann/arm_neon.h + +/usr/local/include/opencv4/opencv2/flann/dynamic_bitset.h +boost/dynamic_bitset.hpp +- +limits.h +- +dist.h +/usr/local/include/opencv4/opencv2/flann/dist.h + +/usr/local/include/opencv4/opencv2/flann/flann_base.hpp +vector +- +cassert +- +cstdio +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +params.h +/usr/local/include/opencv4/opencv2/flann/params.h +saving.h +/usr/local/include/opencv4/opencv2/flann/saving.h +all_indices.h +/usr/local/include/opencv4/opencv2/flann/all_indices.h + +/usr/local/include/opencv4/opencv2/flann/general.h +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/flann/opencv2/core.hpp + +/usr/local/include/opencv4/opencv2/flann/ground_truth.h +dist.h +/usr/local/include/opencv4/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h + +/usr/local/include/opencv4/opencv2/flann/heap.h +algorithm +- +vector +- + +/usr/local/include/opencv4/opencv2/flann/hierarchical_clustering_index.h +algorithm +- +map +- +cassert +- +limits +- +cmath +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +dist.h +/usr/local/include/opencv4/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv4/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv4/opencv2/flann/random.h +saving.h +/usr/local/include/opencv4/opencv2/flann/saving.h + +/usr/local/include/opencv4/opencv2/flann/index_testing.h +cstring +- +cassert +- +cmath +- +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +result_set.h +/usr/local/include/opencv4/opencv2/flann/result_set.h +logger.h +/usr/local/include/opencv4/opencv2/flann/logger.h +timer.h +/usr/local/include/opencv4/opencv2/flann/timer.h + +/usr/local/include/opencv4/opencv2/flann/kdtree_index.h +algorithm +- +map +- +cassert +- +cstring +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +dynamic_bitset.h +/usr/local/include/opencv4/opencv2/flann/dynamic_bitset.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv4/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv4/opencv2/flann/random.h +saving.h +/usr/local/include/opencv4/opencv2/flann/saving.h + +/usr/local/include/opencv4/opencv2/flann/kdtree_single_index.h +algorithm +- +map +- +cassert +- +cstring +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv4/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv4/opencv2/flann/random.h +saving.h +/usr/local/include/opencv4/opencv2/flann/saving.h + +/usr/local/include/opencv4/opencv2/flann/kmeans_index.h +algorithm +- +map +- +cassert +- +limits +- +cmath +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +dist.h +/usr/local/include/opencv4/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv4/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv4/opencv2/flann/random.h +saving.h +/usr/local/include/opencv4/opencv2/flann/saving.h +logger.h +/usr/local/include/opencv4/opencv2/flann/logger.h + +/usr/local/include/opencv4/opencv2/flann/linear_index.h +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h + +/usr/local/include/opencv4/opencv2/flann/logger.h +stdio.h +- +stdarg.h +- +defines.h +/usr/local/include/opencv4/opencv2/flann/defines.h + +/usr/local/include/opencv4/opencv2/flann/lsh_index.h +algorithm +- +cassert +- +cstring +- +map +- +vector +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv4/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv4/opencv2/flann/heap.h +lsh_table.h +/usr/local/include/opencv4/opencv2/flann/lsh_table.h +allocator.h +/usr/local/include/opencv4/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv4/opencv2/flann/random.h +saving.h +/usr/local/include/opencv4/opencv2/flann/saving.h + +/usr/local/include/opencv4/opencv2/flann/lsh_table.h +algorithm +- +iostream +- +iomanip +- +limits.h +- +unordered_map +- +map +- +math.h +- +stddef.h +- +dynamic_bitset.h +/usr/local/include/opencv4/opencv2/flann/dynamic_bitset.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h + +/usr/local/include/opencv4/opencv2/flann/matrix.h +stdio.h +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h + +/usr/local/include/opencv4/opencv2/flann/miniflann.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/flann/opencv2/core.hpp +opencv2/flann/defines.h +/usr/local/include/opencv4/opencv2/flann/opencv2/flann/defines.h + +/usr/local/include/opencv4/opencv2/flann/nn_index.h +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv4/opencv2/flann/result_set.h +params.h +/usr/local/include/opencv4/opencv2/flann/params.h + +/usr/local/include/opencv4/opencv2/flann/params.h +any.h +/usr/local/include/opencv4/opencv2/flann/any.h +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +iostream +- +map +- + +/usr/local/include/opencv4/opencv2/flann/random.h +algorithm +- +cstdlib +- +vector +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h + +/usr/local/include/opencv4/opencv2/flann/result_set.h +algorithm +- +cstring +- +iostream +- +limits +- +set +- +vector +- + +/usr/local/include/opencv4/opencv2/flann/sampling.h +matrix.h +/usr/local/include/opencv4/opencv2/flann/matrix.h +random.h +/usr/local/include/opencv4/opencv2/flann/random.h + +/usr/local/include/opencv4/opencv2/flann/saving.h +cstring +- +vector +- +general.h +/usr/local/include/opencv4/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv4/opencv2/flann/nn_index.h + +/usr/local/include/opencv4/opencv2/flann/timer.h +time.h +- +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/flann/opencv2/core.hpp +opencv2/core/utility.hpp +/usr/local/include/opencv4/opencv2/flann/opencv2/core/utility.hpp + +/usr/local/include/opencv4/opencv2/highgui.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +opencv2/imgcodecs.hpp +/usr/local/include/opencv4/opencv2/opencv2/imgcodecs.hpp +opencv2/videoio.hpp +/usr/local/include/opencv4/opencv2/opencv2/videoio.hpp + +/usr/local/include/opencv4/opencv2/imgcodecs.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp + +/usr/local/include/opencv4/opencv2/imgproc.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp + +/usr/local/include/opencv4/opencv2/ml.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +float.h +- +map +- +iostream +- +opencv2/ml/ml.inl.hpp +- + +/usr/local/include/opencv4/opencv2/ml/ml.inl.hpp + +/usr/local/include/opencv4/opencv2/objdetect.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +opencv2/objdetect/detection_based_tracker.hpp +/usr/local/include/opencv4/opencv2/opencv2/objdetect/detection_based_tracker.hpp + +/usr/local/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp +opencv2/core.hpp +- +vector +- + +/usr/local/include/opencv4/opencv2/opencv.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv4/opencv2/opencv2/opencv_modules.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +opencv2/calib3d.hpp +/usr/local/include/opencv4/opencv2/opencv2/calib3d.hpp +opencv2/features2d.hpp +/usr/local/include/opencv4/opencv2/opencv2/features2d.hpp +opencv2/dnn.hpp +/usr/local/include/opencv4/opencv2/opencv2/dnn.hpp +opencv2/flann.hpp +/usr/local/include/opencv4/opencv2/opencv2/flann.hpp +opencv2/highgui.hpp +/usr/local/include/opencv4/opencv2/opencv2/highgui.hpp +opencv2/imgcodecs.hpp +/usr/local/include/opencv4/opencv2/opencv2/imgcodecs.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv4/opencv2/opencv2/imgproc.hpp +opencv2/ml.hpp +/usr/local/include/opencv4/opencv2/opencv2/ml.hpp +opencv2/objdetect.hpp +/usr/local/include/opencv4/opencv2/opencv2/objdetect.hpp +opencv2/photo.hpp +/usr/local/include/opencv4/opencv2/opencv2/photo.hpp +opencv2/shape.hpp +/usr/local/include/opencv4/opencv2/opencv2/shape.hpp +opencv2/stitching.hpp +/usr/local/include/opencv4/opencv2/opencv2/stitching.hpp +opencv2/superres.hpp +/usr/local/include/opencv4/opencv2/opencv2/superres.hpp +opencv2/video.hpp +/usr/local/include/opencv4/opencv2/opencv2/video.hpp +opencv2/videoio.hpp +/usr/local/include/opencv4/opencv2/opencv2/videoio.hpp +opencv2/videostab.hpp +/usr/local/include/opencv4/opencv2/opencv2/videostab.hpp +opencv2/viz.hpp +/usr/local/include/opencv4/opencv2/opencv2/viz.hpp +opencv2/cudaarithm.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudaarithm.hpp +opencv2/cudabgsegm.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudabgsegm.hpp +opencv2/cudacodec.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudacodec.hpp +opencv2/cudafeatures2d.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudafeatures2d.hpp +opencv2/cudafilters.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudafilters.hpp +opencv2/cudaimgproc.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudaimgproc.hpp +opencv2/cudaobjdetect.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudaobjdetect.hpp +opencv2/cudaoptflow.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudaoptflow.hpp +opencv2/cudastereo.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudastereo.hpp +opencv2/cudawarping.hpp +/usr/local/include/opencv4/opencv2/opencv2/cudawarping.hpp + +/usr/local/include/opencv4/opencv2/opencv_modules.hpp + +/usr/local/include/opencv4/opencv2/photo.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv4/opencv2/opencv2/imgproc.hpp + +/usr/local/include/opencv4/opencv2/stitching.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv4/opencv2/opencv2/features2d.hpp +opencv2/stitching/warpers.hpp +/usr/local/include/opencv4/opencv2/opencv2/stitching/warpers.hpp +opencv2/stitching/detail/matchers.hpp +/usr/local/include/opencv4/opencv2/opencv2/stitching/detail/matchers.hpp +opencv2/stitching/detail/motion_estimators.hpp +/usr/local/include/opencv4/opencv2/opencv2/stitching/detail/motion_estimators.hpp +opencv2/stitching/detail/exposure_compensate.hpp +/usr/local/include/opencv4/opencv2/opencv2/stitching/detail/exposure_compensate.hpp +opencv2/stitching/detail/seam_finders.hpp +/usr/local/include/opencv4/opencv2/opencv2/stitching/detail/seam_finders.hpp +opencv2/stitching/detail/blenders.hpp +/usr/local/include/opencv4/opencv2/opencv2/stitching/detail/blenders.hpp +opencv2/stitching/detail/camera.hpp +/usr/local/include/opencv4/opencv2/opencv2/stitching/detail/camera.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/blenders.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core/cuda.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/camera.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/matchers.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/opencv_modules.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +matchers.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/matchers.hpp +util.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/util.hpp +camera.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/camera.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/seam_finders.hpp +set +- +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/opencv_modules.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/util.hpp +list +- +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +util_inl.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/util_inl.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/util_inl.hpp +queue +- +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +util.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/util.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/warpers.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core/cuda.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/imgproc.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/opencv_modules.hpp +warpers_inl.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp + +/usr/local/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/opencv2/core.hpp +warpers.hpp +/usr/local/include/opencv4/opencv2/stitching/detail/warpers.hpp +limits +- + +/usr/local/include/opencv4/opencv2/stitching/warpers.hpp +opencv2/stitching/detail/warpers.hpp +/usr/local/include/opencv4/opencv2/stitching/opencv2/stitching/detail/warpers.hpp + +/usr/local/include/opencv4/opencv2/video.hpp +opencv2/video/tracking.hpp +/usr/local/include/opencv4/opencv2/opencv2/video/tracking.hpp +opencv2/video/background_segm.hpp +/usr/local/include/opencv4/opencv2/opencv2/video/background_segm.hpp + +/usr/local/include/opencv4/opencv2/video/background_segm.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/video/opencv2/core.hpp + +/usr/local/include/opencv4/opencv2/video/tracking.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/video/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv4/opencv2/video/opencv2/imgproc.hpp + +/usr/local/include/opencv4/opencv2/videoio.hpp +opencv2/core.hpp +/usr/local/include/opencv4/opencv2/opencv2/core.hpp + diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/DependInfo.cmake b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/DependInfo.cmake new file mode 100644 index 0000000..ce56e50 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/DependInfo.cmake @@ -0,0 +1,21 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/zhoujiaxuan/superpower19classifier-master/test.cpp" "/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/local/include/opencv4" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make new file mode 100644 index 0000000..c2540b6 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make @@ -0,0 +1,112 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhoujiaxuan/superpower19classifier-master + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhoujiaxuan/superpower19classifier-master/build + +# Include any dependencies generated for this target. +include CMakeFiles/SP19CLASSIFIER_TEST.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/SP19CLASSIFIER_TEST.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/SP19CLASSIFIER_TEST.dir/flags.make + +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: CMakeFiles/SP19CLASSIFIER_TEST.dir/flags.make +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: ../test.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o -c /home/zhoujiaxuan/superpower19classifier-master/test.cpp + +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/zhoujiaxuan/superpower19classifier-master/test.cpp > CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.i + +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/zhoujiaxuan/superpower19classifier-master/test.cpp -o CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.s + +# Object files for target SP19CLASSIFIER_TEST +SP19CLASSIFIER_TEST_OBJECTS = \ +"CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o" + +# External object files for target SP19CLASSIFIER_TEST +SP19CLASSIFIER_TEST_EXTERNAL_OBJECTS = + +SP19CLASSIFIER_TEST: CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o +SP19CLASSIFIER_TEST: CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_dnn.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_ml.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_objdetect.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_photo.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_stitching.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_video.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_calib3d.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_features2d.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_flann.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_highgui.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_videoio.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_imgcodecs.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_imgproc.so.4.0.0 +SP19CLASSIFIER_TEST: /usr/local/lib/libopencv_core.so.4.0.0 +SP19CLASSIFIER_TEST: CMakeFiles/SP19CLASSIFIER_TEST.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable SP19CLASSIFIER_TEST" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/SP19CLASSIFIER_TEST.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/SP19CLASSIFIER_TEST.dir/build: SP19CLASSIFIER_TEST + +.PHONY : CMakeFiles/SP19CLASSIFIER_TEST.dir/build + +CMakeFiles/SP19CLASSIFIER_TEST.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/SP19CLASSIFIER_TEST.dir/cmake_clean.cmake +.PHONY : CMakeFiles/SP19CLASSIFIER_TEST.dir/clean + +CMakeFiles/SP19CLASSIFIER_TEST.dir/depend: + cd /home/zhoujiaxuan/superpower19classifier-master/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/zhoujiaxuan/superpower19classifier-master /home/zhoujiaxuan/superpower19classifier-master /home/zhoujiaxuan/superpower19classifier-master/build /home/zhoujiaxuan/superpower19classifier-master/build /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/SP19CLASSIFIER_TEST.dir/depend + diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/cmake_clean.cmake b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/cmake_clean.cmake new file mode 100644 index 0000000..e87ab2a --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o" + "SP19CLASSIFIER_TEST" + "SP19CLASSIFIER_TEST.pdb" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/SP19CLASSIFIER_TEST.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/depend.internal b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/depend.internal new file mode 100644 index 0000000..82409ac --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/depend.internal @@ -0,0 +1,102 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o + /home/zhoujiaxuan/superpower19classifier-master/classifier.hpp + /home/zhoujiaxuan/superpower19classifier-master/test.cpp + /usr/local/include/opencv4/opencv2/calib3d.hpp + /usr/local/include/opencv4/opencv2/core.hpp + /usr/local/include/opencv4/opencv2/core/affine.hpp + /usr/local/include/opencv4/opencv2/core/base.hpp + /usr/local/include/opencv4/opencv2/core/bufferpool.hpp + /usr/local/include/opencv4/opencv2/core/check.hpp + /usr/local/include/opencv4/opencv2/core/cuda.hpp + /usr/local/include/opencv4/opencv2/core/cuda.inl.hpp + /usr/local/include/opencv4/opencv2/core/cuda_types.hpp + /usr/local/include/opencv4/opencv2/core/cv_cpu_dispatch.h + /usr/local/include/opencv4/opencv2/core/cv_cpu_helper.h + /usr/local/include/opencv4/opencv2/core/cvdef.h + /usr/local/include/opencv4/opencv2/core/cvstd.hpp + /usr/local/include/opencv4/opencv2/core/cvstd.inl.hpp + /usr/local/include/opencv4/opencv2/core/cvstd_wrapper.hpp + /usr/local/include/opencv4/opencv2/core/fast_math.hpp + /usr/local/include/opencv4/opencv2/core/hal/interface.h + /usr/local/include/opencv4/opencv2/core/mat.hpp + /usr/local/include/opencv4/opencv2/core/mat.inl.hpp + /usr/local/include/opencv4/opencv2/core/matx.hpp + /usr/local/include/opencv4/opencv2/core/neon_utils.hpp + /usr/local/include/opencv4/opencv2/core/operations.hpp + /usr/local/include/opencv4/opencv2/core/optim.hpp + /usr/local/include/opencv4/opencv2/core/ovx.hpp + /usr/local/include/opencv4/opencv2/core/persistence.hpp + /usr/local/include/opencv4/opencv2/core/saturate.hpp + /usr/local/include/opencv4/opencv2/core/traits.hpp + /usr/local/include/opencv4/opencv2/core/types.hpp + /usr/local/include/opencv4/opencv2/core/utility.hpp + /usr/local/include/opencv4/opencv2/core/version.hpp + /usr/local/include/opencv4/opencv2/core/vsx_utils.hpp + /usr/local/include/opencv4/opencv2/dnn.hpp + /usr/local/include/opencv4/opencv2/dnn/dict.hpp + /usr/local/include/opencv4/opencv2/dnn/dnn.hpp + /usr/local/include/opencv4/opencv2/dnn/dnn.inl.hpp + /usr/local/include/opencv4/opencv2/dnn/layer.hpp + /usr/local/include/opencv4/opencv2/dnn/version.hpp + /usr/local/include/opencv4/opencv2/features2d.hpp + /usr/local/include/opencv4/opencv2/flann.hpp + /usr/local/include/opencv4/opencv2/flann/all_indices.h + /usr/local/include/opencv4/opencv2/flann/allocator.h + /usr/local/include/opencv4/opencv2/flann/any.h + /usr/local/include/opencv4/opencv2/flann/autotuned_index.h + /usr/local/include/opencv4/opencv2/flann/composite_index.h + /usr/local/include/opencv4/opencv2/flann/config.h + /usr/local/include/opencv4/opencv2/flann/defines.h + /usr/local/include/opencv4/opencv2/flann/dist.h + /usr/local/include/opencv4/opencv2/flann/dynamic_bitset.h + /usr/local/include/opencv4/opencv2/flann/flann_base.hpp + /usr/local/include/opencv4/opencv2/flann/general.h + /usr/local/include/opencv4/opencv2/flann/ground_truth.h + /usr/local/include/opencv4/opencv2/flann/heap.h + /usr/local/include/opencv4/opencv2/flann/hierarchical_clustering_index.h + /usr/local/include/opencv4/opencv2/flann/index_testing.h + /usr/local/include/opencv4/opencv2/flann/kdtree_index.h + /usr/local/include/opencv4/opencv2/flann/kdtree_single_index.h + /usr/local/include/opencv4/opencv2/flann/kmeans_index.h + /usr/local/include/opencv4/opencv2/flann/linear_index.h + /usr/local/include/opencv4/opencv2/flann/logger.h + /usr/local/include/opencv4/opencv2/flann/lsh_index.h + /usr/local/include/opencv4/opencv2/flann/lsh_table.h + /usr/local/include/opencv4/opencv2/flann/matrix.h + /usr/local/include/opencv4/opencv2/flann/miniflann.hpp + /usr/local/include/opencv4/opencv2/flann/nn_index.h + /usr/local/include/opencv4/opencv2/flann/params.h + /usr/local/include/opencv4/opencv2/flann/random.h + /usr/local/include/opencv4/opencv2/flann/result_set.h + /usr/local/include/opencv4/opencv2/flann/sampling.h + /usr/local/include/opencv4/opencv2/flann/saving.h + /usr/local/include/opencv4/opencv2/flann/timer.h + /usr/local/include/opencv4/opencv2/highgui.hpp + /usr/local/include/opencv4/opencv2/imgcodecs.hpp + /usr/local/include/opencv4/opencv2/imgproc.hpp + /usr/local/include/opencv4/opencv2/ml.hpp + /usr/local/include/opencv4/opencv2/ml/ml.inl.hpp + /usr/local/include/opencv4/opencv2/objdetect.hpp + /usr/local/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp + /usr/local/include/opencv4/opencv2/opencv.hpp + /usr/local/include/opencv4/opencv2/opencv_modules.hpp + /usr/local/include/opencv4/opencv2/photo.hpp + /usr/local/include/opencv4/opencv2/stitching.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/blenders.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/camera.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/matchers.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/seam_finders.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/util.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/util_inl.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/warpers.hpp + /usr/local/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp + /usr/local/include/opencv4/opencv2/stitching/warpers.hpp + /usr/local/include/opencv4/opencv2/video.hpp + /usr/local/include/opencv4/opencv2/video/background_segm.hpp + /usr/local/include/opencv4/opencv2/video/tracking.hpp + /usr/local/include/opencv4/opencv2/videoio.hpp diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/depend.make b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/depend.make new file mode 100644 index 0000000..0f851bf --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/depend.make @@ -0,0 +1,102 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: ../classifier.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: ../test.cpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/calib3d.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/affine.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/base.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/bufferpool.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/check.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cuda.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cuda.inl.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cuda_types.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cv_cpu_dispatch.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cv_cpu_helper.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cvdef.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cvstd.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cvstd.inl.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/cvstd_wrapper.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/fast_math.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/hal/interface.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/mat.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/mat.inl.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/matx.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/neon_utils.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/operations.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/optim.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/ovx.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/persistence.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/saturate.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/traits.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/types.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/utility.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/version.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/core/vsx_utils.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/dnn.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/dnn/dict.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/dnn/dnn.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/dnn/dnn.inl.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/dnn/layer.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/dnn/version.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/features2d.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/all_indices.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/allocator.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/any.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/autotuned_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/composite_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/config.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/defines.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/dist.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/dynamic_bitset.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/flann_base.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/general.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/ground_truth.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/heap.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/hierarchical_clustering_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/index_testing.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/kdtree_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/kdtree_single_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/kmeans_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/linear_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/logger.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/lsh_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/lsh_table.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/matrix.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/miniflann.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/nn_index.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/params.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/random.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/result_set.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/sampling.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/saving.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/flann/timer.h +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/highgui.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/imgcodecs.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/imgproc.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/ml.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/ml/ml.inl.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/objdetect.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/objdetect/detection_based_tracker.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/opencv.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/opencv_modules.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/photo.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/blenders.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/camera.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/exposure_compensate.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/matchers.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/motion_estimators.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/seam_finders.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/util.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/util_inl.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/warpers.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/detail/warpers_inl.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/stitching/warpers.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/video.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/video/background_segm.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/video/tracking.hpp +CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o: /usr/local/include/opencv4/opencv2/videoio.hpp + diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/flags.make b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/flags.make new file mode 100644 index 0000000..ffda3a7 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -Ofast -march=native -std=gnu++11 + +CXX_DEFINES = + +CXX_INCLUDES = -isystem /usr/local/include/opencv4 + diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/link.txt b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/link.txt new file mode 100644 index 0000000..b672ed5 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ -Ofast -march=native CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o -o SP19CLASSIFIER_TEST -Wl,-rpath,/usr/local/lib /usr/local/lib/libopencv_dnn.so.4.0.0 /usr/local/lib/libopencv_ml.so.4.0.0 /usr/local/lib/libopencv_objdetect.so.4.0.0 /usr/local/lib/libopencv_photo.so.4.0.0 /usr/local/lib/libopencv_stitching.so.4.0.0 /usr/local/lib/libopencv_video.so.4.0.0 /usr/local/lib/libopencv_calib3d.so.4.0.0 /usr/local/lib/libopencv_features2d.so.4.0.0 /usr/local/lib/libopencv_flann.so.4.0.0 /usr/local/lib/libopencv_highgui.so.4.0.0 /usr/local/lib/libopencv_videoio.so.4.0.0 /usr/local/lib/libopencv_imgcodecs.so.4.0.0 /usr/local/lib/libopencv_imgproc.so.4.0.0 /usr/local/lib/libopencv_core.so.4.0.0 diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/progress.make b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o new file mode 100644 index 0000000..566270c Binary files /dev/null and b/superpower19classifier-zjx/build/CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o differ diff --git a/superpower19classifier-zjx/build/CMakeFiles/TargetDirectories.txt b/superpower19classifier-zjx/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..f58872a --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/rebuild_cache.dir +/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/SP19CLASSIFIER_TEST.dir +/home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/edit_cache.dir diff --git a/superpower19classifier-zjx/build/CMakeFiles/cmake.check_cache b/superpower19classifier-zjx/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/superpower19classifier-zjx/build/CMakeFiles/progress.marks b/superpower19classifier-zjx/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/superpower19classifier-zjx/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/superpower19classifier-zjx/build/Makefile b/superpower19classifier-zjx/build/Makefile new file mode 100644 index 0000000..0d87158 --- /dev/null +++ b/superpower19classifier-zjx/build/Makefile @@ -0,0 +1,178 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.15 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/local/bin/cmake + +# The command to remove a file. +RM = /usr/local/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhoujiaxuan/superpower19classifier-master + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhoujiaxuan/superpower19classifier-master/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/local/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/local/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhoujiaxuan/superpower19classifier-master/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named SP19CLASSIFIER_TEST + +# Build rule for target. +SP19CLASSIFIER_TEST: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 SP19CLASSIFIER_TEST +.PHONY : SP19CLASSIFIER_TEST + +# fast build rule for target. +SP19CLASSIFIER_TEST/fast: + $(MAKE) -f CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make CMakeFiles/SP19CLASSIFIER_TEST.dir/build +.PHONY : SP19CLASSIFIER_TEST/fast + +test.o: test.cpp.o + +.PHONY : test.o + +# target to build an object file +test.cpp.o: + $(MAKE) -f CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.o +.PHONY : test.cpp.o + +test.i: test.cpp.i + +.PHONY : test.i + +# target to preprocess a source file +test.cpp.i: + $(MAKE) -f CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.i +.PHONY : test.cpp.i + +test.s: test.cpp.s + +.PHONY : test.s + +# target to generate assembly for a file +test.cpp.s: + $(MAKE) -f CMakeFiles/SP19CLASSIFIER_TEST.dir/build.make CMakeFiles/SP19CLASSIFIER_TEST.dir/test.cpp.s +.PHONY : test.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... rebuild_cache" + @echo "... SP19CLASSIFIER_TEST" + @echo "... edit_cache" + @echo "... test.o" + @echo "... test.i" + @echo "... test.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/superpower19classifier-zjx/build/SP19CLASSIFIER_TEST b/superpower19classifier-zjx/build/SP19CLASSIFIER_TEST new file mode 100755 index 0000000..353ae71 Binary files /dev/null and b/superpower19classifier-zjx/build/SP19CLASSIFIER_TEST differ diff --git a/superpower19classifier-zjx/build/cmake_install.cmake b/superpower19classifier-zjx/build/cmake_install.cmake new file mode 100644 index 0000000..1f9c4d4 --- /dev/null +++ b/superpower19classifier-zjx/build/cmake_install.cmake @@ -0,0 +1,49 @@ +# Install script for directory: /home/zhoujiaxuan/superpower19classifier-master + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +endif() +string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") + +# Set the install configuration name. +if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) + if(BUILD_TYPE) + string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" + CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") + else() + set(CMAKE_INSTALL_CONFIG_NAME "") + endif() + message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") +endif() + +# Set the component getting installed. +if(NOT CMAKE_INSTALL_COMPONENT) + if(COMPONENT) + message(STATUS "Install component: \"${COMPONENT}\"") + set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") + else() + set(CMAKE_INSTALL_COMPONENT) + endif() +endif() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +# Is this installation the result of a crosscompile? +if(NOT DEFINED CMAKE_CROSSCOMPILING) + set(CMAKE_CROSSCOMPILING "FALSE") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/zhoujiaxuan/superpower19classifier-master/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/superpower19classifier-zjx/classifier_zjx.hpp b/superpower19classifier-zjx/classifier_zjx.hpp new file mode 100644 index 0000000..fb8e96f --- /dev/null +++ b/superpower19classifier-zjx/classifier_zjx.hpp @@ -0,0 +1,174 @@ +#pragma once + +#include +#include +#include +#include + +#include +#include // POSIX.(As C++11 doesn't support filesystem) + +/*首先从文件中读取正负样本,然后读取测试图片,调整图片大小与样本图片 +尺寸一样将测试图片灰度化和特定阈值二值化(像素值置为1或0),将测试图片 +与样本中图片相同位置像素(1/0)比较,得出总分数,即可得出是否属于正样本 +或负样本中图片*/ + +namespace sp +{ + +class template_classifier; +using classifier = template_classifier; + +class template_classifier +{ +public: + using container_t = std::vector; + // Constructorzz + template_classifier(const std::string& g_loc, const std::string& b_loc) + { create_templates(g_loc, b_loc); } + template_classifier(const std::string& loc)//1不同的构造函数 + { + if(loc.back() == '/' || loc.back() == '\\') + create_templates(loc+"positive", loc+"negative"); + else + create_templates(loc+"/positive", loc+"/negative"); + } + inline void create_templates(const std::string& g_loc, const std::string& b_loc) + { + container_t ret; + good_templates = make_templates_(g_loc); + bad_templates = make_templates_(b_loc); + } + inline int forward(cv::Mat mat) // noexcept + { + prepare_(mat); + int match_id = 0; + int now_belief; + int max_belief = std::numeric_limits::min();//4取int型最小值 + int id = 0; + for(; id < good_templates.size(); ++id) + { + now_belief = compare_(mat, good_templates[id]); + // std::cout << id << " --- " << now_belief << '\n'; + if(max_belief < now_belief) + { + max_belief = now_belief; + match_id = id; + } + } + if(max_belief < low_bound) + return id; + for(int i = 0; i < bad_templates.size(); ++id, ++i) + { + now_belief = compare_(mat, bad_templates[i]); + // std::cout << id << " --- " << now_belief << '\n'; + if(max_belief < now_belief) // 直接返回 + return id; + } + return match_id; + } + inline bool boolean_forward(cv::Mat& mat) + { + return forward(mat) < good_templates.size(); + } + inline void debug_prepared_show(cv::Mat& x) + { + debug_prepare_(x); + cv::imshow("debug", x); + } +public: // Default values. + double thre_proportion = 0.25; // 比例阈值,取直方图中thre_proportion位置亮的像素作为thre + int low_bound = 1000; + cv::Size2i fixed_sz = {64, 64}; +private: + // @@@ get_threshold: 按获取一个cv::Mat的阈值 + inline int get_threshold_(cv::Mat& mat) + { + uint32_t iter_rows = mat.rows; + uint32_t iter_cols = mat.cols; + auto sum_pixel = iter_rows * iter_cols; + if(mat.isContinuous()) + { + iter_cols = sum_pixel; + iter_rows = 1; + } + int histogram[256]; + memset(histogram, 0, sizeof(histogram)); + for (uint32_t i = 0; i < iter_rows; ++i) + { + const uchar* lhs = mat.ptr(i); + for (uint32_t j = 0; j < iter_cols; ++j) + ++histogram[*lhs++]; + } + auto left = thre_proportion * sum_pixel; + int i = 255; + while((left -= histogram[i--]) > 0); + return std::max(i, 0); + } + inline void debug_prepare_(cv::Mat& mat) + { + // std::cout << dst_sz << std::endl; + cv::resize(mat, mat, fixed_sz); + cv::threshold(mat, mat, get_threshold_(mat), 255, cv::THRESH_BINARY); + } + // @@@ prepare_ + inline void prepare_(cv::Mat& mat) + { + // std::cout << dst_sz << std::endl; + cv::resize(mat, mat, fixed_sz);//3图片大小修改为64*64 + cv::threshold(mat, mat, get_threshold_(mat), 1, cv::THRESH_BINARY);//二值化 + } + // @@@ make_templates_ + inline container_t make_templates_(const std::string& where) + { + container_t ret; + // std::cout << where.c_str() << std::endl; + DIR* dir_ptr = opendir(where.c_str()); + dirent* dptr; + while((dptr = readdir(dir_ptr)) != NULL) + { + if(dptr->d_name[0] == '.') + continue; + cv::Mat tem; + if(where.back() == '/') + tem = cv::imread(where+dptr->d_name, cv::IMREAD_GRAYSCALE); + else//2读取图片 + tem = cv::imread(where+'/'+dptr->d_name, cv::IMREAD_GRAYSCALE); + prepare_(tem); + ret.push_back(tem); + } + std::cout << "@@@ " << where << " ~ " << ret.size() << " file reading finished.\n"; + return ret; + } + // @@@ compare_ + inline int compare_(cv::Mat& tem, cv::Mat& true_sample) + { + uint32_t iter_rows = fixed_sz.height; + uint32_t iter_cols = fixed_sz.width; + auto sum_pixel = iter_rows * iter_cols; + if(tem.isContinuous() && true_sample.isContinuous()) + { + iter_cols = sum_pixel; + iter_rows = 1; + } + int same_cnt = 0; + for (uint32_t i = 0; i < iter_rows; ++i) + { + const uchar* lhs = tem.ptr(i); + const uchar* rhs = true_sample.ptr(i); + for (uint32_t j = 0; j < iter_cols; ++j) + { + bool l = *lhs++, r = *rhs++; + if(!l && !r) + continue; + same_cnt += (l && r) ? 3 : -1; + } + } + return same_cnt; + } +private: + container_t good_templates; + container_t bad_templates; +}; // class template_classifier + +} // namespace sp diff --git a/superpower19classifier-zjx/template/negative/.DS_Store b/superpower19classifier-zjx/template/negative/.DS_Store new file mode 100644 index 0000000..8e624bd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/.DS_Store differ diff --git a/superpower19classifier-zjx/template/negative/0.png b/superpower19classifier-zjx/template/negative/0.png new file mode 100644 index 0000000..29cbcbf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0.png differ diff --git a/superpower19classifier-zjx/template/negative/00_0.png b/superpower19classifier-zjx/template/negative/00_0.png new file mode 100644 index 0000000..15ba777 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_0.png differ diff --git a/superpower19classifier-zjx/template/negative/00_2.png b/superpower19classifier-zjx/template/negative/00_2.png new file mode 100644 index 0000000..bc4e396 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_2.png differ diff --git a/superpower19classifier-zjx/template/negative/00_3.png b/superpower19classifier-zjx/template/negative/00_3.png new file mode 100644 index 0000000..ee6106c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_3.png differ diff --git a/superpower19classifier-zjx/template/negative/00_4.png b/superpower19classifier-zjx/template/negative/00_4.png new file mode 100644 index 0000000..2798fbe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_4.png differ diff --git a/superpower19classifier-zjx/template/negative/00_457.png b/superpower19classifier-zjx/template/negative/00_457.png new file mode 100644 index 0000000..99ee0ca Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_457.png differ diff --git a/superpower19classifier-zjx/template/negative/00_458.png b/superpower19classifier-zjx/template/negative/00_458.png new file mode 100644 index 0000000..0c223e9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_458.png differ diff --git a/superpower19classifier-zjx/template/negative/00_459.png b/superpower19classifier-zjx/template/negative/00_459.png new file mode 100644 index 0000000..776dfa7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_459.png differ diff --git a/superpower19classifier-zjx/template/negative/00_461.png b/superpower19classifier-zjx/template/negative/00_461.png new file mode 100644 index 0000000..741ee54 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_461.png differ diff --git a/superpower19classifier-zjx/template/negative/00_462.png b/superpower19classifier-zjx/template/negative/00_462.png new file mode 100644 index 0000000..17c6bd8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_462.png differ diff --git a/superpower19classifier-zjx/template/negative/00_463.png b/superpower19classifier-zjx/template/negative/00_463.png new file mode 100644 index 0000000..8313e15 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_463.png differ diff --git a/superpower19classifier-zjx/template/negative/00_465.png b/superpower19classifier-zjx/template/negative/00_465.png new file mode 100644 index 0000000..f30574e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_465.png differ diff --git a/superpower19classifier-zjx/template/negative/00_466.png b/superpower19classifier-zjx/template/negative/00_466.png new file mode 100644 index 0000000..852a218 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_466.png differ diff --git a/superpower19classifier-zjx/template/negative/00_467.png b/superpower19classifier-zjx/template/negative/00_467.png new file mode 100644 index 0000000..af9eed0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_467.png differ diff --git a/superpower19classifier-zjx/template/negative/00_469.png b/superpower19classifier-zjx/template/negative/00_469.png new file mode 100644 index 0000000..e90a1be Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_469.png differ diff --git a/superpower19classifier-zjx/template/negative/00_470.png b/superpower19classifier-zjx/template/negative/00_470.png new file mode 100644 index 0000000..6057ad8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_470.png differ diff --git a/superpower19classifier-zjx/template/negative/00_471.png b/superpower19classifier-zjx/template/negative/00_471.png new file mode 100644 index 0000000..e5b62ee Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_471.png differ diff --git a/superpower19classifier-zjx/template/negative/00_473.png b/superpower19classifier-zjx/template/negative/00_473.png new file mode 100644 index 0000000..457496a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_473.png differ diff --git a/superpower19classifier-zjx/template/negative/00_474.png b/superpower19classifier-zjx/template/negative/00_474.png new file mode 100644 index 0000000..2642ffd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_474.png differ diff --git a/superpower19classifier-zjx/template/negative/00_475.png b/superpower19classifier-zjx/template/negative/00_475.png new file mode 100644 index 0000000..c295290 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_475.png differ diff --git a/superpower19classifier-zjx/template/negative/00_477.png b/superpower19classifier-zjx/template/negative/00_477.png new file mode 100644 index 0000000..134bb2b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_477.png differ diff --git a/superpower19classifier-zjx/template/negative/00_478.png b/superpower19classifier-zjx/template/negative/00_478.png new file mode 100644 index 0000000..366f4ae Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_478.png differ diff --git a/superpower19classifier-zjx/template/negative/00_479.png b/superpower19classifier-zjx/template/negative/00_479.png new file mode 100644 index 0000000..93283c3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_479.png differ diff --git a/superpower19classifier-zjx/template/negative/00_481.png b/superpower19classifier-zjx/template/negative/00_481.png new file mode 100644 index 0000000..2bacdd7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_481.png differ diff --git a/superpower19classifier-zjx/template/negative/00_482.png b/superpower19classifier-zjx/template/negative/00_482.png new file mode 100644 index 0000000..1d82dda Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_482.png differ diff --git a/superpower19classifier-zjx/template/negative/00_483.png b/superpower19classifier-zjx/template/negative/00_483.png new file mode 100644 index 0000000..0f36eab Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_483.png differ diff --git a/superpower19classifier-zjx/template/negative/00_485.png b/superpower19classifier-zjx/template/negative/00_485.png new file mode 100644 index 0000000..2576166 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_485.png differ diff --git a/superpower19classifier-zjx/template/negative/00_486.png b/superpower19classifier-zjx/template/negative/00_486.png new file mode 100644 index 0000000..4a9d7d8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_486.png differ diff --git a/superpower19classifier-zjx/template/negative/00_487.png b/superpower19classifier-zjx/template/negative/00_487.png new file mode 100644 index 0000000..a423c7e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_487.png differ diff --git a/superpower19classifier-zjx/template/negative/00_489.png b/superpower19classifier-zjx/template/negative/00_489.png new file mode 100644 index 0000000..4a300ca Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_489.png differ diff --git a/superpower19classifier-zjx/template/negative/00_490.png b/superpower19classifier-zjx/template/negative/00_490.png new file mode 100644 index 0000000..8c0cb53 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_490.png differ diff --git a/superpower19classifier-zjx/template/negative/00_491.png b/superpower19classifier-zjx/template/negative/00_491.png new file mode 100644 index 0000000..0f48787 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_491.png differ diff --git a/superpower19classifier-zjx/template/negative/00_493.png b/superpower19classifier-zjx/template/negative/00_493.png new file mode 100644 index 0000000..f08ecf2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_493.png differ diff --git a/superpower19classifier-zjx/template/negative/00_494.png b/superpower19classifier-zjx/template/negative/00_494.png new file mode 100644 index 0000000..9428666 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_494.png differ diff --git a/superpower19classifier-zjx/template/negative/00_495.png b/superpower19classifier-zjx/template/negative/00_495.png new file mode 100644 index 0000000..67aa8aa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_495.png differ diff --git a/superpower19classifier-zjx/template/negative/00_497.png b/superpower19classifier-zjx/template/negative/00_497.png new file mode 100644 index 0000000..f24ac39 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_497.png differ diff --git a/superpower19classifier-zjx/template/negative/00_498.png b/superpower19classifier-zjx/template/negative/00_498.png new file mode 100644 index 0000000..6eb0dcd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_498.png differ diff --git a/superpower19classifier-zjx/template/negative/00_499.png b/superpower19classifier-zjx/template/negative/00_499.png new file mode 100644 index 0000000..326b584 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_499.png differ diff --git a/superpower19classifier-zjx/template/negative/00_501.png b/superpower19classifier-zjx/template/negative/00_501.png new file mode 100644 index 0000000..222812f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_501.png differ diff --git a/superpower19classifier-zjx/template/negative/00_502.png b/superpower19classifier-zjx/template/negative/00_502.png new file mode 100644 index 0000000..0d1311e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_502.png differ diff --git a/superpower19classifier-zjx/template/negative/00_503.png b/superpower19classifier-zjx/template/negative/00_503.png new file mode 100644 index 0000000..0f43f2d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_503.png differ diff --git a/superpower19classifier-zjx/template/negative/00_529.png b/superpower19classifier-zjx/template/negative/00_529.png new file mode 100644 index 0000000..75387c5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_529.png differ diff --git a/superpower19classifier-zjx/template/negative/00_530.png b/superpower19classifier-zjx/template/negative/00_530.png new file mode 100644 index 0000000..85d7193 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_530.png differ diff --git a/superpower19classifier-zjx/template/negative/00_531.png b/superpower19classifier-zjx/template/negative/00_531.png new file mode 100644 index 0000000..c0ea7b0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_531.png differ diff --git a/superpower19classifier-zjx/template/negative/00_533.png b/superpower19classifier-zjx/template/negative/00_533.png new file mode 100644 index 0000000..bcbc676 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_533.png differ diff --git a/superpower19classifier-zjx/template/negative/00_534.png b/superpower19classifier-zjx/template/negative/00_534.png new file mode 100644 index 0000000..3c742e6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_534.png differ diff --git a/superpower19classifier-zjx/template/negative/00_535.png b/superpower19classifier-zjx/template/negative/00_535.png new file mode 100644 index 0000000..181d3e6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_535.png differ diff --git a/superpower19classifier-zjx/template/negative/00_537.png b/superpower19classifier-zjx/template/negative/00_537.png new file mode 100644 index 0000000..5207bdf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_537.png differ diff --git a/superpower19classifier-zjx/template/negative/00_538.png b/superpower19classifier-zjx/template/negative/00_538.png new file mode 100644 index 0000000..6c9babb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_538.png differ diff --git a/superpower19classifier-zjx/template/negative/00_539.png b/superpower19classifier-zjx/template/negative/00_539.png new file mode 100644 index 0000000..c113538 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_539.png differ diff --git a/superpower19classifier-zjx/template/negative/00_557.png b/superpower19classifier-zjx/template/negative/00_557.png new file mode 100644 index 0000000..d3eb1c5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_557.png differ diff --git a/superpower19classifier-zjx/template/negative/00_558.png b/superpower19classifier-zjx/template/negative/00_558.png new file mode 100644 index 0000000..9b0b357 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_558.png differ diff --git a/superpower19classifier-zjx/template/negative/00_559.png b/superpower19classifier-zjx/template/negative/00_559.png new file mode 100644 index 0000000..bd08bc0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_559.png differ diff --git a/superpower19classifier-zjx/template/negative/00_560.png b/superpower19classifier-zjx/template/negative/00_560.png new file mode 100644 index 0000000..d2bed2e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_560.png differ diff --git a/superpower19classifier-zjx/template/negative/00_561.png b/superpower19classifier-zjx/template/negative/00_561.png new file mode 100644 index 0000000..4a9d1ec Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_561.png differ diff --git a/superpower19classifier-zjx/template/negative/00_562.png b/superpower19classifier-zjx/template/negative/00_562.png new file mode 100644 index 0000000..4037f54 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_562.png differ diff --git a/superpower19classifier-zjx/template/negative/00_563.png b/superpower19classifier-zjx/template/negative/00_563.png new file mode 100644 index 0000000..58e0484 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_563.png differ diff --git a/superpower19classifier-zjx/template/negative/00_564.png b/superpower19classifier-zjx/template/negative/00_564.png new file mode 100644 index 0000000..22fc511 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_564.png differ diff --git a/superpower19classifier-zjx/template/negative/00_565.png b/superpower19classifier-zjx/template/negative/00_565.png new file mode 100644 index 0000000..c6ed145 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_565.png differ diff --git a/superpower19classifier-zjx/template/negative/00_566.png b/superpower19classifier-zjx/template/negative/00_566.png new file mode 100644 index 0000000..aff999b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_566.png differ diff --git a/superpower19classifier-zjx/template/negative/00_567.png b/superpower19classifier-zjx/template/negative/00_567.png new file mode 100644 index 0000000..8f202d1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_567.png differ diff --git a/superpower19classifier-zjx/template/negative/00_568.png b/superpower19classifier-zjx/template/negative/00_568.png new file mode 100644 index 0000000..4815eba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_568.png differ diff --git a/superpower19classifier-zjx/template/negative/00_569.png b/superpower19classifier-zjx/template/negative/00_569.png new file mode 100644 index 0000000..04eb232 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_569.png differ diff --git a/superpower19classifier-zjx/template/negative/00_570.png b/superpower19classifier-zjx/template/negative/00_570.png new file mode 100644 index 0000000..2158878 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_570.png differ diff --git a/superpower19classifier-zjx/template/negative/00_571.png b/superpower19classifier-zjx/template/negative/00_571.png new file mode 100644 index 0000000..7f33385 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_571.png differ diff --git a/superpower19classifier-zjx/template/negative/00_585.png b/superpower19classifier-zjx/template/negative/00_585.png new file mode 100644 index 0000000..02f69c9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_585.png differ diff --git a/superpower19classifier-zjx/template/negative/00_586.png b/superpower19classifier-zjx/template/negative/00_586.png new file mode 100644 index 0000000..24db179 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_586.png differ diff --git a/superpower19classifier-zjx/template/negative/00_6.png b/superpower19classifier-zjx/template/negative/00_6.png new file mode 100644 index 0000000..fa90980 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_6.png differ diff --git a/superpower19classifier-zjx/template/negative/00_7.png b/superpower19classifier-zjx/template/negative/00_7.png new file mode 100644 index 0000000..4201496 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_7.png differ diff --git a/superpower19classifier-zjx/template/negative/00_8.png b/superpower19classifier-zjx/template/negative/00_8.png new file mode 100644 index 0000000..b666c06 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/00_8.png differ diff --git a/superpower19classifier-zjx/template/negative/0100_blue.png b/superpower19classifier-zjx/template/negative/0100_blue.png new file mode 100644 index 0000000..858b11c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0100_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/01014_blue.png b/superpower19classifier-zjx/template/negative/01014_blue.png new file mode 100644 index 0000000..c5ae37a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01014_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0101_blue.png b/superpower19classifier-zjx/template/negative/0101_blue.png new file mode 100644 index 0000000..3532ed7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0101_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0102_blue.png b/superpower19classifier-zjx/template/negative/0102_blue.png new file mode 100644 index 0000000..ecb4fab Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0102_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103106_blue.png b/superpower19classifier-zjx/template/negative/0103106_blue.png new file mode 100644 index 0000000..af13160 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103106_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103108_blue.png b/superpower19classifier-zjx/template/negative/0103108_blue.png new file mode 100644 index 0000000..5c428cd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103108_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103121_blue.png b/superpower19classifier-zjx/template/negative/0103121_blue.png new file mode 100644 index 0000000..57befb9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103121_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103133_blue.png b/superpower19classifier-zjx/template/negative/0103133_blue.png new file mode 100644 index 0000000..de6adb3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103133_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103135_blue.png b/superpower19classifier-zjx/template/negative/0103135_blue.png new file mode 100644 index 0000000..4152c07 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103135_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103137_blue.png b/superpower19classifier-zjx/template/negative/0103137_blue.png new file mode 100644 index 0000000..216e64a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103137_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103139_blue.png b/superpower19classifier-zjx/template/negative/0103139_blue.png new file mode 100644 index 0000000..e6569b6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103139_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103151_blue.png b/superpower19classifier-zjx/template/negative/0103151_blue.png new file mode 100644 index 0000000..170a235 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103151_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103172_blue.png b/superpower19classifier-zjx/template/negative/0103172_blue.png new file mode 100644 index 0000000..d20780d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103172_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103177_blue.png b/superpower19classifier-zjx/template/negative/0103177_blue.png new file mode 100644 index 0000000..a85e7f6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103177_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0103179_blue.png b/superpower19classifier-zjx/template/negative/0103179_blue.png new file mode 100644 index 0000000..d18abb7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0103179_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/01086_red.png b/superpower19classifier-zjx/template/negative/01086_red.png new file mode 100644 index 0000000..846b3f9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01086_red.png differ diff --git a/superpower19classifier-zjx/template/negative/01_0_00.png b/superpower19classifier-zjx/template/negative/01_0_00.png new file mode 100644 index 0000000..76f0678 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_0_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_101_00.png b/superpower19classifier-zjx/template/negative/01_101_00.png new file mode 100644 index 0000000..2f44925 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_101_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_102_00.png b/superpower19classifier-zjx/template/negative/01_102_00.png new file mode 100644 index 0000000..3d8ea8c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_102_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_168_00.png b/superpower19classifier-zjx/template/negative/01_168_00.png new file mode 100644 index 0000000..dd548b0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_168_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_169_00.png b/superpower19classifier-zjx/template/negative/01_169_00.png new file mode 100644 index 0000000..7110747 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_169_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_170_00.png b/superpower19classifier-zjx/template/negative/01_170_00.png new file mode 100644 index 0000000..74d9351 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_170_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_171_00.png b/superpower19classifier-zjx/template/negative/01_171_00.png new file mode 100644 index 0000000..9abdfe6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_171_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_172_00.png b/superpower19classifier-zjx/template/negative/01_172_00.png new file mode 100644 index 0000000..49a4d3a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_172_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_173_00.png b/superpower19classifier-zjx/template/negative/01_173_00.png new file mode 100644 index 0000000..20aace7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_173_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_174_00.png b/superpower19classifier-zjx/template/negative/01_174_00.png new file mode 100644 index 0000000..b4653d6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_174_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_175_00.png b/superpower19classifier-zjx/template/negative/01_175_00.png new file mode 100644 index 0000000..0960448 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_175_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_176_00.png b/superpower19classifier-zjx/template/negative/01_176_00.png new file mode 100644 index 0000000..ae4039d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_176_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_177_00.png b/superpower19classifier-zjx/template/negative/01_177_00.png new file mode 100644 index 0000000..e9b41df Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_177_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_181_00.png b/superpower19classifier-zjx/template/negative/01_181_00.png new file mode 100644 index 0000000..6ae8334 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_181_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_182_00.png b/superpower19classifier-zjx/template/negative/01_182_00.png new file mode 100644 index 0000000..acf7612 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_182_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_183_00.png b/superpower19classifier-zjx/template/negative/01_183_00.png new file mode 100644 index 0000000..5269aa0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_183_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_199_00.png b/superpower19classifier-zjx/template/negative/01_199_00.png new file mode 100644 index 0000000..7244c85 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_199_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_1_00.png b/superpower19classifier-zjx/template/negative/01_1_00.png new file mode 100644 index 0000000..17d943a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_1_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_200_00.png b/superpower19classifier-zjx/template/negative/01_200_00.png new file mode 100644 index 0000000..dadf379 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_200_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_201_00.png b/superpower19classifier-zjx/template/negative/01_201_00.png new file mode 100644 index 0000000..ed97384 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_201_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_2_00.png b/superpower19classifier-zjx/template/negative/01_2_00.png new file mode 100644 index 0000000..b218793 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_2_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_32_00.png b/superpower19classifier-zjx/template/negative/01_32_00.png new file mode 100644 index 0000000..32a8ff7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_32_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_34_00.png b/superpower19classifier-zjx/template/negative/01_34_00.png new file mode 100644 index 0000000..bdc1efe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_34_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_36_00.png b/superpower19classifier-zjx/template/negative/01_36_00.png new file mode 100644 index 0000000..5b4e581 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_36_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_3_00.png b/superpower19classifier-zjx/template/negative/01_3_00.png new file mode 100644 index 0000000..e5f4bf6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_3_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_40_00.png b/superpower19classifier-zjx/template/negative/01_40_00.png new file mode 100644 index 0000000..b7f3827 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_40_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_42_00.png b/superpower19classifier-zjx/template/negative/01_42_00.png new file mode 100644 index 0000000..ccd5ea0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_42_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_43_00.png b/superpower19classifier-zjx/template/negative/01_43_00.png new file mode 100644 index 0000000..fb9433d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_43_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_46_00.png b/superpower19classifier-zjx/template/negative/01_46_00.png new file mode 100644 index 0000000..914afb0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_46_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_48_00.png b/superpower19classifier-zjx/template/negative/01_48_00.png new file mode 100644 index 0000000..0342832 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_48_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_49_00.png b/superpower19classifier-zjx/template/negative/01_49_00.png new file mode 100644 index 0000000..a5e1c03 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_49_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_4_00.png b/superpower19classifier-zjx/template/negative/01_4_00.png new file mode 100644 index 0000000..f9f4d39 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_4_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_51_00.png b/superpower19classifier-zjx/template/negative/01_51_00.png new file mode 100644 index 0000000..6c5701e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_51_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_52_00.png b/superpower19classifier-zjx/template/negative/01_52_00.png new file mode 100644 index 0000000..c921791 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_52_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_54_00.png b/superpower19classifier-zjx/template/negative/01_54_00.png new file mode 100644 index 0000000..f4b805f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_54_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_57_00.png b/superpower19classifier-zjx/template/negative/01_57_00.png new file mode 100644 index 0000000..388bbcf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_57_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_58_00.png b/superpower19classifier-zjx/template/negative/01_58_00.png new file mode 100644 index 0000000..5a4b351 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_58_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_5_00.png b/superpower19classifier-zjx/template/negative/01_5_00.png new file mode 100644 index 0000000..b19d6ed Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_5_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_60_00.png b/superpower19classifier-zjx/template/negative/01_60_00.png new file mode 100644 index 0000000..1197652 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_60_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_6_00.png b/superpower19classifier-zjx/template/negative/01_6_00.png new file mode 100644 index 0000000..78cd653 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_6_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_93_00.png b/superpower19classifier-zjx/template/negative/01_93_00.png new file mode 100644 index 0000000..8a85c5d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_93_00.png differ diff --git a/superpower19classifier-zjx/template/negative/01_94_00.png b/superpower19classifier-zjx/template/negative/01_94_00.png new file mode 100644 index 0000000..da91d2d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/01_94_00.png differ diff --git a/superpower19classifier-zjx/template/negative/0301.png b/superpower19classifier-zjx/template/negative/0301.png new file mode 100644 index 0000000..771fc8b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0301.png differ diff --git a/superpower19classifier-zjx/template/negative/030135.png b/superpower19classifier-zjx/template/negative/030135.png new file mode 100644 index 0000000..42a850b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030135.png differ diff --git a/superpower19classifier-zjx/template/negative/030139.png b/superpower19classifier-zjx/template/negative/030139.png new file mode 100644 index 0000000..73f0bfb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030139.png differ diff --git a/superpower19classifier-zjx/template/negative/030141.png b/superpower19classifier-zjx/template/negative/030141.png new file mode 100644 index 0000000..f61ef34 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030141.png differ diff --git a/superpower19classifier-zjx/template/negative/030144.png b/superpower19classifier-zjx/template/negative/030144.png new file mode 100644 index 0000000..c5b197b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030144.png differ diff --git a/superpower19classifier-zjx/template/negative/030156.png b/superpower19classifier-zjx/template/negative/030156.png new file mode 100644 index 0000000..30ca587 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030156.png differ diff --git a/superpower19classifier-zjx/template/negative/030159.png b/superpower19classifier-zjx/template/negative/030159.png new file mode 100644 index 0000000..128fc01 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030159.png differ diff --git a/superpower19classifier-zjx/template/negative/030165.png b/superpower19classifier-zjx/template/negative/030165.png new file mode 100644 index 0000000..9785ead Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030165.png differ diff --git a/superpower19classifier-zjx/template/negative/030169.png b/superpower19classifier-zjx/template/negative/030169.png new file mode 100644 index 0000000..38921a0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030169.png differ diff --git a/superpower19classifier-zjx/template/negative/030173.png b/superpower19classifier-zjx/template/negative/030173.png new file mode 100644 index 0000000..a5deece Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030173.png differ diff --git a/superpower19classifier-zjx/template/negative/030190.png b/superpower19classifier-zjx/template/negative/030190.png new file mode 100644 index 0000000..d0e3fca Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030190.png differ diff --git a/superpower19classifier-zjx/template/negative/030201.png b/superpower19classifier-zjx/template/negative/030201.png new file mode 100644 index 0000000..2f611fa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030201.png differ diff --git a/superpower19classifier-zjx/template/negative/030203.png b/superpower19classifier-zjx/template/negative/030203.png new file mode 100644 index 0000000..47e70f4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030203.png differ diff --git a/superpower19classifier-zjx/template/negative/030216.png b/superpower19classifier-zjx/template/negative/030216.png new file mode 100644 index 0000000..a4f5856 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030216.png differ diff --git a/superpower19classifier-zjx/template/negative/030228.png b/superpower19classifier-zjx/template/negative/030228.png new file mode 100644 index 0000000..be4dccf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030228.png differ diff --git a/superpower19classifier-zjx/template/negative/030232.png b/superpower19classifier-zjx/template/negative/030232.png new file mode 100644 index 0000000..e8aba76 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030232.png differ diff --git a/superpower19classifier-zjx/template/negative/030239.png b/superpower19classifier-zjx/template/negative/030239.png new file mode 100644 index 0000000..787ec06 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/030239.png differ diff --git a/superpower19classifier-zjx/template/negative/0302_blue.png b/superpower19classifier-zjx/template/negative/0302_blue.png new file mode 100644 index 0000000..fdb932f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0302_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0306_blue.png b/superpower19classifier-zjx/template/negative/0306_blue.png new file mode 100644 index 0000000..6416177 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0306_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0403235_blue.png b/superpower19classifier-zjx/template/negative/0403235_blue.png new file mode 100644 index 0000000..42447c4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0403235_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0403239_blue.png b/superpower19classifier-zjx/template/negative/0403239_blue.png new file mode 100644 index 0000000..116f54f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0403239_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0403264_blue.png b/superpower19classifier-zjx/template/negative/0403264_blue.png new file mode 100644 index 0000000..ae0cfaf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0403264_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0403267_blue.png b/superpower19classifier-zjx/template/negative/0403267_blue.png new file mode 100644 index 0000000..a72023b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0403267_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0403270_blue.png b/superpower19classifier-zjx/template/negative/0403270_blue.png new file mode 100644 index 0000000..69bf238 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0403270_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/0_00.png b/superpower19classifier-zjx/template/negative/0_00.png new file mode 100644 index 0000000..bf44586 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0_00.png differ diff --git a/superpower19classifier-zjx/template/negative/0_hero0.png b/superpower19classifier-zjx/template/negative/0_hero0.png new file mode 100644 index 0000000..54df97d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/0_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/1.png b/superpower19classifier-zjx/template/negative/1.png new file mode 100644 index 0000000..55b4a3a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/1.png differ diff --git a/superpower19classifier-zjx/template/negative/10.png b/superpower19classifier-zjx/template/negative/10.png new file mode 100644 index 0000000..c59e500 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10.png differ diff --git a/superpower19classifier-zjx/template/negative/100.png b/superpower19classifier-zjx/template/negative/100.png new file mode 100644 index 0000000..d56e732 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/100.png differ diff --git a/superpower19classifier-zjx/template/negative/100_00.png b/superpower19classifier-zjx/template/negative/100_00.png new file mode 100644 index 0000000..3b5ff47 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/100_00.png differ diff --git a/superpower19classifier-zjx/template/negative/100_hero0.png b/superpower19classifier-zjx/template/negative/100_hero0.png new file mode 100644 index 0000000..6445486 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/100_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/101.png b/superpower19classifier-zjx/template/negative/101.png new file mode 100644 index 0000000..1059fe2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/101.png differ diff --git a/superpower19classifier-zjx/template/negative/101_00.png b/superpower19classifier-zjx/template/negative/101_00.png new file mode 100644 index 0000000..30de155 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/101_00.png differ diff --git a/superpower19classifier-zjx/template/negative/102.png b/superpower19classifier-zjx/template/negative/102.png new file mode 100644 index 0000000..f360ad9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/102.png differ diff --git a/superpower19classifier-zjx/template/negative/102_00.png b/superpower19classifier-zjx/template/negative/102_00.png new file mode 100644 index 0000000..52a8e03 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/102_00.png differ diff --git a/superpower19classifier-zjx/template/negative/102_extra0.png b/superpower19classifier-zjx/template/negative/102_extra0.png new file mode 100644 index 0000000..eccb10a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/102_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/103.png b/superpower19classifier-zjx/template/negative/103.png new file mode 100644 index 0000000..9fee803 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/103.png differ diff --git a/superpower19classifier-zjx/template/negative/104.png b/superpower19classifier-zjx/template/negative/104.png new file mode 100644 index 0000000..fac6b51 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/104.png differ diff --git a/superpower19classifier-zjx/template/negative/105.png b/superpower19classifier-zjx/template/negative/105.png new file mode 100644 index 0000000..21f6202 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/105.png differ diff --git a/superpower19classifier-zjx/template/negative/10591.png b/superpower19classifier-zjx/template/negative/10591.png new file mode 100644 index 0000000..103f136 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10591.png differ diff --git a/superpower19classifier-zjx/template/negative/106.png b/superpower19classifier-zjx/template/negative/106.png new file mode 100644 index 0000000..a83e99e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/106.png differ diff --git a/superpower19classifier-zjx/template/negative/10601.png b/superpower19classifier-zjx/template/negative/10601.png new file mode 100644 index 0000000..e974442 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10601.png differ diff --git a/superpower19classifier-zjx/template/negative/10621.png b/superpower19classifier-zjx/template/negative/10621.png new file mode 100644 index 0000000..7887813 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10621.png differ diff --git a/superpower19classifier-zjx/template/negative/10661.png b/superpower19classifier-zjx/template/negative/10661.png new file mode 100644 index 0000000..35fc5d5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10661.png differ diff --git a/superpower19classifier-zjx/template/negative/10681.png b/superpower19classifier-zjx/template/negative/10681.png new file mode 100644 index 0000000..c39385e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10681.png differ diff --git a/superpower19classifier-zjx/template/negative/107.png b/superpower19classifier-zjx/template/negative/107.png new file mode 100644 index 0000000..3f7e94d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/107.png differ diff --git a/superpower19classifier-zjx/template/negative/10701.png b/superpower19classifier-zjx/template/negative/10701.png new file mode 100644 index 0000000..8abc581 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10701.png differ diff --git a/superpower19classifier-zjx/template/negative/10751.png b/superpower19classifier-zjx/template/negative/10751.png new file mode 100644 index 0000000..8b116ac Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10751.png differ diff --git a/superpower19classifier-zjx/template/negative/10761.png b/superpower19classifier-zjx/template/negative/10761.png new file mode 100644 index 0000000..44ebb3a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10761.png differ diff --git a/superpower19classifier-zjx/template/negative/10771.png b/superpower19classifier-zjx/template/negative/10771.png new file mode 100644 index 0000000..32bfe6d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/10771.png differ diff --git a/superpower19classifier-zjx/template/negative/108.png b/superpower19classifier-zjx/template/negative/108.png new file mode 100644 index 0000000..ca568ac Binary files /dev/null and b/superpower19classifier-zjx/template/negative/108.png differ diff --git a/superpower19classifier-zjx/template/negative/109.png b/superpower19classifier-zjx/template/negative/109.png new file mode 100644 index 0000000..3f300f7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/109.png differ diff --git a/superpower19classifier-zjx/template/negative/11.png b/superpower19classifier-zjx/template/negative/11.png new file mode 100644 index 0000000..1467c10 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/11.png differ diff --git a/superpower19classifier-zjx/template/negative/110.png b/superpower19classifier-zjx/template/negative/110.png new file mode 100644 index 0000000..3196a62 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/110.png differ diff --git a/superpower19classifier-zjx/template/negative/111.png b/superpower19classifier-zjx/template/negative/111.png new file mode 100644 index 0000000..6fe4248 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/111.png differ diff --git a/superpower19classifier-zjx/template/negative/112.png b/superpower19classifier-zjx/template/negative/112.png new file mode 100644 index 0000000..d161c55 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/112.png differ diff --git a/superpower19classifier-zjx/template/negative/113.png b/superpower19classifier-zjx/template/negative/113.png new file mode 100644 index 0000000..db40687 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/113.png differ diff --git a/superpower19classifier-zjx/template/negative/114.png b/superpower19classifier-zjx/template/negative/114.png new file mode 100644 index 0000000..862422f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/114.png differ diff --git a/superpower19classifier-zjx/template/negative/1146_extra0.png b/superpower19classifier-zjx/template/negative/1146_extra0.png new file mode 100644 index 0000000..07cfd9e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/1146_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/115.png b/superpower19classifier-zjx/template/negative/115.png new file mode 100644 index 0000000..b2e738c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/115.png differ diff --git a/superpower19classifier-zjx/template/negative/116.png b/superpower19classifier-zjx/template/negative/116.png new file mode 100644 index 0000000..e17df77 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/116.png differ diff --git a/superpower19classifier-zjx/template/negative/1160_extra0.png b/superpower19classifier-zjx/template/negative/1160_extra0.png new file mode 100644 index 0000000..c4969bd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/1160_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/1167_extra0.png b/superpower19classifier-zjx/template/negative/1167_extra0.png new file mode 100644 index 0000000..5374626 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/1167_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/117.png b/superpower19classifier-zjx/template/negative/117.png new file mode 100644 index 0000000..e79b24e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/117.png differ diff --git a/superpower19classifier-zjx/template/negative/118.png b/superpower19classifier-zjx/template/negative/118.png new file mode 100644 index 0000000..eeeebf5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/118.png differ diff --git a/superpower19classifier-zjx/template/negative/119.png b/superpower19classifier-zjx/template/negative/119.png new file mode 100644 index 0000000..6e0b416 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/119.png differ diff --git a/superpower19classifier-zjx/template/negative/11_00.png b/superpower19classifier-zjx/template/negative/11_00.png new file mode 100644 index 0000000..d8570d3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/11_00.png differ diff --git a/superpower19classifier-zjx/template/negative/11_hero0.png b/superpower19classifier-zjx/template/negative/11_hero0.png new file mode 100644 index 0000000..cdf2a74 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/11_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/12.png b/superpower19classifier-zjx/template/negative/12.png new file mode 100644 index 0000000..e8aa269 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12.png differ diff --git a/superpower19classifier-zjx/template/negative/120.png b/superpower19classifier-zjx/template/negative/120.png new file mode 100644 index 0000000..71512d6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/120.png differ diff --git a/superpower19classifier-zjx/template/negative/121.png b/superpower19classifier-zjx/template/negative/121.png new file mode 100644 index 0000000..bcfb3e9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/121.png differ diff --git a/superpower19classifier-zjx/template/negative/122.png b/superpower19classifier-zjx/template/negative/122.png new file mode 100644 index 0000000..dff35db Binary files /dev/null and b/superpower19classifier-zjx/template/negative/122.png differ diff --git a/superpower19classifier-zjx/template/negative/123.png b/superpower19classifier-zjx/template/negative/123.png new file mode 100644 index 0000000..3db2e98 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/123.png differ diff --git a/superpower19classifier-zjx/template/negative/124.png b/superpower19classifier-zjx/template/negative/124.png new file mode 100644 index 0000000..631a8a0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/124.png differ diff --git a/superpower19classifier-zjx/template/negative/12425.png b/superpower19classifier-zjx/template/negative/12425.png new file mode 100644 index 0000000..b244dc6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12425.png differ diff --git a/superpower19classifier-zjx/template/negative/12450.png b/superpower19classifier-zjx/template/negative/12450.png new file mode 100644 index 0000000..3a38add Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12450.png differ diff --git a/superpower19classifier-zjx/template/negative/12475.png b/superpower19classifier-zjx/template/negative/12475.png new file mode 100644 index 0000000..1c72239 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12475.png differ diff --git a/superpower19classifier-zjx/template/negative/125.png b/superpower19classifier-zjx/template/negative/125.png new file mode 100644 index 0000000..747a400 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/125.png differ diff --git a/superpower19classifier-zjx/template/negative/12500.png b/superpower19classifier-zjx/template/negative/12500.png new file mode 100644 index 0000000..20eec61 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12500.png differ diff --git a/superpower19classifier-zjx/template/negative/12525.png b/superpower19classifier-zjx/template/negative/12525.png new file mode 100644 index 0000000..95e9c49 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12525.png differ diff --git a/superpower19classifier-zjx/template/negative/12550.png b/superpower19classifier-zjx/template/negative/12550.png new file mode 100644 index 0000000..7f9836f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12550.png differ diff --git a/superpower19classifier-zjx/template/negative/12575.png b/superpower19classifier-zjx/template/negative/12575.png new file mode 100644 index 0000000..548e070 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12575.png differ diff --git a/superpower19classifier-zjx/template/negative/126.png b/superpower19classifier-zjx/template/negative/126.png new file mode 100644 index 0000000..7aca181 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/126.png differ diff --git a/superpower19classifier-zjx/template/negative/12600.png b/superpower19classifier-zjx/template/negative/12600.png new file mode 100644 index 0000000..4f2e7de Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12600.png differ diff --git a/superpower19classifier-zjx/template/negative/12625.png b/superpower19classifier-zjx/template/negative/12625.png new file mode 100644 index 0000000..4dd302f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12625.png differ diff --git a/superpower19classifier-zjx/template/negative/12650.png b/superpower19classifier-zjx/template/negative/12650.png new file mode 100644 index 0000000..7985032 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12650.png differ diff --git a/superpower19classifier-zjx/template/negative/12675.png b/superpower19classifier-zjx/template/negative/12675.png new file mode 100644 index 0000000..f0508f5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12675.png differ diff --git a/superpower19classifier-zjx/template/negative/127.png b/superpower19classifier-zjx/template/negative/127.png new file mode 100644 index 0000000..950ad79 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/127.png differ diff --git a/superpower19classifier-zjx/template/negative/12725.png b/superpower19classifier-zjx/template/negative/12725.png new file mode 100644 index 0000000..de32fd8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12725.png differ diff --git a/superpower19classifier-zjx/template/negative/12775.png b/superpower19classifier-zjx/template/negative/12775.png new file mode 100644 index 0000000..d29867d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12775.png differ diff --git a/superpower19classifier-zjx/template/negative/128.png b/superpower19classifier-zjx/template/negative/128.png new file mode 100644 index 0000000..9954429 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/128.png differ diff --git a/superpower19classifier-zjx/template/negative/12800.png b/superpower19classifier-zjx/template/negative/12800.png new file mode 100644 index 0000000..b10af49 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12800.png differ diff --git a/superpower19classifier-zjx/template/negative/12825.png b/superpower19classifier-zjx/template/negative/12825.png new file mode 100644 index 0000000..c967814 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12825.png differ diff --git a/superpower19classifier-zjx/template/negative/129.png b/superpower19classifier-zjx/template/negative/129.png new file mode 100644 index 0000000..80dec0c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/129.png differ diff --git a/superpower19classifier-zjx/template/negative/12975.png b/superpower19classifier-zjx/template/negative/12975.png new file mode 100644 index 0000000..732e4e2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12975.png differ diff --git a/superpower19classifier-zjx/template/negative/12_00.png b/superpower19classifier-zjx/template/negative/12_00.png new file mode 100644 index 0000000..a424fba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12_00.png differ diff --git a/superpower19classifier-zjx/template/negative/12_120_0.png b/superpower19classifier-zjx/template/negative/12_120_0.png new file mode 100644 index 0000000..2e00858 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12_120_0.png differ diff --git a/superpower19classifier-zjx/template/negative/12_121.png b/superpower19classifier-zjx/template/negative/12_121.png new file mode 100644 index 0000000..599fc32 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12_121.png differ diff --git a/superpower19classifier-zjx/template/negative/12_122.png b/superpower19classifier-zjx/template/negative/12_122.png new file mode 100644 index 0000000..5e30e9d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12_122.png differ diff --git a/superpower19classifier-zjx/template/negative/12_125.png b/superpower19classifier-zjx/template/negative/12_125.png new file mode 100644 index 0000000..4ee06f5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12_125.png differ diff --git a/superpower19classifier-zjx/template/negative/12_126.png b/superpower19classifier-zjx/template/negative/12_126.png new file mode 100644 index 0000000..002c692 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12_126.png differ diff --git a/superpower19classifier-zjx/template/negative/12_127.png b/superpower19classifier-zjx/template/negative/12_127.png new file mode 100644 index 0000000..f18ac39 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12_127.png differ diff --git a/superpower19classifier-zjx/template/negative/12_128.png b/superpower19classifier-zjx/template/negative/12_128.png new file mode 100644 index 0000000..8204332 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/12_128.png differ diff --git a/superpower19classifier-zjx/template/negative/130.png b/superpower19classifier-zjx/template/negative/130.png new file mode 100644 index 0000000..c6cf4ce Binary files /dev/null and b/superpower19classifier-zjx/template/negative/130.png differ diff --git a/superpower19classifier-zjx/template/negative/13000.png b/superpower19classifier-zjx/template/negative/13000.png new file mode 100644 index 0000000..a3880d8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13000.png differ diff --git a/superpower19classifier-zjx/template/negative/13025.png b/superpower19classifier-zjx/template/negative/13025.png new file mode 100644 index 0000000..a1b0ee4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13025.png differ diff --git a/superpower19classifier-zjx/template/negative/131.png b/superpower19classifier-zjx/template/negative/131.png new file mode 100644 index 0000000..3999b55 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/131.png differ diff --git a/superpower19classifier-zjx/template/negative/13175.png b/superpower19classifier-zjx/template/negative/13175.png new file mode 100644 index 0000000..771a15a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13175.png differ diff --git a/superpower19classifier-zjx/template/negative/132.png b/superpower19classifier-zjx/template/negative/132.png new file mode 100644 index 0000000..aa5dc9b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/132.png differ diff --git a/superpower19classifier-zjx/template/negative/13200.png b/superpower19classifier-zjx/template/negative/13200.png new file mode 100644 index 0000000..533c90f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13200.png differ diff --git a/superpower19classifier-zjx/template/negative/13275.png b/superpower19classifier-zjx/template/negative/13275.png new file mode 100644 index 0000000..b214cb1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13275.png differ diff --git a/superpower19classifier-zjx/template/negative/133.png b/superpower19classifier-zjx/template/negative/133.png new file mode 100644 index 0000000..b1ed025 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/133.png differ diff --git a/superpower19classifier-zjx/template/negative/13300.png b/superpower19classifier-zjx/template/negative/13300.png new file mode 100644 index 0000000..43162e9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13300.png differ diff --git a/superpower19classifier-zjx/template/negative/13325.png b/superpower19classifier-zjx/template/negative/13325.png new file mode 100644 index 0000000..61929f5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13325.png differ diff --git a/superpower19classifier-zjx/template/negative/13350.png b/superpower19classifier-zjx/template/negative/13350.png new file mode 100644 index 0000000..af5aa0a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13350.png differ diff --git a/superpower19classifier-zjx/template/negative/13375.png b/superpower19classifier-zjx/template/negative/13375.png new file mode 100644 index 0000000..f8d761b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13375.png differ diff --git a/superpower19classifier-zjx/template/negative/134.png b/superpower19classifier-zjx/template/negative/134.png new file mode 100644 index 0000000..2a5f686 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/134.png differ diff --git a/superpower19classifier-zjx/template/negative/13400.png b/superpower19classifier-zjx/template/negative/13400.png new file mode 100644 index 0000000..1e9536c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13400.png differ diff --git a/superpower19classifier-zjx/template/negative/13425.png b/superpower19classifier-zjx/template/negative/13425.png new file mode 100644 index 0000000..ce9e8ed Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13425.png differ diff --git a/superpower19classifier-zjx/template/negative/13450.png b/superpower19classifier-zjx/template/negative/13450.png new file mode 100644 index 0000000..6a8414a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13450.png differ diff --git a/superpower19classifier-zjx/template/negative/135.png b/superpower19classifier-zjx/template/negative/135.png new file mode 100644 index 0000000..6e3a787 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/135.png differ diff --git a/superpower19classifier-zjx/template/negative/13500.png b/superpower19classifier-zjx/template/negative/13500.png new file mode 100644 index 0000000..b59232f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13500.png differ diff --git a/superpower19classifier-zjx/template/negative/13550.png b/superpower19classifier-zjx/template/negative/13550.png new file mode 100644 index 0000000..9386029 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13550.png differ diff --git a/superpower19classifier-zjx/template/negative/136.png b/superpower19classifier-zjx/template/negative/136.png new file mode 100644 index 0000000..0faa10e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/136.png differ diff --git a/superpower19classifier-zjx/template/negative/13600.png b/superpower19classifier-zjx/template/negative/13600.png new file mode 100644 index 0000000..a953cd7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13600.png differ diff --git a/superpower19classifier-zjx/template/negative/13650.png b/superpower19classifier-zjx/template/negative/13650.png new file mode 100644 index 0000000..d9ea831 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13650.png differ diff --git a/superpower19classifier-zjx/template/negative/13675.png b/superpower19classifier-zjx/template/negative/13675.png new file mode 100644 index 0000000..7214046 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13675.png differ diff --git a/superpower19classifier-zjx/template/negative/136_00.png b/superpower19classifier-zjx/template/negative/136_00.png new file mode 100644 index 0000000..809549c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/136_00.png differ diff --git a/superpower19classifier-zjx/template/negative/136_extra0.png b/superpower19classifier-zjx/template/negative/136_extra0.png new file mode 100644 index 0000000..f1576a6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/136_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/137.png b/superpower19classifier-zjx/template/negative/137.png new file mode 100644 index 0000000..adcefa4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/137.png differ diff --git a/superpower19classifier-zjx/template/negative/13750.png b/superpower19classifier-zjx/template/negative/13750.png new file mode 100644 index 0000000..2c7aa94 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13750.png differ diff --git a/superpower19classifier-zjx/template/negative/137_00.png b/superpower19classifier-zjx/template/negative/137_00.png new file mode 100644 index 0000000..293861d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/137_00.png differ diff --git a/superpower19classifier-zjx/template/negative/137_extra0.png b/superpower19classifier-zjx/template/negative/137_extra0.png new file mode 100644 index 0000000..f344a45 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/137_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/138.png b/superpower19classifier-zjx/template/negative/138.png new file mode 100644 index 0000000..7201821 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/138.png differ diff --git a/superpower19classifier-zjx/template/negative/13800.png b/superpower19classifier-zjx/template/negative/13800.png new file mode 100644 index 0000000..ff8e4c0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13800.png differ diff --git a/superpower19classifier-zjx/template/negative/13825.png b/superpower19classifier-zjx/template/negative/13825.png new file mode 100644 index 0000000..97d193a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13825.png differ diff --git a/superpower19classifier-zjx/template/negative/13850.png b/superpower19classifier-zjx/template/negative/13850.png new file mode 100644 index 0000000..f0135cc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13850.png differ diff --git a/superpower19classifier-zjx/template/negative/13875.png b/superpower19classifier-zjx/template/negative/13875.png new file mode 100644 index 0000000..9af436f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13875.png differ diff --git a/superpower19classifier-zjx/template/negative/138_00.png b/superpower19classifier-zjx/template/negative/138_00.png new file mode 100644 index 0000000..5218105 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/138_00.png differ diff --git a/superpower19classifier-zjx/template/negative/138_hero0.png b/superpower19classifier-zjx/template/negative/138_hero0.png new file mode 100644 index 0000000..6b1220e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/138_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/139.png b/superpower19classifier-zjx/template/negative/139.png new file mode 100644 index 0000000..74479ea Binary files /dev/null and b/superpower19classifier-zjx/template/negative/139.png differ diff --git a/superpower19classifier-zjx/template/negative/13900.png b/superpower19classifier-zjx/template/negative/13900.png new file mode 100644 index 0000000..276cd6b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13900.png differ diff --git a/superpower19classifier-zjx/template/negative/13925.png b/superpower19classifier-zjx/template/negative/13925.png new file mode 100644 index 0000000..2f39296 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/13925.png differ diff --git a/superpower19classifier-zjx/template/negative/139_00.png b/superpower19classifier-zjx/template/negative/139_00.png new file mode 100644 index 0000000..a3eac9d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/139_00.png differ diff --git a/superpower19classifier-zjx/template/negative/139_extra0.png b/superpower19classifier-zjx/template/negative/139_extra0.png new file mode 100644 index 0000000..b9904de Binary files /dev/null and b/superpower19classifier-zjx/template/negative/139_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/139_hero0.png b/superpower19classifier-zjx/template/negative/139_hero0.png new file mode 100644 index 0000000..aacd463 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/139_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/14.png b/superpower19classifier-zjx/template/negative/14.png new file mode 100644 index 0000000..970cf6b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14.png differ diff --git a/superpower19classifier-zjx/template/negative/140.png b/superpower19classifier-zjx/template/negative/140.png new file mode 100644 index 0000000..5610183 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/140.png differ diff --git a/superpower19classifier-zjx/template/negative/14050.png b/superpower19classifier-zjx/template/negative/14050.png new file mode 100644 index 0000000..9b8fdcd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14050.png differ diff --git a/superpower19classifier-zjx/template/negative/141.png b/superpower19classifier-zjx/template/negative/141.png new file mode 100644 index 0000000..2ad6390 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/141.png differ diff --git a/superpower19classifier-zjx/template/negative/14125.png b/superpower19classifier-zjx/template/negative/14125.png new file mode 100644 index 0000000..0505138 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14125.png differ diff --git a/superpower19classifier-zjx/template/negative/14150.png b/superpower19classifier-zjx/template/negative/14150.png new file mode 100644 index 0000000..f42d374 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14150.png differ diff --git a/superpower19classifier-zjx/template/negative/142.png b/superpower19classifier-zjx/template/negative/142.png new file mode 100644 index 0000000..47be8b8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/142.png differ diff --git a/superpower19classifier-zjx/template/negative/14250.png b/superpower19classifier-zjx/template/negative/14250.png new file mode 100644 index 0000000..8acc494 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14250.png differ diff --git a/superpower19classifier-zjx/template/negative/14275.png b/superpower19classifier-zjx/template/negative/14275.png new file mode 100644 index 0000000..e89d0e6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14275.png differ diff --git a/superpower19classifier-zjx/template/negative/143.png b/superpower19classifier-zjx/template/negative/143.png new file mode 100644 index 0000000..a504810 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/143.png differ diff --git a/superpower19classifier-zjx/template/negative/14300.png b/superpower19classifier-zjx/template/negative/14300.png new file mode 100644 index 0000000..48385fe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14300.png differ diff --git a/superpower19classifier-zjx/template/negative/14350.png b/superpower19classifier-zjx/template/negative/14350.png new file mode 100644 index 0000000..72601b5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14350.png differ diff --git a/superpower19classifier-zjx/template/negative/144.png b/superpower19classifier-zjx/template/negative/144.png new file mode 100644 index 0000000..2825390 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/144.png differ diff --git a/superpower19classifier-zjx/template/negative/14425.png b/superpower19classifier-zjx/template/negative/14425.png new file mode 100644 index 0000000..3da7768 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14425.png differ diff --git a/superpower19classifier-zjx/template/negative/145.png b/superpower19classifier-zjx/template/negative/145.png new file mode 100644 index 0000000..e5d18a4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/145.png differ diff --git a/superpower19classifier-zjx/template/negative/14500.png b/superpower19classifier-zjx/template/negative/14500.png new file mode 100644 index 0000000..a7b1855 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14500.png differ diff --git a/superpower19classifier-zjx/template/negative/14525.png b/superpower19classifier-zjx/template/negative/14525.png new file mode 100644 index 0000000..2edc776 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14525.png differ diff --git a/superpower19classifier-zjx/template/negative/14550.png b/superpower19classifier-zjx/template/negative/14550.png new file mode 100644 index 0000000..c0af795 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14550.png differ diff --git a/superpower19classifier-zjx/template/negative/14575.png b/superpower19classifier-zjx/template/negative/14575.png new file mode 100644 index 0000000..31ae61e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14575.png differ diff --git a/superpower19classifier-zjx/template/negative/146.png b/superpower19classifier-zjx/template/negative/146.png new file mode 100644 index 0000000..bead33d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/146.png differ diff --git a/superpower19classifier-zjx/template/negative/14600.png b/superpower19classifier-zjx/template/negative/14600.png new file mode 100644 index 0000000..0454b6b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14600.png differ diff --git a/superpower19classifier-zjx/template/negative/14625.png b/superpower19classifier-zjx/template/negative/14625.png new file mode 100644 index 0000000..1b35671 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14625.png differ diff --git a/superpower19classifier-zjx/template/negative/147.png b/superpower19classifier-zjx/template/negative/147.png new file mode 100644 index 0000000..f143d62 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/147.png differ diff --git a/superpower19classifier-zjx/template/negative/14775.png b/superpower19classifier-zjx/template/negative/14775.png new file mode 100644 index 0000000..f370f3c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14775.png differ diff --git a/superpower19classifier-zjx/template/negative/148.png b/superpower19classifier-zjx/template/negative/148.png new file mode 100644 index 0000000..9bd0abe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/148.png differ diff --git a/superpower19classifier-zjx/template/negative/14800.png b/superpower19classifier-zjx/template/negative/14800.png new file mode 100644 index 0000000..cde031c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14800.png differ diff --git a/superpower19classifier-zjx/template/negative/149.png b/superpower19classifier-zjx/template/negative/149.png new file mode 100644 index 0000000..4096dbb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/149.png differ diff --git a/superpower19classifier-zjx/template/negative/14900.png b/superpower19classifier-zjx/template/negative/14900.png new file mode 100644 index 0000000..dde0d7f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14900.png differ diff --git a/superpower19classifier-zjx/template/negative/14925.png b/superpower19classifier-zjx/template/negative/14925.png new file mode 100644 index 0000000..34c0350 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/14925.png differ diff --git a/superpower19classifier-zjx/template/negative/15.png b/superpower19classifier-zjx/template/negative/15.png new file mode 100644 index 0000000..f46c850 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15.png differ diff --git a/superpower19classifier-zjx/template/negative/150.png b/superpower19classifier-zjx/template/negative/150.png new file mode 100644 index 0000000..50e1b71 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/150.png differ diff --git a/superpower19classifier-zjx/template/negative/15025.png b/superpower19classifier-zjx/template/negative/15025.png new file mode 100644 index 0000000..a673d14 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15025.png differ diff --git a/superpower19classifier-zjx/template/negative/15050.png b/superpower19classifier-zjx/template/negative/15050.png new file mode 100644 index 0000000..4c5776b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15050.png differ diff --git a/superpower19classifier-zjx/template/negative/151.png b/superpower19classifier-zjx/template/negative/151.png new file mode 100644 index 0000000..91d73a8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/151.png differ diff --git a/superpower19classifier-zjx/template/negative/15100.png b/superpower19classifier-zjx/template/negative/15100.png new file mode 100644 index 0000000..304440e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15100.png differ diff --git a/superpower19classifier-zjx/template/negative/151_00.png b/superpower19classifier-zjx/template/negative/151_00.png new file mode 100644 index 0000000..f99cdb6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/151_00.png differ diff --git a/superpower19classifier-zjx/template/negative/152.png b/superpower19classifier-zjx/template/negative/152.png new file mode 100644 index 0000000..ec282aa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/152.png differ diff --git a/superpower19classifier-zjx/template/negative/15225.png b/superpower19classifier-zjx/template/negative/15225.png new file mode 100644 index 0000000..4139553 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15225.png differ diff --git a/superpower19classifier-zjx/template/negative/15250.png b/superpower19classifier-zjx/template/negative/15250.png new file mode 100644 index 0000000..44c9235 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15250.png differ diff --git a/superpower19classifier-zjx/template/negative/15275.png b/superpower19classifier-zjx/template/negative/15275.png new file mode 100644 index 0000000..9093037 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15275.png differ diff --git a/superpower19classifier-zjx/template/negative/153.png b/superpower19classifier-zjx/template/negative/153.png new file mode 100644 index 0000000..bdb1c55 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/153.png differ diff --git a/superpower19classifier-zjx/template/negative/15300.png b/superpower19classifier-zjx/template/negative/15300.png new file mode 100644 index 0000000..403aba2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15300.png differ diff --git a/superpower19classifier-zjx/template/negative/15350.png b/superpower19classifier-zjx/template/negative/15350.png new file mode 100644 index 0000000..ef58ea7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15350.png differ diff --git a/superpower19classifier-zjx/template/negative/15375.png b/superpower19classifier-zjx/template/negative/15375.png new file mode 100644 index 0000000..a6550c1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15375.png differ diff --git a/superpower19classifier-zjx/template/negative/153_00.png b/superpower19classifier-zjx/template/negative/153_00.png new file mode 100644 index 0000000..3172f74 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/153_00.png differ diff --git a/superpower19classifier-zjx/template/negative/154.png b/superpower19classifier-zjx/template/negative/154.png new file mode 100644 index 0000000..0ed522d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/154.png differ diff --git a/superpower19classifier-zjx/template/negative/15400.png b/superpower19classifier-zjx/template/negative/15400.png new file mode 100644 index 0000000..1b1ec57 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15400.png differ diff --git a/superpower19classifier-zjx/template/negative/15425.png b/superpower19classifier-zjx/template/negative/15425.png new file mode 100644 index 0000000..0cd2795 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15425.png differ diff --git a/superpower19classifier-zjx/template/negative/15450.png b/superpower19classifier-zjx/template/negative/15450.png new file mode 100644 index 0000000..a3e53fc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15450.png differ diff --git a/superpower19classifier-zjx/template/negative/155.png b/superpower19classifier-zjx/template/negative/155.png new file mode 100644 index 0000000..1b3874e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/155.png differ diff --git a/superpower19classifier-zjx/template/negative/15500.png b/superpower19classifier-zjx/template/negative/15500.png new file mode 100644 index 0000000..0425835 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15500.png differ diff --git a/superpower19classifier-zjx/template/negative/15525.png b/superpower19classifier-zjx/template/negative/15525.png new file mode 100644 index 0000000..56d7a18 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15525.png differ diff --git a/superpower19classifier-zjx/template/negative/15550.png b/superpower19classifier-zjx/template/negative/15550.png new file mode 100644 index 0000000..a0820d2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15550.png differ diff --git a/superpower19classifier-zjx/template/negative/155_00.png b/superpower19classifier-zjx/template/negative/155_00.png new file mode 100644 index 0000000..89b8597 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/155_00.png differ diff --git a/superpower19classifier-zjx/template/negative/156.png b/superpower19classifier-zjx/template/negative/156.png new file mode 100644 index 0000000..ecaf2a6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/156.png differ diff --git a/superpower19classifier-zjx/template/negative/15625.png b/superpower19classifier-zjx/template/negative/15625.png new file mode 100644 index 0000000..e7bcc72 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15625.png differ diff --git a/superpower19classifier-zjx/template/negative/15650.png b/superpower19classifier-zjx/template/negative/15650.png new file mode 100644 index 0000000..7896dd8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15650.png differ diff --git a/superpower19classifier-zjx/template/negative/15675.png b/superpower19classifier-zjx/template/negative/15675.png new file mode 100644 index 0000000..512b4df Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15675.png differ diff --git a/superpower19classifier-zjx/template/negative/157.png b/superpower19classifier-zjx/template/negative/157.png new file mode 100644 index 0000000..f7da738 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/157.png differ diff --git a/superpower19classifier-zjx/template/negative/15700.png b/superpower19classifier-zjx/template/negative/15700.png new file mode 100644 index 0000000..726e9b8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15700.png differ diff --git a/superpower19classifier-zjx/template/negative/15725.png b/superpower19classifier-zjx/template/negative/15725.png new file mode 100644 index 0000000..4a046fb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15725.png differ diff --git a/superpower19classifier-zjx/template/negative/15750.png b/superpower19classifier-zjx/template/negative/15750.png new file mode 100644 index 0000000..35ada6b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15750.png differ diff --git a/superpower19classifier-zjx/template/negative/15775.png b/superpower19classifier-zjx/template/negative/15775.png new file mode 100644 index 0000000..534fba6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15775.png differ diff --git a/superpower19classifier-zjx/template/negative/157_00.png b/superpower19classifier-zjx/template/negative/157_00.png new file mode 100644 index 0000000..32d78be Binary files /dev/null and b/superpower19classifier-zjx/template/negative/157_00.png differ diff --git a/superpower19classifier-zjx/template/negative/158.png b/superpower19classifier-zjx/template/negative/158.png new file mode 100644 index 0000000..957cc19 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/158.png differ diff --git a/superpower19classifier-zjx/template/negative/15800.png b/superpower19classifier-zjx/template/negative/15800.png new file mode 100644 index 0000000..7c245bf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15800.png differ diff --git a/superpower19classifier-zjx/template/negative/15850.png b/superpower19classifier-zjx/template/negative/15850.png new file mode 100644 index 0000000..db28eaf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15850.png differ diff --git a/superpower19classifier-zjx/template/negative/159.png b/superpower19classifier-zjx/template/negative/159.png new file mode 100644 index 0000000..f1ec7ae Binary files /dev/null and b/superpower19classifier-zjx/template/negative/159.png differ diff --git a/superpower19classifier-zjx/template/negative/15900.png b/superpower19classifier-zjx/template/negative/15900.png new file mode 100644 index 0000000..65e68df Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15900.png differ diff --git a/superpower19classifier-zjx/template/negative/15925.png b/superpower19classifier-zjx/template/negative/15925.png new file mode 100644 index 0000000..1fb28f2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15925.png differ diff --git a/superpower19classifier-zjx/template/negative/15950.png b/superpower19classifier-zjx/template/negative/15950.png new file mode 100644 index 0000000..5dca669 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15950.png differ diff --git a/superpower19classifier-zjx/template/negative/15975.png b/superpower19classifier-zjx/template/negative/15975.png new file mode 100644 index 0000000..dd628b1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15975.png differ diff --git a/superpower19classifier-zjx/template/negative/15_00.png b/superpower19classifier-zjx/template/negative/15_00.png new file mode 100644 index 0000000..f867d5f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15_00.png differ diff --git a/superpower19classifier-zjx/template/negative/15_hero0.png b/superpower19classifier-zjx/template/negative/15_hero0.png new file mode 100644 index 0000000..5b0397b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/15_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/16.png b/superpower19classifier-zjx/template/negative/16.png new file mode 100644 index 0000000..097fa40 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16.png differ diff --git a/superpower19classifier-zjx/template/negative/160.png b/superpower19classifier-zjx/template/negative/160.png new file mode 100644 index 0000000..d30b1a9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/160.png differ diff --git a/superpower19classifier-zjx/template/negative/16025.png b/superpower19classifier-zjx/template/negative/16025.png new file mode 100644 index 0000000..30a34f2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16025.png differ diff --git a/superpower19classifier-zjx/template/negative/161.png b/superpower19classifier-zjx/template/negative/161.png new file mode 100644 index 0000000..c061627 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/161.png differ diff --git a/superpower19classifier-zjx/template/negative/16125.png b/superpower19classifier-zjx/template/negative/16125.png new file mode 100644 index 0000000..7e01128 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16125.png differ diff --git a/superpower19classifier-zjx/template/negative/16175.png b/superpower19classifier-zjx/template/negative/16175.png new file mode 100644 index 0000000..c52bb22 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16175.png differ diff --git a/superpower19classifier-zjx/template/negative/162.png b/superpower19classifier-zjx/template/negative/162.png new file mode 100644 index 0000000..a4755e2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/162.png differ diff --git a/superpower19classifier-zjx/template/negative/16200.png b/superpower19classifier-zjx/template/negative/16200.png new file mode 100644 index 0000000..c692283 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16200.png differ diff --git a/superpower19classifier-zjx/template/negative/16225.png b/superpower19classifier-zjx/template/negative/16225.png new file mode 100644 index 0000000..cea7372 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16225.png differ diff --git a/superpower19classifier-zjx/template/negative/16275.png b/superpower19classifier-zjx/template/negative/16275.png new file mode 100644 index 0000000..2fa442d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16275.png differ diff --git a/superpower19classifier-zjx/template/negative/163.png b/superpower19classifier-zjx/template/negative/163.png new file mode 100644 index 0000000..0f4510b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/163.png differ diff --git a/superpower19classifier-zjx/template/negative/16300.png b/superpower19classifier-zjx/template/negative/16300.png new file mode 100644 index 0000000..7c94687 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16300.png differ diff --git a/superpower19classifier-zjx/template/negative/164.png b/superpower19classifier-zjx/template/negative/164.png new file mode 100644 index 0000000..a2696f1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/164.png differ diff --git a/superpower19classifier-zjx/template/negative/165.png b/superpower19classifier-zjx/template/negative/165.png new file mode 100644 index 0000000..09b0c8b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/165.png differ diff --git a/superpower19classifier-zjx/template/negative/166.png b/superpower19classifier-zjx/template/negative/166.png new file mode 100644 index 0000000..2b1df22 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/166.png differ diff --git a/superpower19classifier-zjx/template/negative/167.png b/superpower19classifier-zjx/template/negative/167.png new file mode 100644 index 0000000..0fa2ab7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/167.png differ diff --git a/superpower19classifier-zjx/template/negative/168.png b/superpower19classifier-zjx/template/negative/168.png new file mode 100644 index 0000000..b93c05f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/168.png differ diff --git a/superpower19classifier-zjx/template/negative/169.png b/superpower19classifier-zjx/template/negative/169.png new file mode 100644 index 0000000..58837e2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/169.png differ diff --git a/superpower19classifier-zjx/template/negative/1697_extra0.png b/superpower19classifier-zjx/template/negative/1697_extra0.png new file mode 100644 index 0000000..127dd19 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/1697_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/16_extra0.png b/superpower19classifier-zjx/template/negative/16_extra0.png new file mode 100644 index 0000000..b314050 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/16_hero0.png b/superpower19classifier-zjx/template/negative/16_hero0.png new file mode 100644 index 0000000..7f21f06 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/16_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/17.png b/superpower19classifier-zjx/template/negative/17.png new file mode 100644 index 0000000..dcc48b9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/17.png differ diff --git a/superpower19classifier-zjx/template/negative/170.png b/superpower19classifier-zjx/template/negative/170.png new file mode 100644 index 0000000..5369c7e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/170.png differ diff --git a/superpower19classifier-zjx/template/negative/171.png b/superpower19classifier-zjx/template/negative/171.png new file mode 100644 index 0000000..c9937a0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/171.png differ diff --git a/superpower19classifier-zjx/template/negative/172.png b/superpower19classifier-zjx/template/negative/172.png new file mode 100644 index 0000000..69e5a02 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/172.png differ diff --git a/superpower19classifier-zjx/template/negative/173.png b/superpower19classifier-zjx/template/negative/173.png new file mode 100644 index 0000000..58557bd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/173.png differ diff --git a/superpower19classifier-zjx/template/negative/174.png b/superpower19classifier-zjx/template/negative/174.png new file mode 100644 index 0000000..2b16583 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/174.png differ diff --git a/superpower19classifier-zjx/template/negative/174_00.png b/superpower19classifier-zjx/template/negative/174_00.png new file mode 100644 index 0000000..a8aa758 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/174_00.png differ diff --git a/superpower19classifier-zjx/template/negative/175.png b/superpower19classifier-zjx/template/negative/175.png new file mode 100644 index 0000000..2655f5a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/175.png differ diff --git a/superpower19classifier-zjx/template/negative/175_extra0.png b/superpower19classifier-zjx/template/negative/175_extra0.png new file mode 100644 index 0000000..45299d5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/175_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/176.png b/superpower19classifier-zjx/template/negative/176.png new file mode 100644 index 0000000..81cc6dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/176.png differ diff --git a/superpower19classifier-zjx/template/negative/176_00.png b/superpower19classifier-zjx/template/negative/176_00.png new file mode 100644 index 0000000..dbf6370 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/176_00.png differ diff --git a/superpower19classifier-zjx/template/negative/177.png b/superpower19classifier-zjx/template/negative/177.png new file mode 100644 index 0000000..536d86a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/177.png differ diff --git a/superpower19classifier-zjx/template/negative/177_00.png b/superpower19classifier-zjx/template/negative/177_00.png new file mode 100644 index 0000000..bee23d0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/177_00.png differ diff --git a/superpower19classifier-zjx/template/negative/178.png b/superpower19classifier-zjx/template/negative/178.png new file mode 100644 index 0000000..e88532e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/178.png differ diff --git a/superpower19classifier-zjx/template/negative/178_extra0.png b/superpower19classifier-zjx/template/negative/178_extra0.png new file mode 100644 index 0000000..830b229 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/178_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/179.png b/superpower19classifier-zjx/template/negative/179.png new file mode 100644 index 0000000..7d07553 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/179.png differ diff --git a/superpower19classifier-zjx/template/negative/179_00.png b/superpower19classifier-zjx/template/negative/179_00.png new file mode 100644 index 0000000..0b956c4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/179_00.png differ diff --git a/superpower19classifier-zjx/template/negative/17_extra0.png b/superpower19classifier-zjx/template/negative/17_extra0.png new file mode 100644 index 0000000..b3f0529 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/17_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/17_hero0.png b/superpower19classifier-zjx/template/negative/17_hero0.png new file mode 100644 index 0000000..6640732 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/17_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/18.png b/superpower19classifier-zjx/template/negative/18.png new file mode 100644 index 0000000..7df7647 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/18.png differ diff --git a/superpower19classifier-zjx/template/negative/180.png b/superpower19classifier-zjx/template/negative/180.png new file mode 100644 index 0000000..b555c21 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/180.png differ diff --git a/superpower19classifier-zjx/template/negative/181.png b/superpower19classifier-zjx/template/negative/181.png new file mode 100644 index 0000000..b9da6ef Binary files /dev/null and b/superpower19classifier-zjx/template/negative/181.png differ diff --git a/superpower19classifier-zjx/template/negative/182.png b/superpower19classifier-zjx/template/negative/182.png new file mode 100644 index 0000000..07e7eb1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/182.png differ diff --git a/superpower19classifier-zjx/template/negative/183.png b/superpower19classifier-zjx/template/negative/183.png new file mode 100644 index 0000000..f0c3f81 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/183.png differ diff --git a/superpower19classifier-zjx/template/negative/185.png b/superpower19classifier-zjx/template/negative/185.png new file mode 100644 index 0000000..e0881ef Binary files /dev/null and b/superpower19classifier-zjx/template/negative/185.png differ diff --git a/superpower19classifier-zjx/template/negative/186.png b/superpower19classifier-zjx/template/negative/186.png new file mode 100644 index 0000000..001a51a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/186.png differ diff --git a/superpower19classifier-zjx/template/negative/187.png b/superpower19classifier-zjx/template/negative/187.png new file mode 100644 index 0000000..aeb8da6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/187.png differ diff --git a/superpower19classifier-zjx/template/negative/188.png b/superpower19classifier-zjx/template/negative/188.png new file mode 100644 index 0000000..7d44ca6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/188.png differ diff --git a/superpower19classifier-zjx/template/negative/189.png b/superpower19classifier-zjx/template/negative/189.png new file mode 100644 index 0000000..b9e67dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/189.png differ diff --git a/superpower19classifier-zjx/template/negative/19.png b/superpower19classifier-zjx/template/negative/19.png new file mode 100644 index 0000000..4d11ada Binary files /dev/null and b/superpower19classifier-zjx/template/negative/19.png differ diff --git a/superpower19classifier-zjx/template/negative/190.png b/superpower19classifier-zjx/template/negative/190.png new file mode 100644 index 0000000..1cc8765 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/190.png differ diff --git a/superpower19classifier-zjx/template/negative/191.png b/superpower19classifier-zjx/template/negative/191.png new file mode 100644 index 0000000..733c881 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/191.png differ diff --git a/superpower19classifier-zjx/template/negative/192.png b/superpower19classifier-zjx/template/negative/192.png new file mode 100644 index 0000000..3b12e98 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/192.png differ diff --git a/superpower19classifier-zjx/template/negative/193.png b/superpower19classifier-zjx/template/negative/193.png new file mode 100644 index 0000000..fd26a5b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/193.png differ diff --git a/superpower19classifier-zjx/template/negative/194.png b/superpower19classifier-zjx/template/negative/194.png new file mode 100644 index 0000000..446d7d8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/194.png differ diff --git a/superpower19classifier-zjx/template/negative/195.png b/superpower19classifier-zjx/template/negative/195.png new file mode 100644 index 0000000..85c0df4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/195.png differ diff --git a/superpower19classifier-zjx/template/negative/196.png b/superpower19classifier-zjx/template/negative/196.png new file mode 100644 index 0000000..6cd1233 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/196.png differ diff --git a/superpower19classifier-zjx/template/negative/197.png b/superpower19classifier-zjx/template/negative/197.png new file mode 100644 index 0000000..cf3a44d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/197.png differ diff --git a/superpower19classifier-zjx/template/negative/198.png b/superpower19classifier-zjx/template/negative/198.png new file mode 100644 index 0000000..663bac2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/198.png differ diff --git a/superpower19classifier-zjx/template/negative/199.png b/superpower19classifier-zjx/template/negative/199.png new file mode 100644 index 0000000..94ca270 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/199.png differ diff --git a/superpower19classifier-zjx/template/negative/1_00.png b/superpower19classifier-zjx/template/negative/1_00.png new file mode 100644 index 0000000..8ec0ad4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/1_00.png differ diff --git a/superpower19classifier-zjx/template/negative/1_hero0.png b/superpower19classifier-zjx/template/negative/1_hero0.png new file mode 100644 index 0000000..77bf175 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/1_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/2.png b/superpower19classifier-zjx/template/negative/2.png new file mode 100644 index 0000000..ef54c92 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/2.png differ diff --git a/superpower19classifier-zjx/template/negative/20.png b/superpower19classifier-zjx/template/negative/20.png new file mode 100644 index 0000000..ae26a87 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/20.png differ diff --git a/superpower19classifier-zjx/template/negative/200.png b/superpower19classifier-zjx/template/negative/200.png new file mode 100644 index 0000000..4eb31cd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/200.png differ diff --git a/superpower19classifier-zjx/template/negative/201.png b/superpower19classifier-zjx/template/negative/201.png new file mode 100644 index 0000000..3d80b29 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/201.png differ diff --git a/superpower19classifier-zjx/template/negative/202.png b/superpower19classifier-zjx/template/negative/202.png new file mode 100644 index 0000000..62512ad Binary files /dev/null and b/superpower19classifier-zjx/template/negative/202.png differ diff --git a/superpower19classifier-zjx/template/negative/202_00.png b/superpower19classifier-zjx/template/negative/202_00.png new file mode 100644 index 0000000..475314b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/202_00.png differ diff --git a/superpower19classifier-zjx/template/negative/203.png b/superpower19classifier-zjx/template/negative/203.png new file mode 100644 index 0000000..ca50a4a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/203.png differ diff --git a/superpower19classifier-zjx/template/negative/204.png b/superpower19classifier-zjx/template/negative/204.png new file mode 100644 index 0000000..a2d9492 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/204.png differ diff --git a/superpower19classifier-zjx/template/negative/204_00.png b/superpower19classifier-zjx/template/negative/204_00.png new file mode 100644 index 0000000..0913990 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/204_00.png differ diff --git a/superpower19classifier-zjx/template/negative/205.png b/superpower19classifier-zjx/template/negative/205.png new file mode 100644 index 0000000..7ee3d21 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/205.png differ diff --git a/superpower19classifier-zjx/template/negative/206.png b/superpower19classifier-zjx/template/negative/206.png new file mode 100644 index 0000000..ad78823 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/206.png differ diff --git a/superpower19classifier-zjx/template/negative/206_00.png b/superpower19classifier-zjx/template/negative/206_00.png new file mode 100644 index 0000000..d8a5817 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/206_00.png differ diff --git a/superpower19classifier-zjx/template/negative/207.png b/superpower19classifier-zjx/template/negative/207.png new file mode 100644 index 0000000..703f480 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/207.png differ diff --git a/superpower19classifier-zjx/template/negative/208.png b/superpower19classifier-zjx/template/negative/208.png new file mode 100644 index 0000000..af435d3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/208.png differ diff --git a/superpower19classifier-zjx/template/negative/208_00.png b/superpower19classifier-zjx/template/negative/208_00.png new file mode 100644 index 0000000..922cce8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/208_00.png differ diff --git a/superpower19classifier-zjx/template/negative/209.png b/superpower19classifier-zjx/template/negative/209.png new file mode 100644 index 0000000..446a58e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/209.png differ diff --git a/superpower19classifier-zjx/template/negative/21.png b/superpower19classifier-zjx/template/negative/21.png new file mode 100644 index 0000000..ac23c6b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/21.png differ diff --git a/superpower19classifier-zjx/template/negative/210.png b/superpower19classifier-zjx/template/negative/210.png new file mode 100644 index 0000000..5da8d51 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/210.png differ diff --git a/superpower19classifier-zjx/template/negative/211.png b/superpower19classifier-zjx/template/negative/211.png new file mode 100644 index 0000000..2f26be7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/211.png differ diff --git a/superpower19classifier-zjx/template/negative/212.png b/superpower19classifier-zjx/template/negative/212.png new file mode 100644 index 0000000..75201b5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/212.png differ diff --git a/superpower19classifier-zjx/template/negative/213.png b/superpower19classifier-zjx/template/negative/213.png new file mode 100644 index 0000000..49ded25 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/213.png differ diff --git a/superpower19classifier-zjx/template/negative/214.png b/superpower19classifier-zjx/template/negative/214.png new file mode 100644 index 0000000..bfa047f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/214.png differ diff --git a/superpower19classifier-zjx/template/negative/215.png b/superpower19classifier-zjx/template/negative/215.png new file mode 100644 index 0000000..bf4659b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/215.png differ diff --git a/superpower19classifier-zjx/template/negative/216.png b/superpower19classifier-zjx/template/negative/216.png new file mode 100644 index 0000000..7260581 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/216.png differ diff --git a/superpower19classifier-zjx/template/negative/217.png b/superpower19classifier-zjx/template/negative/217.png new file mode 100644 index 0000000..bfffaf6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/217.png differ diff --git a/superpower19classifier-zjx/template/negative/219.png b/superpower19classifier-zjx/template/negative/219.png new file mode 100644 index 0000000..367cb3f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/219.png differ diff --git a/superpower19classifier-zjx/template/negative/22.png b/superpower19classifier-zjx/template/negative/22.png new file mode 100644 index 0000000..e89d9da Binary files /dev/null and b/superpower19classifier-zjx/template/negative/22.png differ diff --git a/superpower19classifier-zjx/template/negative/220.png b/superpower19classifier-zjx/template/negative/220.png new file mode 100644 index 0000000..a5fec8a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220.png differ diff --git a/superpower19classifier-zjx/template/negative/22000.png b/superpower19classifier-zjx/template/negative/22000.png new file mode 100644 index 0000000..26ecd89 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/22000.png differ diff --git a/superpower19classifier-zjx/template/negative/220011.png b/superpower19classifier-zjx/template/negative/220011.png new file mode 100644 index 0000000..7d5e3fe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220011.png differ diff --git a/superpower19classifier-zjx/template/negative/2200128.png b/superpower19classifier-zjx/template/negative/2200128.png new file mode 100644 index 0000000..745cd3c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/2200128.png differ diff --git a/superpower19classifier-zjx/template/negative/220014.png b/superpower19classifier-zjx/template/negative/220014.png new file mode 100644 index 0000000..366f97b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220014.png differ diff --git a/superpower19classifier-zjx/template/negative/220019.png b/superpower19classifier-zjx/template/negative/220019.png new file mode 100644 index 0000000..23a83b4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220019.png differ diff --git a/superpower19classifier-zjx/template/negative/22002.png b/superpower19classifier-zjx/template/negative/22002.png new file mode 100644 index 0000000..859b8c8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/22002.png differ diff --git a/superpower19classifier-zjx/template/negative/220022.png b/superpower19classifier-zjx/template/negative/220022.png new file mode 100644 index 0000000..8443e99 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220022.png differ diff --git a/superpower19classifier-zjx/template/negative/220033.png b/superpower19classifier-zjx/template/negative/220033.png new file mode 100644 index 0000000..1188434 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220033.png differ diff --git a/superpower19classifier-zjx/template/negative/2200435.png b/superpower19classifier-zjx/template/negative/2200435.png new file mode 100644 index 0000000..1e0148e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/2200435.png differ diff --git a/superpower19classifier-zjx/template/negative/220045.png b/superpower19classifier-zjx/template/negative/220045.png new file mode 100644 index 0000000..7b7c804 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220045.png differ diff --git a/superpower19classifier-zjx/template/negative/220058.png b/superpower19classifier-zjx/template/negative/220058.png new file mode 100644 index 0000000..a86fbcc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220058.png differ diff --git a/superpower19classifier-zjx/template/negative/22007.png b/superpower19classifier-zjx/template/negative/22007.png new file mode 100644 index 0000000..05e52c0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/22007.png differ diff --git a/superpower19classifier-zjx/template/negative/220070.png b/superpower19classifier-zjx/template/negative/220070.png new file mode 100644 index 0000000..a0611cd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220070.png differ diff --git a/superpower19classifier-zjx/template/negative/220081.png b/superpower19classifier-zjx/template/negative/220081.png new file mode 100644 index 0000000..0f83292 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/220081.png differ diff --git a/superpower19classifier-zjx/template/negative/221.png b/superpower19classifier-zjx/template/negative/221.png new file mode 100644 index 0000000..9245b68 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/221.png differ diff --git a/superpower19classifier-zjx/template/negative/222.png b/superpower19classifier-zjx/template/negative/222.png new file mode 100644 index 0000000..2fa6af2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/222.png differ diff --git a/superpower19classifier-zjx/template/negative/223.png b/superpower19classifier-zjx/template/negative/223.png new file mode 100644 index 0000000..64e4eaa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/223.png differ diff --git a/superpower19classifier-zjx/template/negative/224.png b/superpower19classifier-zjx/template/negative/224.png new file mode 100644 index 0000000..81a880b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/224.png differ diff --git a/superpower19classifier-zjx/template/negative/225.png b/superpower19classifier-zjx/template/negative/225.png new file mode 100644 index 0000000..f077a63 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/225.png differ diff --git a/superpower19classifier-zjx/template/negative/226.png b/superpower19classifier-zjx/template/negative/226.png new file mode 100644 index 0000000..50e5629 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/226.png differ diff --git a/superpower19classifier-zjx/template/negative/227.png b/superpower19classifier-zjx/template/negative/227.png new file mode 100644 index 0000000..7eea437 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/227.png differ diff --git a/superpower19classifier-zjx/template/negative/228.png b/superpower19classifier-zjx/template/negative/228.png new file mode 100644 index 0000000..669326a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/228.png differ diff --git a/superpower19classifier-zjx/template/negative/229.png b/superpower19classifier-zjx/template/negative/229.png new file mode 100644 index 0000000..7696a93 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/229.png differ diff --git a/superpower19classifier-zjx/template/negative/23.png b/superpower19classifier-zjx/template/negative/23.png new file mode 100644 index 0000000..e7f6b66 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/23.png differ diff --git a/superpower19classifier-zjx/template/negative/230.png b/superpower19classifier-zjx/template/negative/230.png new file mode 100644 index 0000000..be8dc23 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/230.png differ diff --git a/superpower19classifier-zjx/template/negative/231.png b/superpower19classifier-zjx/template/negative/231.png new file mode 100644 index 0000000..6e81b69 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/231.png differ diff --git a/superpower19classifier-zjx/template/negative/232.png b/superpower19classifier-zjx/template/negative/232.png new file mode 100644 index 0000000..8a63430 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/232.png differ diff --git a/superpower19classifier-zjx/template/negative/233.png b/superpower19classifier-zjx/template/negative/233.png new file mode 100644 index 0000000..3972362 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/233.png differ diff --git a/superpower19classifier-zjx/template/negative/234.png b/superpower19classifier-zjx/template/negative/234.png new file mode 100644 index 0000000..285cacd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/234.png differ diff --git a/superpower19classifier-zjx/template/negative/235.png b/superpower19classifier-zjx/template/negative/235.png new file mode 100644 index 0000000..8b55991 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/235.png differ diff --git a/superpower19classifier-zjx/template/negative/236.png b/superpower19classifier-zjx/template/negative/236.png new file mode 100644 index 0000000..15f98a5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/236.png differ diff --git a/superpower19classifier-zjx/template/negative/237.png b/superpower19classifier-zjx/template/negative/237.png new file mode 100644 index 0000000..fbc12dc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/237.png differ diff --git a/superpower19classifier-zjx/template/negative/238.png b/superpower19classifier-zjx/template/negative/238.png new file mode 100644 index 0000000..06639ef Binary files /dev/null and b/superpower19classifier-zjx/template/negative/238.png differ diff --git a/superpower19classifier-zjx/template/negative/239.png b/superpower19classifier-zjx/template/negative/239.png new file mode 100644 index 0000000..66dcac6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/239.png differ diff --git a/superpower19classifier-zjx/template/negative/24.png b/superpower19classifier-zjx/template/negative/24.png new file mode 100644 index 0000000..da760c5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/24.png differ diff --git a/superpower19classifier-zjx/template/negative/240.png b/superpower19classifier-zjx/template/negative/240.png new file mode 100644 index 0000000..5d6b8af Binary files /dev/null and b/superpower19classifier-zjx/template/negative/240.png differ diff --git a/superpower19classifier-zjx/template/negative/241.png b/superpower19classifier-zjx/template/negative/241.png new file mode 100644 index 0000000..b30d62c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/241.png differ diff --git a/superpower19classifier-zjx/template/negative/242.png b/superpower19classifier-zjx/template/negative/242.png new file mode 100644 index 0000000..fc5cb98 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/242.png differ diff --git a/superpower19classifier-zjx/template/negative/243.png b/superpower19classifier-zjx/template/negative/243.png new file mode 100644 index 0000000..b973bae Binary files /dev/null and b/superpower19classifier-zjx/template/negative/243.png differ diff --git a/superpower19classifier-zjx/template/negative/244.png b/superpower19classifier-zjx/template/negative/244.png new file mode 100644 index 0000000..61d6038 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/244.png differ diff --git a/superpower19classifier-zjx/template/negative/245.png b/superpower19classifier-zjx/template/negative/245.png new file mode 100644 index 0000000..3663700 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/245.png differ diff --git a/superpower19classifier-zjx/template/negative/246.png b/superpower19classifier-zjx/template/negative/246.png new file mode 100644 index 0000000..07adb49 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/246.png differ diff --git a/superpower19classifier-zjx/template/negative/247.png b/superpower19classifier-zjx/template/negative/247.png new file mode 100644 index 0000000..91beb7d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/247.png differ diff --git a/superpower19classifier-zjx/template/negative/248.png b/superpower19classifier-zjx/template/negative/248.png new file mode 100644 index 0000000..84dc895 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/248.png differ diff --git a/superpower19classifier-zjx/template/negative/249.png b/superpower19classifier-zjx/template/negative/249.png new file mode 100644 index 0000000..519d0d9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/249.png differ diff --git a/superpower19classifier-zjx/template/negative/25.png b/superpower19classifier-zjx/template/negative/25.png new file mode 100644 index 0000000..460d31f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/25.png differ diff --git a/superpower19classifier-zjx/template/negative/250.png b/superpower19classifier-zjx/template/negative/250.png new file mode 100644 index 0000000..82eb752 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/250.png differ diff --git a/superpower19classifier-zjx/template/negative/251.png b/superpower19classifier-zjx/template/negative/251.png new file mode 100644 index 0000000..5a7b0b2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/251.png differ diff --git a/superpower19classifier-zjx/template/negative/252.png b/superpower19classifier-zjx/template/negative/252.png new file mode 100644 index 0000000..0c75e3a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/252.png differ diff --git a/superpower19classifier-zjx/template/negative/253.png b/superpower19classifier-zjx/template/negative/253.png new file mode 100644 index 0000000..408a17c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/253.png differ diff --git a/superpower19classifier-zjx/template/negative/254.png b/superpower19classifier-zjx/template/negative/254.png new file mode 100644 index 0000000..35a049c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/254.png differ diff --git a/superpower19classifier-zjx/template/negative/255.png b/superpower19classifier-zjx/template/negative/255.png new file mode 100644 index 0000000..76867d7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/255.png differ diff --git a/superpower19classifier-zjx/template/negative/256.png b/superpower19classifier-zjx/template/negative/256.png new file mode 100644 index 0000000..e9fb43e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/256.png differ diff --git a/superpower19classifier-zjx/template/negative/257.png b/superpower19classifier-zjx/template/negative/257.png new file mode 100644 index 0000000..d3435b8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/257.png differ diff --git a/superpower19classifier-zjx/template/negative/258.png b/superpower19classifier-zjx/template/negative/258.png new file mode 100644 index 0000000..0b2044b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/258.png differ diff --git a/superpower19classifier-zjx/template/negative/259.png b/superpower19classifier-zjx/template/negative/259.png new file mode 100644 index 0000000..7e976ea Binary files /dev/null and b/superpower19classifier-zjx/template/negative/259.png differ diff --git a/superpower19classifier-zjx/template/negative/26.png b/superpower19classifier-zjx/template/negative/26.png new file mode 100644 index 0000000..9303f19 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/26.png differ diff --git a/superpower19classifier-zjx/template/negative/260.png b/superpower19classifier-zjx/template/negative/260.png new file mode 100644 index 0000000..8a34b0c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/260.png differ diff --git a/superpower19classifier-zjx/template/negative/261.png b/superpower19classifier-zjx/template/negative/261.png new file mode 100644 index 0000000..216d016 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/261.png differ diff --git a/superpower19classifier-zjx/template/negative/262.png b/superpower19classifier-zjx/template/negative/262.png new file mode 100644 index 0000000..aa02e57 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/262.png differ diff --git a/superpower19classifier-zjx/template/negative/263.png b/superpower19classifier-zjx/template/negative/263.png new file mode 100644 index 0000000..06340a4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/263.png differ diff --git a/superpower19classifier-zjx/template/negative/264.png b/superpower19classifier-zjx/template/negative/264.png new file mode 100644 index 0000000..4982c23 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/264.png differ diff --git a/superpower19classifier-zjx/template/negative/265.png b/superpower19classifier-zjx/template/negative/265.png new file mode 100644 index 0000000..ae1f50d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/265.png differ diff --git a/superpower19classifier-zjx/template/negative/266.png b/superpower19classifier-zjx/template/negative/266.png new file mode 100644 index 0000000..d25eff5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/266.png differ diff --git a/superpower19classifier-zjx/template/negative/267.png b/superpower19classifier-zjx/template/negative/267.png new file mode 100644 index 0000000..85556e6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/267.png differ diff --git a/superpower19classifier-zjx/template/negative/268.png b/superpower19classifier-zjx/template/negative/268.png new file mode 100644 index 0000000..325cbcf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/268.png differ diff --git a/superpower19classifier-zjx/template/negative/269.png b/superpower19classifier-zjx/template/negative/269.png new file mode 100644 index 0000000..52d5f87 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/269.png differ diff --git a/superpower19classifier-zjx/template/negative/27.png b/superpower19classifier-zjx/template/negative/27.png new file mode 100644 index 0000000..98681e3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/27.png differ diff --git a/superpower19classifier-zjx/template/negative/270.png b/superpower19classifier-zjx/template/negative/270.png new file mode 100644 index 0000000..7968071 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/270.png differ diff --git a/superpower19classifier-zjx/template/negative/271.png b/superpower19classifier-zjx/template/negative/271.png new file mode 100644 index 0000000..0718bf7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/271.png differ diff --git a/superpower19classifier-zjx/template/negative/272.png b/superpower19classifier-zjx/template/negative/272.png new file mode 100644 index 0000000..961e680 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/272.png differ diff --git a/superpower19classifier-zjx/template/negative/273.png b/superpower19classifier-zjx/template/negative/273.png new file mode 100644 index 0000000..d3364d2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/273.png differ diff --git a/superpower19classifier-zjx/template/negative/274.png b/superpower19classifier-zjx/template/negative/274.png new file mode 100644 index 0000000..0b7201d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/274.png differ diff --git a/superpower19classifier-zjx/template/negative/275.png b/superpower19classifier-zjx/template/negative/275.png new file mode 100644 index 0000000..4a21813 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/275.png differ diff --git a/superpower19classifier-zjx/template/negative/276.png b/superpower19classifier-zjx/template/negative/276.png new file mode 100644 index 0000000..e261f5f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/276.png differ diff --git a/superpower19classifier-zjx/template/negative/277.png b/superpower19classifier-zjx/template/negative/277.png new file mode 100644 index 0000000..74c27a3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/277.png differ diff --git a/superpower19classifier-zjx/template/negative/278.png b/superpower19classifier-zjx/template/negative/278.png new file mode 100644 index 0000000..c72e180 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/278.png differ diff --git a/superpower19classifier-zjx/template/negative/279.png b/superpower19classifier-zjx/template/negative/279.png new file mode 100644 index 0000000..9454e31 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/279.png differ diff --git a/superpower19classifier-zjx/template/negative/28.png b/superpower19classifier-zjx/template/negative/28.png new file mode 100644 index 0000000..4d4123d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/28.png differ diff --git a/superpower19classifier-zjx/template/negative/280.png b/superpower19classifier-zjx/template/negative/280.png new file mode 100644 index 0000000..ac143a6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/280.png differ diff --git a/superpower19classifier-zjx/template/negative/281.png b/superpower19classifier-zjx/template/negative/281.png new file mode 100644 index 0000000..1a1b5d2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/281.png differ diff --git a/superpower19classifier-zjx/template/negative/282.png b/superpower19classifier-zjx/template/negative/282.png new file mode 100644 index 0000000..bf23b4f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/282.png differ diff --git a/superpower19classifier-zjx/template/negative/283.png b/superpower19classifier-zjx/template/negative/283.png new file mode 100644 index 0000000..7ae5b68 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/283.png differ diff --git a/superpower19classifier-zjx/template/negative/284.png b/superpower19classifier-zjx/template/negative/284.png new file mode 100644 index 0000000..7e80e8c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/284.png differ diff --git a/superpower19classifier-zjx/template/negative/285.png b/superpower19classifier-zjx/template/negative/285.png new file mode 100644 index 0000000..4f93f57 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/285.png differ diff --git a/superpower19classifier-zjx/template/negative/286.png b/superpower19classifier-zjx/template/negative/286.png new file mode 100644 index 0000000..3dc0318 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/286.png differ diff --git a/superpower19classifier-zjx/template/negative/287.png b/superpower19classifier-zjx/template/negative/287.png new file mode 100644 index 0000000..43ab7c8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/287.png differ diff --git a/superpower19classifier-zjx/template/negative/288.png b/superpower19classifier-zjx/template/negative/288.png new file mode 100644 index 0000000..1a97a60 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/288.png differ diff --git a/superpower19classifier-zjx/template/negative/289.png b/superpower19classifier-zjx/template/negative/289.png new file mode 100644 index 0000000..21bd71f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/289.png differ diff --git a/superpower19classifier-zjx/template/negative/29.png b/superpower19classifier-zjx/template/negative/29.png new file mode 100644 index 0000000..c4255fc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/29.png differ diff --git a/superpower19classifier-zjx/template/negative/290.png b/superpower19classifier-zjx/template/negative/290.png new file mode 100644 index 0000000..9f8c2d9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/290.png differ diff --git a/superpower19classifier-zjx/template/negative/291.png b/superpower19classifier-zjx/template/negative/291.png new file mode 100644 index 0000000..a1ddb20 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/291.png differ diff --git a/superpower19classifier-zjx/template/negative/292.png b/superpower19classifier-zjx/template/negative/292.png new file mode 100644 index 0000000..3056019 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/292.png differ diff --git a/superpower19classifier-zjx/template/negative/293.png b/superpower19classifier-zjx/template/negative/293.png new file mode 100644 index 0000000..c99e84e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/293.png differ diff --git a/superpower19classifier-zjx/template/negative/294.png b/superpower19classifier-zjx/template/negative/294.png new file mode 100644 index 0000000..7eb5caf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/294.png differ diff --git a/superpower19classifier-zjx/template/negative/295.png b/superpower19classifier-zjx/template/negative/295.png new file mode 100644 index 0000000..96ce9ba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/295.png differ diff --git a/superpower19classifier-zjx/template/negative/296.png b/superpower19classifier-zjx/template/negative/296.png new file mode 100644 index 0000000..4f6fda6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/296.png differ diff --git a/superpower19classifier-zjx/template/negative/297.png b/superpower19classifier-zjx/template/negative/297.png new file mode 100644 index 0000000..0895cd6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/297.png differ diff --git a/superpower19classifier-zjx/template/negative/298.png b/superpower19classifier-zjx/template/negative/298.png new file mode 100644 index 0000000..aaf47f4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/298.png differ diff --git a/superpower19classifier-zjx/template/negative/299.png b/superpower19classifier-zjx/template/negative/299.png new file mode 100644 index 0000000..761d65a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/299.png differ diff --git a/superpower19classifier-zjx/template/negative/2_00.png b/superpower19classifier-zjx/template/negative/2_00.png new file mode 100644 index 0000000..5fc73eb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/2_00.png differ diff --git a/superpower19classifier-zjx/template/negative/2_hero0.png b/superpower19classifier-zjx/template/negative/2_hero0.png new file mode 100644 index 0000000..78b4b90 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/2_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/3.png b/superpower19classifier-zjx/template/negative/3.png new file mode 100644 index 0000000..aaf68dc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/3.png differ diff --git a/superpower19classifier-zjx/template/negative/30.png b/superpower19classifier-zjx/template/negative/30.png new file mode 100644 index 0000000..a2323fc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/30.png differ diff --git a/superpower19classifier-zjx/template/negative/300.png b/superpower19classifier-zjx/template/negative/300.png new file mode 100644 index 0000000..046dd88 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/300.png differ diff --git a/superpower19classifier-zjx/template/negative/300_00.png b/superpower19classifier-zjx/template/negative/300_00.png new file mode 100644 index 0000000..8734154 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/300_00.png differ diff --git a/superpower19classifier-zjx/template/negative/301.png b/superpower19classifier-zjx/template/negative/301.png new file mode 100644 index 0000000..85ea337 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/301.png differ diff --git a/superpower19classifier-zjx/template/negative/301_00.png b/superpower19classifier-zjx/template/negative/301_00.png new file mode 100644 index 0000000..188eddd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/301_00.png differ diff --git a/superpower19classifier-zjx/template/negative/302_00.png b/superpower19classifier-zjx/template/negative/302_00.png new file mode 100644 index 0000000..b4ef9a9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/302_00.png differ diff --git a/superpower19classifier-zjx/template/negative/304_00.png b/superpower19classifier-zjx/template/negative/304_00.png new file mode 100644 index 0000000..4bb5401 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/304_00.png differ diff --git a/superpower19classifier-zjx/template/negative/305.png b/superpower19classifier-zjx/template/negative/305.png new file mode 100644 index 0000000..7dea808 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/305.png differ diff --git a/superpower19classifier-zjx/template/negative/306_00.png b/superpower19classifier-zjx/template/negative/306_00.png new file mode 100644 index 0000000..e946875 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/306_00.png differ diff --git a/superpower19classifier-zjx/template/negative/309.png b/superpower19classifier-zjx/template/negative/309.png new file mode 100644 index 0000000..c81e43b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/309.png differ diff --git a/superpower19classifier-zjx/template/negative/309_00.png b/superpower19classifier-zjx/template/negative/309_00.png new file mode 100644 index 0000000..a6f2521 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/309_00.png differ diff --git a/superpower19classifier-zjx/template/negative/31.png b/superpower19classifier-zjx/template/negative/31.png new file mode 100644 index 0000000..849614f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/31.png differ diff --git a/superpower19classifier-zjx/template/negative/310_00.png b/superpower19classifier-zjx/template/negative/310_00.png new file mode 100644 index 0000000..d8c5207 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/310_00.png differ diff --git a/superpower19classifier-zjx/template/negative/318.png b/superpower19classifier-zjx/template/negative/318.png new file mode 100644 index 0000000..8212437 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/318.png differ diff --git a/superpower19classifier-zjx/template/negative/319.png b/superpower19classifier-zjx/template/negative/319.png new file mode 100644 index 0000000..75d33d5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/319.png differ diff --git a/superpower19classifier-zjx/template/negative/32.png b/superpower19classifier-zjx/template/negative/32.png new file mode 100644 index 0000000..6bb654b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/32.png differ diff --git a/superpower19classifier-zjx/template/negative/320.png b/superpower19classifier-zjx/template/negative/320.png new file mode 100644 index 0000000..7b9e95a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/320.png differ diff --git a/superpower19classifier-zjx/template/negative/325.png b/superpower19classifier-zjx/template/negative/325.png new file mode 100644 index 0000000..e7398a9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/325.png differ diff --git a/superpower19classifier-zjx/template/negative/329.png b/superpower19classifier-zjx/template/negative/329.png new file mode 100644 index 0000000..f33053c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/329.png differ diff --git a/superpower19classifier-zjx/template/negative/33.png b/superpower19classifier-zjx/template/negative/33.png new file mode 100644 index 0000000..5cce2c1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/33.png differ diff --git a/superpower19classifier-zjx/template/negative/330.png b/superpower19classifier-zjx/template/negative/330.png new file mode 100644 index 0000000..adaedf6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/330.png differ diff --git a/superpower19classifier-zjx/template/negative/330015.png b/superpower19classifier-zjx/template/negative/330015.png new file mode 100644 index 0000000..fb1a1bd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/330015.png differ diff --git a/superpower19classifier-zjx/template/negative/330031.png b/superpower19classifier-zjx/template/negative/330031.png new file mode 100644 index 0000000..eceb2c7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/330031.png differ diff --git a/superpower19classifier-zjx/template/negative/330036.png b/superpower19classifier-zjx/template/negative/330036.png new file mode 100644 index 0000000..64064a5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/330036.png differ diff --git a/superpower19classifier-zjx/template/negative/330037.png b/superpower19classifier-zjx/template/negative/330037.png new file mode 100644 index 0000000..4095850 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/330037.png differ diff --git a/superpower19classifier-zjx/template/negative/3300383.png b/superpower19classifier-zjx/template/negative/3300383.png new file mode 100644 index 0000000..180c523 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/3300383.png differ diff --git a/superpower19classifier-zjx/template/negative/3300396.png b/superpower19classifier-zjx/template/negative/3300396.png new file mode 100644 index 0000000..4bc4183 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/3300396.png differ diff --git a/superpower19classifier-zjx/template/negative/33004.png b/superpower19classifier-zjx/template/negative/33004.png new file mode 100644 index 0000000..d69bf1d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/33004.png differ diff --git a/superpower19classifier-zjx/template/negative/3300436.png b/superpower19classifier-zjx/template/negative/3300436.png new file mode 100644 index 0000000..c6a1b54 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/3300436.png differ diff --git a/superpower19classifier-zjx/template/negative/3300503.png b/superpower19classifier-zjx/template/negative/3300503.png new file mode 100644 index 0000000..5e89e53 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/3300503.png differ diff --git a/superpower19classifier-zjx/template/negative/3300523.png b/superpower19classifier-zjx/template/negative/3300523.png new file mode 100644 index 0000000..d04bbe3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/3300523.png differ diff --git a/superpower19classifier-zjx/template/negative/330074.png b/superpower19classifier-zjx/template/negative/330074.png new file mode 100644 index 0000000..12e8fac Binary files /dev/null and b/superpower19classifier-zjx/template/negative/330074.png differ diff --git a/superpower19classifier-zjx/template/negative/330079.png b/superpower19classifier-zjx/template/negative/330079.png new file mode 100644 index 0000000..f69eaa1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/330079.png differ diff --git a/superpower19classifier-zjx/template/negative/33009.png b/superpower19classifier-zjx/template/negative/33009.png new file mode 100644 index 0000000..c05513c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/33009.png differ diff --git a/superpower19classifier-zjx/template/negative/34.png b/superpower19classifier-zjx/template/negative/34.png new file mode 100644 index 0000000..933990f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/34.png differ diff --git a/superpower19classifier-zjx/template/negative/340.png b/superpower19classifier-zjx/template/negative/340.png new file mode 100644 index 0000000..856b026 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/340.png differ diff --git a/superpower19classifier-zjx/template/negative/341.png b/superpower19classifier-zjx/template/negative/341.png new file mode 100644 index 0000000..48ab669 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/341.png differ diff --git a/superpower19classifier-zjx/template/negative/345.png b/superpower19classifier-zjx/template/negative/345.png new file mode 100644 index 0000000..e309583 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/345.png differ diff --git a/superpower19classifier-zjx/template/negative/35.png b/superpower19classifier-zjx/template/negative/35.png new file mode 100644 index 0000000..6692c6a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/35.png differ diff --git a/superpower19classifier-zjx/template/negative/350.png b/superpower19classifier-zjx/template/negative/350.png new file mode 100644 index 0000000..5d24e4a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/350.png differ diff --git a/superpower19classifier-zjx/template/negative/352.png b/superpower19classifier-zjx/template/negative/352.png new file mode 100644 index 0000000..cda0025 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/352.png differ diff --git a/superpower19classifier-zjx/template/negative/353.png b/superpower19classifier-zjx/template/negative/353.png new file mode 100644 index 0000000..b141ed4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/353.png differ diff --git a/superpower19classifier-zjx/template/negative/355.png b/superpower19classifier-zjx/template/negative/355.png new file mode 100644 index 0000000..1775da8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/355.png differ diff --git a/superpower19classifier-zjx/template/negative/36.png b/superpower19classifier-zjx/template/negative/36.png new file mode 100644 index 0000000..de397c0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/36.png differ diff --git a/superpower19classifier-zjx/template/negative/364.png b/superpower19classifier-zjx/template/negative/364.png new file mode 100644 index 0000000..166154b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/364.png differ diff --git a/superpower19classifier-zjx/template/negative/365.png b/superpower19classifier-zjx/template/negative/365.png new file mode 100644 index 0000000..8c298e0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/365.png differ diff --git a/superpower19classifier-zjx/template/negative/37.png b/superpower19classifier-zjx/template/negative/37.png new file mode 100644 index 0000000..043d2af Binary files /dev/null and b/superpower19classifier-zjx/template/negative/37.png differ diff --git a/superpower19classifier-zjx/template/negative/375.png b/superpower19classifier-zjx/template/negative/375.png new file mode 100644 index 0000000..4a080b5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/375.png differ diff --git a/superpower19classifier-zjx/template/negative/38.png b/superpower19classifier-zjx/template/negative/38.png new file mode 100644 index 0000000..1e5338d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/38.png differ diff --git a/superpower19classifier-zjx/template/negative/380.png b/superpower19classifier-zjx/template/negative/380.png new file mode 100644 index 0000000..6e89573 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/380.png differ diff --git a/superpower19classifier-zjx/template/negative/385.png b/superpower19classifier-zjx/template/negative/385.png new file mode 100644 index 0000000..ad67d71 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/385.png differ diff --git a/superpower19classifier-zjx/template/negative/39.png b/superpower19classifier-zjx/template/negative/39.png new file mode 100644 index 0000000..0bb946c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/39.png differ diff --git a/superpower19classifier-zjx/template/negative/3_hero0.png b/superpower19classifier-zjx/template/negative/3_hero0.png new file mode 100644 index 0000000..24c83e1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/3_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/4.png b/superpower19classifier-zjx/template/negative/4.png new file mode 100644 index 0000000..eb828fc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/4.png differ diff --git a/superpower19classifier-zjx/template/negative/40.png b/superpower19classifier-zjx/template/negative/40.png new file mode 100644 index 0000000..eb66dff Binary files /dev/null and b/superpower19classifier-zjx/template/negative/40.png differ diff --git a/superpower19classifier-zjx/template/negative/400.png b/superpower19classifier-zjx/template/negative/400.png new file mode 100644 index 0000000..fe15f28 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/400.png differ diff --git a/superpower19classifier-zjx/template/negative/405.png b/superpower19classifier-zjx/template/negative/405.png new file mode 100644 index 0000000..ffd4878 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/405.png differ diff --git a/superpower19classifier-zjx/template/negative/41.png b/superpower19classifier-zjx/template/negative/41.png new file mode 100644 index 0000000..247acf0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/41.png differ diff --git a/superpower19classifier-zjx/template/negative/410.png b/superpower19classifier-zjx/template/negative/410.png new file mode 100644 index 0000000..f91301f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/410.png differ diff --git a/superpower19classifier-zjx/template/negative/4168.png b/superpower19classifier-zjx/template/negative/4168.png new file mode 100644 index 0000000..00b3892 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/4168.png differ diff --git a/superpower19classifier-zjx/template/negative/42.png b/superpower19classifier-zjx/template/negative/42.png new file mode 100644 index 0000000..0d16e2d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/42.png differ diff --git a/superpower19classifier-zjx/template/negative/4205.png b/superpower19classifier-zjx/template/negative/4205.png new file mode 100644 index 0000000..7b25526 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/4205.png differ diff --git a/superpower19classifier-zjx/template/negative/4206.png b/superpower19classifier-zjx/template/negative/4206.png new file mode 100644 index 0000000..c01a2b2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/4206.png differ diff --git a/superpower19classifier-zjx/template/negative/4211.png b/superpower19classifier-zjx/template/negative/4211.png new file mode 100644 index 0000000..68613dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/4211.png differ diff --git a/superpower19classifier-zjx/template/negative/4214.png b/superpower19classifier-zjx/template/negative/4214.png new file mode 100644 index 0000000..7141836 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/4214.png differ diff --git a/superpower19classifier-zjx/template/negative/4217.png b/superpower19classifier-zjx/template/negative/4217.png new file mode 100644 index 0000000..235e8bc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/4217.png differ diff --git a/superpower19classifier-zjx/template/negative/425.png b/superpower19classifier-zjx/template/negative/425.png new file mode 100644 index 0000000..1443854 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/425.png differ diff --git a/superpower19classifier-zjx/template/negative/43.png b/superpower19classifier-zjx/template/negative/43.png new file mode 100644 index 0000000..8809802 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/43.png differ diff --git a/superpower19classifier-zjx/template/negative/435.png b/superpower19classifier-zjx/template/negative/435.png new file mode 100644 index 0000000..4a32932 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/435.png differ diff --git a/superpower19classifier-zjx/template/negative/44.png b/superpower19classifier-zjx/template/negative/44.png new file mode 100644 index 0000000..c01ee63 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/44.png differ diff --git a/superpower19classifier-zjx/template/negative/445.png b/superpower19classifier-zjx/template/negative/445.png new file mode 100644 index 0000000..19dcf01 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/445.png differ diff --git a/superpower19classifier-zjx/template/negative/45.png b/superpower19classifier-zjx/template/negative/45.png new file mode 100644 index 0000000..56e44c8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/45.png differ diff --git a/superpower19classifier-zjx/template/negative/46.png b/superpower19classifier-zjx/template/negative/46.png new file mode 100644 index 0000000..5bb45ba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/46.png differ diff --git a/superpower19classifier-zjx/template/negative/47.png b/superpower19classifier-zjx/template/negative/47.png new file mode 100644 index 0000000..78f253e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/47.png differ diff --git a/superpower19classifier-zjx/template/negative/48.png b/superpower19classifier-zjx/template/negative/48.png new file mode 100644 index 0000000..ce89bb4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/48.png differ diff --git a/superpower19classifier-zjx/template/negative/49.png b/superpower19classifier-zjx/template/negative/49.png new file mode 100644 index 0000000..7255ac8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/49.png differ diff --git a/superpower19classifier-zjx/template/negative/4_00.png b/superpower19classifier-zjx/template/negative/4_00.png new file mode 100644 index 0000000..9eee9a4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/4_00.png differ diff --git a/superpower19classifier-zjx/template/negative/5.png b/superpower19classifier-zjx/template/negative/5.png new file mode 100644 index 0000000..3f4dc18 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/5.png differ diff --git a/superpower19classifier-zjx/template/negative/50.png b/superpower19classifier-zjx/template/negative/50.png new file mode 100644 index 0000000..e833a8d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/50.png differ diff --git a/superpower19classifier-zjx/template/negative/51.png b/superpower19classifier-zjx/template/negative/51.png new file mode 100644 index 0000000..64ad16e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/51.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1000.png b/superpower19classifier-zjx/template/negative/519_1000.png new file mode 100644 index 0000000..fdca78f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1000.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1013.png b/superpower19classifier-zjx/template/negative/519_1013.png new file mode 100644 index 0000000..b78d33c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1013.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1038.png b/superpower19classifier-zjx/template/negative/519_1038.png new file mode 100644 index 0000000..2a1ab38 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1038.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1046.png b/superpower19classifier-zjx/template/negative/519_1046.png new file mode 100644 index 0000000..5927011 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1046.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1076.png b/superpower19classifier-zjx/template/negative/519_1076.png new file mode 100644 index 0000000..6770429 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1076.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1673.png b/superpower19classifier-zjx/template/negative/519_1673.png new file mode 100644 index 0000000..74afddb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1673.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1680.png b/superpower19classifier-zjx/template/negative/519_1680.png new file mode 100644 index 0000000..74afddb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1680.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1694.png b/superpower19classifier-zjx/template/negative/519_1694.png new file mode 100644 index 0000000..0010d44 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1694.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1702.png b/superpower19classifier-zjx/template/negative/519_1702.png new file mode 100644 index 0000000..0010d44 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1702.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1725.png b/superpower19classifier-zjx/template/negative/519_1725.png new file mode 100644 index 0000000..7276dff Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1725.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1746.png b/superpower19classifier-zjx/template/negative/519_1746.png new file mode 100644 index 0000000..3ccd150 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1746.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1756.png b/superpower19classifier-zjx/template/negative/519_1756.png new file mode 100644 index 0000000..04affa9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1756.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1768.png b/superpower19classifier-zjx/template/negative/519_1768.png new file mode 100644 index 0000000..04affa9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1768.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1786.png b/superpower19classifier-zjx/template/negative/519_1786.png new file mode 100644 index 0000000..b313b0f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1786.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1789.png b/superpower19classifier-zjx/template/negative/519_1789.png new file mode 100644 index 0000000..ca70e6d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1789.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1799.png b/superpower19classifier-zjx/template/negative/519_1799.png new file mode 100644 index 0000000..ca70e6d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1799.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1809.png b/superpower19classifier-zjx/template/negative/519_1809.png new file mode 100644 index 0000000..5b3baba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1809.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1816.png b/superpower19classifier-zjx/template/negative/519_1816.png new file mode 100644 index 0000000..5b3baba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1816.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1831.png b/superpower19classifier-zjx/template/negative/519_1831.png new file mode 100644 index 0000000..c2ea8b3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1831.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1846.png b/superpower19classifier-zjx/template/negative/519_1846.png new file mode 100644 index 0000000..1c32de3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1846.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1847.png b/superpower19classifier-zjx/template/negative/519_1847.png new file mode 100644 index 0000000..1c32de3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1847.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1853.png b/superpower19classifier-zjx/template/negative/519_1853.png new file mode 100644 index 0000000..f98a3d0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1853.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1861.png b/superpower19classifier-zjx/template/negative/519_1861.png new file mode 100644 index 0000000..f98a3d0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1861.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1868.png b/superpower19classifier-zjx/template/negative/519_1868.png new file mode 100644 index 0000000..9b31ccf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1868.png differ diff --git a/superpower19classifier-zjx/template/negative/519_1876.png b/superpower19classifier-zjx/template/negative/519_1876.png new file mode 100644 index 0000000..9b31ccf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_1876.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2060.png b/superpower19classifier-zjx/template/negative/519_2060.png new file mode 100644 index 0000000..ae0dbd5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2060.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2070.png b/superpower19classifier-zjx/template/negative/519_2070.png new file mode 100644 index 0000000..61e2ab7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2070.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2074.png b/superpower19classifier-zjx/template/negative/519_2074.png new file mode 100644 index 0000000..f29a9c2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2074.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2076.png b/superpower19classifier-zjx/template/negative/519_2076.png new file mode 100644 index 0000000..9c2d7cc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2076.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2082.png b/superpower19classifier-zjx/template/negative/519_2082.png new file mode 100644 index 0000000..0b37aa7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2082.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2088.png b/superpower19classifier-zjx/template/negative/519_2088.png new file mode 100644 index 0000000..e5439c6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2088.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2091.png b/superpower19classifier-zjx/template/negative/519_2091.png new file mode 100644 index 0000000..ed1138b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2091.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2097.png b/superpower19classifier-zjx/template/negative/519_2097.png new file mode 100644 index 0000000..5c04a8f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2097.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2108.png b/superpower19classifier-zjx/template/negative/519_2108.png new file mode 100644 index 0000000..61e0e6e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2108.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2111.png b/superpower19classifier-zjx/template/negative/519_2111.png new file mode 100644 index 0000000..abdf697 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2111.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2121.png b/superpower19classifier-zjx/template/negative/519_2121.png new file mode 100644 index 0000000..27bd4b5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2121.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2129.png b/superpower19classifier-zjx/template/negative/519_2129.png new file mode 100644 index 0000000..2f127d7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2129.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2138.png b/superpower19classifier-zjx/template/negative/519_2138.png new file mode 100644 index 0000000..27e519b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2138.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2145.png b/superpower19classifier-zjx/template/negative/519_2145.png new file mode 100644 index 0000000..8bdb1bf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2145.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2146.png b/superpower19classifier-zjx/template/negative/519_2146.png new file mode 100644 index 0000000..8bdb1bf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2146.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2171.png b/superpower19classifier-zjx/template/negative/519_2171.png new file mode 100644 index 0000000..2e2e147 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2171.png differ diff --git a/superpower19classifier-zjx/template/negative/519_221.png b/superpower19classifier-zjx/template/negative/519_221.png new file mode 100644 index 0000000..a0195a0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_221.png differ diff --git a/superpower19classifier-zjx/template/negative/519_226.png b/superpower19classifier-zjx/template/negative/519_226.png new file mode 100644 index 0000000..01700bf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_226.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2528.png b/superpower19classifier-zjx/template/negative/519_2528.png new file mode 100644 index 0000000..e89657a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2528.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2536.png b/superpower19classifier-zjx/template/negative/519_2536.png new file mode 100644 index 0000000..e89657a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2536.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2555.png b/superpower19classifier-zjx/template/negative/519_2555.png new file mode 100644 index 0000000..addc81e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2555.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2560.png b/superpower19classifier-zjx/template/negative/519_2560.png new file mode 100644 index 0000000..e819345 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2560.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2574.png b/superpower19classifier-zjx/template/negative/519_2574.png new file mode 100644 index 0000000..e819345 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2574.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2583.png b/superpower19classifier-zjx/template/negative/519_2583.png new file mode 100644 index 0000000..34286cb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2583.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2593.png b/superpower19classifier-zjx/template/negative/519_2593.png new file mode 100644 index 0000000..34286cb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2593.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2598.png b/superpower19classifier-zjx/template/negative/519_2598.png new file mode 100644 index 0000000..158571e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2598.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2611.png b/superpower19classifier-zjx/template/negative/519_2611.png new file mode 100644 index 0000000..158571e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2611.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2628.png b/superpower19classifier-zjx/template/negative/519_2628.png new file mode 100644 index 0000000..930d940 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2628.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2631.png b/superpower19classifier-zjx/template/negative/519_2631.png new file mode 100644 index 0000000..930d940 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2631.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2635.png b/superpower19classifier-zjx/template/negative/519_2635.png new file mode 100644 index 0000000..e756ada Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2635.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2660.png b/superpower19classifier-zjx/template/negative/519_2660.png new file mode 100644 index 0000000..8057812 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2660.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2669.png b/superpower19classifier-zjx/template/negative/519_2669.png new file mode 100644 index 0000000..8057812 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2669.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2678.png b/superpower19classifier-zjx/template/negative/519_2678.png new file mode 100644 index 0000000..0b01981 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2678.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2688.png b/superpower19classifier-zjx/template/negative/519_2688.png new file mode 100644 index 0000000..0b01981 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2688.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2766.png b/superpower19classifier-zjx/template/negative/519_2766.png new file mode 100644 index 0000000..bbff982 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2766.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2786.png b/superpower19classifier-zjx/template/negative/519_2786.png new file mode 100644 index 0000000..1a97c81 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2786.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2792.png b/superpower19classifier-zjx/template/negative/519_2792.png new file mode 100644 index 0000000..9a2bac0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2792.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2794.png b/superpower19classifier-zjx/template/negative/519_2794.png new file mode 100644 index 0000000..9a2bac0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2794.png differ diff --git a/superpower19classifier-zjx/template/negative/519_28.png b/superpower19classifier-zjx/template/negative/519_28.png new file mode 100644 index 0000000..4a63bae Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_28.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2801.png b/superpower19classifier-zjx/template/negative/519_2801.png new file mode 100644 index 0000000..9a2bac0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2801.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2823.png b/superpower19classifier-zjx/template/negative/519_2823.png new file mode 100644 index 0000000..d061937 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2823.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2830.png b/superpower19classifier-zjx/template/negative/519_2830.png new file mode 100644 index 0000000..d061937 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2830.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2841.png b/superpower19classifier-zjx/template/negative/519_2841.png new file mode 100644 index 0000000..2e092ee Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2841.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2850.png b/superpower19classifier-zjx/template/negative/519_2850.png new file mode 100644 index 0000000..2e092ee Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2850.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2859.png b/superpower19classifier-zjx/template/negative/519_2859.png new file mode 100644 index 0000000..51fa403 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2859.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2866.png b/superpower19classifier-zjx/template/negative/519_2866.png new file mode 100644 index 0000000..51fa403 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2866.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2876.png b/superpower19classifier-zjx/template/negative/519_2876.png new file mode 100644 index 0000000..5b390f1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2876.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2882.png b/superpower19classifier-zjx/template/negative/519_2882.png new file mode 100644 index 0000000..5b390f1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2882.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2887.png b/superpower19classifier-zjx/template/negative/519_2887.png new file mode 100644 index 0000000..f04e8e5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2887.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2898.png b/superpower19classifier-zjx/template/negative/519_2898.png new file mode 100644 index 0000000..f04e8e5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2898.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2914.png b/superpower19classifier-zjx/template/negative/519_2914.png new file mode 100644 index 0000000..1b4e75e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2914.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2916.png b/superpower19classifier-zjx/template/negative/519_2916.png new file mode 100644 index 0000000..1b4e75e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2916.png differ diff --git a/superpower19classifier-zjx/template/negative/519_2921.png b/superpower19classifier-zjx/template/negative/519_2921.png new file mode 100644 index 0000000..32ae310 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_2921.png differ diff --git a/superpower19classifier-zjx/template/negative/519_31.png b/superpower19classifier-zjx/template/negative/519_31.png new file mode 100644 index 0000000..3d56c46 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_31.png differ diff --git a/superpower19classifier-zjx/template/negative/519_3186.png b/superpower19classifier-zjx/template/negative/519_3186.png new file mode 100644 index 0000000..3eeef2c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_3186.png differ diff --git a/superpower19classifier-zjx/template/negative/519_368.png b/superpower19classifier-zjx/template/negative/519_368.png new file mode 100644 index 0000000..fd2606b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_368.png differ diff --git a/superpower19classifier-zjx/template/negative/519_372.png b/superpower19classifier-zjx/template/negative/519_372.png new file mode 100644 index 0000000..00068a1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_372.png differ diff --git a/superpower19classifier-zjx/template/negative/519_3802.png b/superpower19classifier-zjx/template/negative/519_3802.png new file mode 100644 index 0000000..5f283ef Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_3802.png differ diff --git a/superpower19classifier-zjx/template/negative/519_3828.png b/superpower19classifier-zjx/template/negative/519_3828.png new file mode 100644 index 0000000..b66a579 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_3828.png differ diff --git a/superpower19classifier-zjx/template/negative/519_3948.png b/superpower19classifier-zjx/template/negative/519_3948.png new file mode 100644 index 0000000..c676810 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_3948.png differ diff --git a/superpower19classifier-zjx/template/negative/519_403.png b/superpower19classifier-zjx/template/negative/519_403.png new file mode 100644 index 0000000..a4e25f1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_403.png differ diff --git a/superpower19classifier-zjx/template/negative/519_406.png b/superpower19classifier-zjx/template/negative/519_406.png new file mode 100644 index 0000000..962fe41 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_406.png differ diff --git a/superpower19classifier-zjx/template/negative/519_471.png b/superpower19classifier-zjx/template/negative/519_471.png new file mode 100644 index 0000000..2b6c3d4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_471.png differ diff --git a/superpower19classifier-zjx/template/negative/519_494.png b/superpower19classifier-zjx/template/negative/519_494.png new file mode 100644 index 0000000..488cba6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_494.png differ diff --git a/superpower19classifier-zjx/template/negative/519_495.png b/superpower19classifier-zjx/template/negative/519_495.png new file mode 100644 index 0000000..488cba6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_495.png differ diff --git a/superpower19classifier-zjx/template/negative/519_498.png b/superpower19classifier-zjx/template/negative/519_498.png new file mode 100644 index 0000000..3cd2623 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_498.png differ diff --git a/superpower19classifier-zjx/template/negative/519_511.png b/superpower19classifier-zjx/template/negative/519_511.png new file mode 100644 index 0000000..de3e5a0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_511.png differ diff --git a/superpower19classifier-zjx/template/negative/519_513.png b/superpower19classifier-zjx/template/negative/519_513.png new file mode 100644 index 0000000..2c2c428 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_513.png differ diff --git a/superpower19classifier-zjx/template/negative/519_514.png b/superpower19classifier-zjx/template/negative/519_514.png new file mode 100644 index 0000000..a1d1b5e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_514.png differ diff --git a/superpower19classifier-zjx/template/negative/519_530.png b/superpower19classifier-zjx/template/negative/519_530.png new file mode 100644 index 0000000..c7d0c9a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_530.png differ diff --git a/superpower19classifier-zjx/template/negative/519_535.png b/superpower19classifier-zjx/template/negative/519_535.png new file mode 100644 index 0000000..d682ad6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_535.png differ diff --git a/superpower19classifier-zjx/template/negative/519_544.png b/superpower19classifier-zjx/template/negative/519_544.png new file mode 100644 index 0000000..60db2fa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_544.png differ diff --git a/superpower19classifier-zjx/template/negative/519_548.png b/superpower19classifier-zjx/template/negative/519_548.png new file mode 100644 index 0000000..a107c50 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_548.png differ diff --git a/superpower19classifier-zjx/template/negative/519_551.png b/superpower19classifier-zjx/template/negative/519_551.png new file mode 100644 index 0000000..9773bec Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_551.png differ diff --git a/superpower19classifier-zjx/template/negative/519_568.png b/superpower19classifier-zjx/template/negative/519_568.png new file mode 100644 index 0000000..d87f291 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_568.png differ diff --git a/superpower19classifier-zjx/template/negative/519_571.png b/superpower19classifier-zjx/template/negative/519_571.png new file mode 100644 index 0000000..e8aac7d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_571.png differ diff --git a/superpower19classifier-zjx/template/negative/519_591.png b/superpower19classifier-zjx/template/negative/519_591.png new file mode 100644 index 0000000..0d59d72 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_591.png differ diff --git a/superpower19classifier-zjx/template/negative/519_595.png b/superpower19classifier-zjx/template/negative/519_595.png new file mode 100644 index 0000000..f4dbdc3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_595.png differ diff --git a/superpower19classifier-zjx/template/negative/519_607.png b/superpower19classifier-zjx/template/negative/519_607.png new file mode 100644 index 0000000..bb163d7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_607.png differ diff --git a/superpower19classifier-zjx/template/negative/519_622.png b/superpower19classifier-zjx/template/negative/519_622.png new file mode 100644 index 0000000..bb163d7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_622.png differ diff --git a/superpower19classifier-zjx/template/negative/519_771.png b/superpower19classifier-zjx/template/negative/519_771.png new file mode 100644 index 0000000..95b0e70 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_771.png differ diff --git a/superpower19classifier-zjx/template/negative/519_784.png b/superpower19classifier-zjx/template/negative/519_784.png new file mode 100644 index 0000000..95b0e70 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_784.png differ diff --git a/superpower19classifier-zjx/template/negative/519_789.png b/superpower19classifier-zjx/template/negative/519_789.png new file mode 100644 index 0000000..55aa3d1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_789.png differ diff --git a/superpower19classifier-zjx/template/negative/519_802.png b/superpower19classifier-zjx/template/negative/519_802.png new file mode 100644 index 0000000..55aa3d1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_802.png differ diff --git a/superpower19classifier-zjx/template/negative/519_804.png b/superpower19classifier-zjx/template/negative/519_804.png new file mode 100644 index 0000000..ebac34b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_804.png differ diff --git a/superpower19classifier-zjx/template/negative/519_812.png b/superpower19classifier-zjx/template/negative/519_812.png new file mode 100644 index 0000000..ebac34b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_812.png differ diff --git a/superpower19classifier-zjx/template/negative/519_833.png b/superpower19classifier-zjx/template/negative/519_833.png new file mode 100644 index 0000000..dce28cd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_833.png differ diff --git a/superpower19classifier-zjx/template/negative/519_838.png b/superpower19classifier-zjx/template/negative/519_838.png new file mode 100644 index 0000000..dce28cd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_838.png differ diff --git a/superpower19classifier-zjx/template/negative/519_843.png b/superpower19classifier-zjx/template/negative/519_843.png new file mode 100644 index 0000000..853a0b5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_843.png differ diff --git a/superpower19classifier-zjx/template/negative/519_856.png b/superpower19classifier-zjx/template/negative/519_856.png new file mode 100644 index 0000000..853a0b5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_856.png differ diff --git a/superpower19classifier-zjx/template/negative/519_872.png b/superpower19classifier-zjx/template/negative/519_872.png new file mode 100644 index 0000000..d3fcad2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_872.png differ diff --git a/superpower19classifier-zjx/template/negative/519_874.png b/superpower19classifier-zjx/template/negative/519_874.png new file mode 100644 index 0000000..d3fcad2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_874.png differ diff --git a/superpower19classifier-zjx/template/negative/519_884.png b/superpower19classifier-zjx/template/negative/519_884.png new file mode 100644 index 0000000..ac1a314 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_884.png differ diff --git a/superpower19classifier-zjx/template/negative/519_892.png b/superpower19classifier-zjx/template/negative/519_892.png new file mode 100644 index 0000000..ac1a314 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_892.png differ diff --git a/superpower19classifier-zjx/template/negative/519_910.png b/superpower19classifier-zjx/template/negative/519_910.png new file mode 100644 index 0000000..00eada5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_910.png differ diff --git a/superpower19classifier-zjx/template/negative/519_913.png b/superpower19classifier-zjx/template/negative/519_913.png new file mode 100644 index 0000000..bbb8173 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_913.png differ diff --git a/superpower19classifier-zjx/template/negative/519_928.png b/superpower19classifier-zjx/template/negative/519_928.png new file mode 100644 index 0000000..bbb8173 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_928.png differ diff --git a/superpower19classifier-zjx/template/negative/519_932.png b/superpower19classifier-zjx/template/negative/519_932.png new file mode 100644 index 0000000..3728127 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_932.png differ diff --git a/superpower19classifier-zjx/template/negative/519_981.png b/superpower19classifier-zjx/template/negative/519_981.png new file mode 100644 index 0000000..06cf15e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/519_981.png differ diff --git a/superpower19classifier-zjx/template/negative/52.png b/superpower19classifier-zjx/template/negative/52.png new file mode 100644 index 0000000..d86c5f7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/52.png differ diff --git a/superpower19classifier-zjx/template/negative/53.png b/superpower19classifier-zjx/template/negative/53.png new file mode 100644 index 0000000..6986000 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/53.png differ diff --git a/superpower19classifier-zjx/template/negative/54.png b/superpower19classifier-zjx/template/negative/54.png new file mode 100644 index 0000000..c090f04 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/54.png differ diff --git a/superpower19classifier-zjx/template/negative/55.png b/superpower19classifier-zjx/template/negative/55.png new file mode 100644 index 0000000..3369ada Binary files /dev/null and b/superpower19classifier-zjx/template/negative/55.png differ diff --git a/superpower19classifier-zjx/template/negative/56.png b/superpower19classifier-zjx/template/negative/56.png new file mode 100644 index 0000000..886868a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/56.png differ diff --git a/superpower19classifier-zjx/template/negative/57.png b/superpower19classifier-zjx/template/negative/57.png new file mode 100644 index 0000000..c0211d0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/57.png differ diff --git a/superpower19classifier-zjx/template/negative/57_hero0.png b/superpower19classifier-zjx/template/negative/57_hero0.png new file mode 100644 index 0000000..c8c2f67 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/57_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/58.png b/superpower19classifier-zjx/template/negative/58.png new file mode 100644 index 0000000..740dd91 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/58.png differ diff --git a/superpower19classifier-zjx/template/negative/59.png b/superpower19classifier-zjx/template/negative/59.png new file mode 100644 index 0000000..d4de99a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/59.png differ diff --git a/superpower19classifier-zjx/template/negative/6.png b/superpower19classifier-zjx/template/negative/6.png new file mode 100644 index 0000000..9bc3932 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/6.png differ diff --git a/superpower19classifier-zjx/template/negative/60.png b/superpower19classifier-zjx/template/negative/60.png new file mode 100644 index 0000000..9b7d42d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/60.png differ diff --git a/superpower19classifier-zjx/template/negative/61.png b/superpower19classifier-zjx/template/negative/61.png new file mode 100644 index 0000000..32c40c1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/61.png differ diff --git a/superpower19classifier-zjx/template/negative/617_extra0.png b/superpower19classifier-zjx/template/negative/617_extra0.png new file mode 100644 index 0000000..e11afbc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/617_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/62.png b/superpower19classifier-zjx/template/negative/62.png new file mode 100644 index 0000000..7fb203a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/62.png differ diff --git a/superpower19classifier-zjx/template/negative/63.png b/superpower19classifier-zjx/template/negative/63.png new file mode 100644 index 0000000..a80a2ca Binary files /dev/null and b/superpower19classifier-zjx/template/negative/63.png differ diff --git a/superpower19classifier-zjx/template/negative/64.png b/superpower19classifier-zjx/template/negative/64.png new file mode 100644 index 0000000..a18d5cc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/64.png differ diff --git a/superpower19classifier-zjx/template/negative/65.png b/superpower19classifier-zjx/template/negative/65.png new file mode 100644 index 0000000..221013a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/65.png differ diff --git a/superpower19classifier-zjx/template/negative/66.png b/superpower19classifier-zjx/template/negative/66.png new file mode 100644 index 0000000..c90a0b7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/66.png differ diff --git a/superpower19classifier-zjx/template/negative/67.png b/superpower19classifier-zjx/template/negative/67.png new file mode 100644 index 0000000..8511ad5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/67.png differ diff --git a/superpower19classifier-zjx/template/negative/673_extra0.png b/superpower19classifier-zjx/template/negative/673_extra0.png new file mode 100644 index 0000000..69c1f8d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/673_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/68.png b/superpower19classifier-zjx/template/negative/68.png new file mode 100644 index 0000000..e2fb929 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/68.png differ diff --git a/superpower19classifier-zjx/template/negative/69.png b/superpower19classifier-zjx/template/negative/69.png new file mode 100644 index 0000000..00b6d31 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/69.png differ diff --git a/superpower19classifier-zjx/template/negative/7.png b/superpower19classifier-zjx/template/negative/7.png new file mode 100644 index 0000000..7f07624 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7.png differ diff --git a/superpower19classifier-zjx/template/negative/70.png b/superpower19classifier-zjx/template/negative/70.png new file mode 100644 index 0000000..a0ad516 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/70.png differ diff --git a/superpower19classifier-zjx/template/negative/71.png b/superpower19classifier-zjx/template/negative/71.png new file mode 100644 index 0000000..6b2279a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/71.png differ diff --git a/superpower19classifier-zjx/template/negative/72.png b/superpower19classifier-zjx/template/negative/72.png new file mode 100644 index 0000000..6601ef0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/72.png differ diff --git a/superpower19classifier-zjx/template/negative/73.png b/superpower19classifier-zjx/template/negative/73.png new file mode 100644 index 0000000..ab0ed72 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/73.png differ diff --git a/superpower19classifier-zjx/template/negative/75.png b/superpower19classifier-zjx/template/negative/75.png new file mode 100644 index 0000000..e48d8da Binary files /dev/null and b/superpower19classifier-zjx/template/negative/75.png differ diff --git a/superpower19classifier-zjx/template/negative/76.png b/superpower19classifier-zjx/template/negative/76.png new file mode 100644 index 0000000..2e11351 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/76.png differ diff --git a/superpower19classifier-zjx/template/negative/77.png b/superpower19classifier-zjx/template/negative/77.png new file mode 100644 index 0000000..0af2545 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/77.png differ diff --git a/superpower19classifier-zjx/template/negative/78.png b/superpower19classifier-zjx/template/negative/78.png new file mode 100644 index 0000000..923909e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/78.png differ diff --git a/superpower19classifier-zjx/template/negative/79.png b/superpower19classifier-zjx/template/negative/79.png new file mode 100644 index 0000000..8a732e4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/79.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11043.png b/superpower19classifier-zjx/template/negative/7_11043.png new file mode 100644 index 0000000..15f2267 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11043.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11053.png b/superpower19classifier-zjx/template/negative/7_11053.png new file mode 100644 index 0000000..1634a8f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11053.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11063.png b/superpower19classifier-zjx/template/negative/7_11063.png new file mode 100644 index 0000000..ee5e5fe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11063.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11073.png b/superpower19classifier-zjx/template/negative/7_11073.png new file mode 100644 index 0000000..f076294 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11073.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11083.png b/superpower19classifier-zjx/template/negative/7_11083.png new file mode 100644 index 0000000..d9eec69 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11083.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11113.png b/superpower19classifier-zjx/template/negative/7_11113.png new file mode 100644 index 0000000..4ff831b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11113.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11133.png b/superpower19classifier-zjx/template/negative/7_11133.png new file mode 100644 index 0000000..695b225 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11133.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11243.png b/superpower19classifier-zjx/template/negative/7_11243.png new file mode 100644 index 0000000..ca698b8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11243.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11263.png b/superpower19classifier-zjx/template/negative/7_11263.png new file mode 100644 index 0000000..9658d33 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11263.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11283.png b/superpower19classifier-zjx/template/negative/7_11283.png new file mode 100644 index 0000000..e093a6e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11283.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11293.png b/superpower19classifier-zjx/template/negative/7_11293.png new file mode 100644 index 0000000..bd072f6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11293.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11373.png b/superpower19classifier-zjx/template/negative/7_11373.png new file mode 100644 index 0000000..fd1891a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11373.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11443.png b/superpower19classifier-zjx/template/negative/7_11443.png new file mode 100644 index 0000000..b4b8bc3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11443.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11493.png b/superpower19classifier-zjx/template/negative/7_11493.png new file mode 100644 index 0000000..84cc46b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11493.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11503.png b/superpower19classifier-zjx/template/negative/7_11503.png new file mode 100644 index 0000000..c3b6459 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11503.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11603.png b/superpower19classifier-zjx/template/negative/7_11603.png new file mode 100644 index 0000000..b2b123d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11603.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11643.png b/superpower19classifier-zjx/template/negative/7_11643.png new file mode 100644 index 0000000..6fd6d02 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11643.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11663.png b/superpower19classifier-zjx/template/negative/7_11663.png new file mode 100644 index 0000000..6f6564e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11663.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11723.png b/superpower19classifier-zjx/template/negative/7_11723.png new file mode 100644 index 0000000..6379095 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11723.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11733.png b/superpower19classifier-zjx/template/negative/7_11733.png new file mode 100644 index 0000000..aee620a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11733.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11813.png b/superpower19classifier-zjx/template/negative/7_11813.png new file mode 100644 index 0000000..eb6913f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11813.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11843.png b/superpower19classifier-zjx/template/negative/7_11843.png new file mode 100644 index 0000000..9915b45 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11843.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11883.png b/superpower19classifier-zjx/template/negative/7_11883.png new file mode 100644 index 0000000..2d319db Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11883.png differ diff --git a/superpower19classifier-zjx/template/negative/7_11893.png b/superpower19classifier-zjx/template/negative/7_11893.png new file mode 100644 index 0000000..3772bf2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_11893.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12003.png b/superpower19classifier-zjx/template/negative/7_12003.png new file mode 100644 index 0000000..469ef4a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12003.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12053.png b/superpower19classifier-zjx/template/negative/7_12053.png new file mode 100644 index 0000000..8aa40a9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12053.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12063.png b/superpower19classifier-zjx/template/negative/7_12063.png new file mode 100644 index 0000000..916e786 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12063.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12093.png b/superpower19classifier-zjx/template/negative/7_12093.png new file mode 100644 index 0000000..3e17bd5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12093.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12103.png b/superpower19classifier-zjx/template/negative/7_12103.png new file mode 100644 index 0000000..432a3c8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12103.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12163.png b/superpower19classifier-zjx/template/negative/7_12163.png new file mode 100644 index 0000000..e85c6ab Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12163.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12173.png b/superpower19classifier-zjx/template/negative/7_12173.png new file mode 100644 index 0000000..67b358c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12173.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12183.png b/superpower19classifier-zjx/template/negative/7_12183.png new file mode 100644 index 0000000..f745bc3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12183.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12263.png b/superpower19classifier-zjx/template/negative/7_12263.png new file mode 100644 index 0000000..77ea3d5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12263.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12333.png b/superpower19classifier-zjx/template/negative/7_12333.png new file mode 100644 index 0000000..a7223fb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12333.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12403.png b/superpower19classifier-zjx/template/negative/7_12403.png new file mode 100644 index 0000000..7045be8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12403.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12503.png b/superpower19classifier-zjx/template/negative/7_12503.png new file mode 100644 index 0000000..da805a6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12503.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12523.png b/superpower19classifier-zjx/template/negative/7_12523.png new file mode 100644 index 0000000..86ef9d6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12523.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12533.png b/superpower19classifier-zjx/template/negative/7_12533.png new file mode 100644 index 0000000..379bf3e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12533.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12543.png b/superpower19classifier-zjx/template/negative/7_12543.png new file mode 100644 index 0000000..5467727 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12543.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12593.png b/superpower19classifier-zjx/template/negative/7_12593.png new file mode 100644 index 0000000..937f5ea Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12593.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12923.png b/superpower19classifier-zjx/template/negative/7_12923.png new file mode 100644 index 0000000..932fc03 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12923.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12953.png b/superpower19classifier-zjx/template/negative/7_12953.png new file mode 100644 index 0000000..2faf725 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12953.png differ diff --git a/superpower19classifier-zjx/template/negative/7_12973.png b/superpower19classifier-zjx/template/negative/7_12973.png new file mode 100644 index 0000000..f4cc369 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_12973.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13023.png b/superpower19classifier-zjx/template/negative/7_13023.png new file mode 100644 index 0000000..2cb9338 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13023.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13043.png b/superpower19classifier-zjx/template/negative/7_13043.png new file mode 100644 index 0000000..d0d3d44 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13043.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13093.png b/superpower19classifier-zjx/template/negative/7_13093.png new file mode 100644 index 0000000..310904c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13093.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13113.png b/superpower19classifier-zjx/template/negative/7_13113.png new file mode 100644 index 0000000..8bbe748 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13113.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13153.png b/superpower19classifier-zjx/template/negative/7_13153.png new file mode 100644 index 0000000..1398a2e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13153.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13183.png b/superpower19classifier-zjx/template/negative/7_13183.png new file mode 100644 index 0000000..1049f8d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13183.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13193.png b/superpower19classifier-zjx/template/negative/7_13193.png new file mode 100644 index 0000000..2d89261 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13193.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13253.png b/superpower19classifier-zjx/template/negative/7_13253.png new file mode 100644 index 0000000..8f05830 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13253.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13343.png b/superpower19classifier-zjx/template/negative/7_13343.png new file mode 100644 index 0000000..bd4db3e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13343.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13473.png b/superpower19classifier-zjx/template/negative/7_13473.png new file mode 100644 index 0000000..5f50b34 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13473.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13483.png b/superpower19classifier-zjx/template/negative/7_13483.png new file mode 100644 index 0000000..0fdac07 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13483.png differ diff --git a/superpower19classifier-zjx/template/negative/7_13983.png b/superpower19classifier-zjx/template/negative/7_13983.png new file mode 100644 index 0000000..0e91ced Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_13983.png differ diff --git a/superpower19classifier-zjx/template/negative/7_14003.png b/superpower19classifier-zjx/template/negative/7_14003.png new file mode 100644 index 0000000..2524434 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_14003.png differ diff --git a/superpower19classifier-zjx/template/negative/7_19543.png b/superpower19classifier-zjx/template/negative/7_19543.png new file mode 100644 index 0000000..d4b97b6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_19543.png differ diff --git a/superpower19classifier-zjx/template/negative/7_20473.png b/superpower19classifier-zjx/template/negative/7_20473.png new file mode 100644 index 0000000..15f16c3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_20473.png differ diff --git a/superpower19classifier-zjx/template/negative/7_20723.png b/superpower19classifier-zjx/template/negative/7_20723.png new file mode 100644 index 0000000..6ed229f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_20723.png differ diff --git a/superpower19classifier-zjx/template/negative/7_20943.png b/superpower19classifier-zjx/template/negative/7_20943.png new file mode 100644 index 0000000..98cf08e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_20943.png differ diff --git a/superpower19classifier-zjx/template/negative/7_21033.png b/superpower19classifier-zjx/template/negative/7_21033.png new file mode 100644 index 0000000..2c85359 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_21033.png differ diff --git a/superpower19classifier-zjx/template/negative/7_21543.png b/superpower19classifier-zjx/template/negative/7_21543.png new file mode 100644 index 0000000..80c87cc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/7_21543.png differ diff --git a/superpower19classifier-zjx/template/negative/8.png b/superpower19classifier-zjx/template/negative/8.png new file mode 100644 index 0000000..7cf5f61 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/8.png differ diff --git a/superpower19classifier-zjx/template/negative/80.png b/superpower19classifier-zjx/template/negative/80.png new file mode 100644 index 0000000..6fe1e55 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/80.png differ diff --git a/superpower19classifier-zjx/template/negative/81.png b/superpower19classifier-zjx/template/negative/81.png new file mode 100644 index 0000000..9fbfe4e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/81.png differ diff --git a/superpower19classifier-zjx/template/negative/82.png b/superpower19classifier-zjx/template/negative/82.png new file mode 100644 index 0000000..af8cfdf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/82.png differ diff --git a/superpower19classifier-zjx/template/negative/83.png b/superpower19classifier-zjx/template/negative/83.png new file mode 100644 index 0000000..bea720f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/83.png differ diff --git a/superpower19classifier-zjx/template/negative/84.png b/superpower19classifier-zjx/template/negative/84.png new file mode 100644 index 0000000..4f5cff7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/84.png differ diff --git a/superpower19classifier-zjx/template/negative/85.png b/superpower19classifier-zjx/template/negative/85.png new file mode 100644 index 0000000..2030344 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/85.png differ diff --git a/superpower19classifier-zjx/template/negative/86.png b/superpower19classifier-zjx/template/negative/86.png new file mode 100644 index 0000000..3855bb7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/86.png differ diff --git a/superpower19classifier-zjx/template/negative/86_hero0.png b/superpower19classifier-zjx/template/negative/86_hero0.png new file mode 100644 index 0000000..0a0f18e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/86_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/87.png b/superpower19classifier-zjx/template/negative/87.png new file mode 100644 index 0000000..0a02546 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/87.png differ diff --git a/superpower19classifier-zjx/template/negative/87_hero0.png b/superpower19classifier-zjx/template/negative/87_hero0.png new file mode 100644 index 0000000..48ef41b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/87_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/88.png b/superpower19classifier-zjx/template/negative/88.png new file mode 100644 index 0000000..60a5de5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/88.png differ diff --git a/superpower19classifier-zjx/template/negative/88_00.png b/superpower19classifier-zjx/template/negative/88_00.png new file mode 100644 index 0000000..859de78 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/88_00.png differ diff --git a/superpower19classifier-zjx/template/negative/89.png b/superpower19classifier-zjx/template/negative/89.png new file mode 100644 index 0000000..863f95b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/89.png differ diff --git a/superpower19classifier-zjx/template/negative/89_00.png b/superpower19classifier-zjx/template/negative/89_00.png new file mode 100644 index 0000000..3d3ca01 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/89_00.png differ diff --git a/superpower19classifier-zjx/template/negative/89_extra0.png b/superpower19classifier-zjx/template/negative/89_extra0.png new file mode 100644 index 0000000..ccc78e9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/89_extra0.png differ diff --git a/superpower19classifier-zjx/template/negative/9.png b/superpower19classifier-zjx/template/negative/9.png new file mode 100644 index 0000000..81cd791 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/9.png differ diff --git a/superpower19classifier-zjx/template/negative/90.png b/superpower19classifier-zjx/template/negative/90.png new file mode 100644 index 0000000..593f0af Binary files /dev/null and b/superpower19classifier-zjx/template/negative/90.png differ diff --git a/superpower19classifier-zjx/template/negative/91.png b/superpower19classifier-zjx/template/negative/91.png new file mode 100644 index 0000000..27ff962 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/91.png differ diff --git a/superpower19classifier-zjx/template/negative/92.png b/superpower19classifier-zjx/template/negative/92.png new file mode 100644 index 0000000..1e4604a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/92.png differ diff --git a/superpower19classifier-zjx/template/negative/93.png b/superpower19classifier-zjx/template/negative/93.png new file mode 100644 index 0000000..8ebc52a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/93.png differ diff --git a/superpower19classifier-zjx/template/negative/94.png b/superpower19classifier-zjx/template/negative/94.png new file mode 100644 index 0000000..b283da0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/94.png differ diff --git a/superpower19classifier-zjx/template/negative/95.png b/superpower19classifier-zjx/template/negative/95.png new file mode 100644 index 0000000..9f35015 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/95.png differ diff --git a/superpower19classifier-zjx/template/negative/96.png b/superpower19classifier-zjx/template/negative/96.png new file mode 100644 index 0000000..2c661dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/96.png differ diff --git a/superpower19classifier-zjx/template/negative/97.png b/superpower19classifier-zjx/template/negative/97.png new file mode 100644 index 0000000..f55a7b6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/97.png differ diff --git a/superpower19classifier-zjx/template/negative/98.png b/superpower19classifier-zjx/template/negative/98.png new file mode 100644 index 0000000..9c30f81 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/98.png differ diff --git a/superpower19classifier-zjx/template/negative/99.png b/superpower19classifier-zjx/template/negative/99.png new file mode 100644 index 0000000..4d0a492 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/99.png differ diff --git a/superpower19classifier-zjx/template/negative/99_00.png b/superpower19classifier-zjx/template/negative/99_00.png new file mode 100644 index 0000000..37d36b5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/99_00.png differ diff --git a/superpower19classifier-zjx/template/negative/99_hero0.png b/superpower19classifier-zjx/template/negative/99_hero0.png new file mode 100644 index 0000000..a1df6cd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/99_hero0.png differ diff --git a/superpower19classifier-zjx/template/negative/AA108.png b/superpower19classifier-zjx/template/negative/AA108.png new file mode 100644 index 0000000..193e8fa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA108.png differ diff --git a/superpower19classifier-zjx/template/negative/AA111.png b/superpower19classifier-zjx/template/negative/AA111.png new file mode 100644 index 0000000..6e2a60f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA111.png differ diff --git a/superpower19classifier-zjx/template/negative/AA112.png b/superpower19classifier-zjx/template/negative/AA112.png new file mode 100644 index 0000000..0223f34 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA112.png differ diff --git a/superpower19classifier-zjx/template/negative/AA114.png b/superpower19classifier-zjx/template/negative/AA114.png new file mode 100644 index 0000000..d28068b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA114.png differ diff --git a/superpower19classifier-zjx/template/negative/AA117.png b/superpower19classifier-zjx/template/negative/AA117.png new file mode 100644 index 0000000..2297559 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA117.png differ diff --git a/superpower19classifier-zjx/template/negative/AA120.png b/superpower19classifier-zjx/template/negative/AA120.png new file mode 100644 index 0000000..b5d9123 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA120.png differ diff --git a/superpower19classifier-zjx/template/negative/AA128.png b/superpower19classifier-zjx/template/negative/AA128.png new file mode 100644 index 0000000..bd25ed4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA128.png differ diff --git a/superpower19classifier-zjx/template/negative/AA182.png b/superpower19classifier-zjx/template/negative/AA182.png new file mode 100644 index 0000000..bdcb80b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA182.png differ diff --git a/superpower19classifier-zjx/template/negative/AA183.png b/superpower19classifier-zjx/template/negative/AA183.png new file mode 100644 index 0000000..65d209a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA183.png differ diff --git a/superpower19classifier-zjx/template/negative/AA187.png b/superpower19classifier-zjx/template/negative/AA187.png new file mode 100644 index 0000000..4101d40 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA187.png differ diff --git a/superpower19classifier-zjx/template/negative/AA197.png b/superpower19classifier-zjx/template/negative/AA197.png new file mode 100644 index 0000000..24260fd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA197.png differ diff --git a/superpower19classifier-zjx/template/negative/AA198.png b/superpower19classifier-zjx/template/negative/AA198.png new file mode 100644 index 0000000..6af1c18 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA198.png differ diff --git a/superpower19classifier-zjx/template/negative/AA204.png b/superpower19classifier-zjx/template/negative/AA204.png new file mode 100644 index 0000000..f4d98b0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA204.png differ diff --git a/superpower19classifier-zjx/template/negative/AA22.png b/superpower19classifier-zjx/template/negative/AA22.png new file mode 100644 index 0000000..1831b10 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA22.png differ diff --git a/superpower19classifier-zjx/template/negative/AA28.png b/superpower19classifier-zjx/template/negative/AA28.png new file mode 100644 index 0000000..8850ed4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA28.png differ diff --git a/superpower19classifier-zjx/template/negative/AA29.png b/superpower19classifier-zjx/template/negative/AA29.png new file mode 100644 index 0000000..3014fd8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA29.png differ diff --git a/superpower19classifier-zjx/template/negative/AA347.png b/superpower19classifier-zjx/template/negative/AA347.png new file mode 100644 index 0000000..ee30dab Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA347.png differ diff --git a/superpower19classifier-zjx/template/negative/AA348.png b/superpower19classifier-zjx/template/negative/AA348.png new file mode 100644 index 0000000..6183b8d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA348.png differ diff --git a/superpower19classifier-zjx/template/negative/AA350.png b/superpower19classifier-zjx/template/negative/AA350.png new file mode 100644 index 0000000..bfb195d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA350.png differ diff --git a/superpower19classifier-zjx/template/negative/AA351.png b/superpower19classifier-zjx/template/negative/AA351.png new file mode 100644 index 0000000..489c835 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA351.png differ diff --git a/superpower19classifier-zjx/template/negative/AA355.png b/superpower19classifier-zjx/template/negative/AA355.png new file mode 100644 index 0000000..6580658 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA355.png differ diff --git a/superpower19classifier-zjx/template/negative/AA357.png b/superpower19classifier-zjx/template/negative/AA357.png new file mode 100644 index 0000000..996d630 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA357.png differ diff --git a/superpower19classifier-zjx/template/negative/AA37.png b/superpower19classifier-zjx/template/negative/AA37.png new file mode 100644 index 0000000..6d953fb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA37.png differ diff --git a/superpower19classifier-zjx/template/negative/AA394.png b/superpower19classifier-zjx/template/negative/AA394.png new file mode 100644 index 0000000..cf375cc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA394.png differ diff --git a/superpower19classifier-zjx/template/negative/AA41.png b/superpower19classifier-zjx/template/negative/AA41.png new file mode 100644 index 0000000..bb7487e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA41.png differ diff --git a/superpower19classifier-zjx/template/negative/AA410.png b/superpower19classifier-zjx/template/negative/AA410.png new file mode 100644 index 0000000..f08dc61 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA410.png differ diff --git a/superpower19classifier-zjx/template/negative/AA414.png b/superpower19classifier-zjx/template/negative/AA414.png new file mode 100644 index 0000000..7a8b02c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA414.png differ diff --git a/superpower19classifier-zjx/template/negative/AA416.png b/superpower19classifier-zjx/template/negative/AA416.png new file mode 100644 index 0000000..aba336b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA416.png differ diff --git a/superpower19classifier-zjx/template/negative/AA417.png b/superpower19classifier-zjx/template/negative/AA417.png new file mode 100644 index 0000000..defc636 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA417.png differ diff --git a/superpower19classifier-zjx/template/negative/AA42.png b/superpower19classifier-zjx/template/negative/AA42.png new file mode 100644 index 0000000..47326f9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA42.png differ diff --git a/superpower19classifier-zjx/template/negative/AA47.png b/superpower19classifier-zjx/template/negative/AA47.png new file mode 100644 index 0000000..47252db Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA47.png differ diff --git a/superpower19classifier-zjx/template/negative/AA50.png b/superpower19classifier-zjx/template/negative/AA50.png new file mode 100644 index 0000000..74228f5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA50.png differ diff --git a/superpower19classifier-zjx/template/negative/AA55.png b/superpower19classifier-zjx/template/negative/AA55.png new file mode 100644 index 0000000..3c9d094 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA55.png differ diff --git a/superpower19classifier-zjx/template/negative/AA59.png b/superpower19classifier-zjx/template/negative/AA59.png new file mode 100644 index 0000000..e56579b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA59.png differ diff --git a/superpower19classifier-zjx/template/negative/AA62.png b/superpower19classifier-zjx/template/negative/AA62.png new file mode 100644 index 0000000..4a72b32 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA62.png differ diff --git a/superpower19classifier-zjx/template/negative/AA65.png b/superpower19classifier-zjx/template/negative/AA65.png new file mode 100644 index 0000000..1b19920 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA65.png differ diff --git a/superpower19classifier-zjx/template/negative/AA68.png b/superpower19classifier-zjx/template/negative/AA68.png new file mode 100644 index 0000000..f45e18f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA68.png differ diff --git a/superpower19classifier-zjx/template/negative/AA69.png b/superpower19classifier-zjx/template/negative/AA69.png new file mode 100644 index 0000000..8678d4c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA69.png differ diff --git a/superpower19classifier-zjx/template/negative/AA72.png b/superpower19classifier-zjx/template/negative/AA72.png new file mode 100644 index 0000000..e37f7e0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA72.png differ diff --git a/superpower19classifier-zjx/template/negative/AA74.png b/superpower19classifier-zjx/template/negative/AA74.png new file mode 100644 index 0000000..2e562f7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA74.png differ diff --git a/superpower19classifier-zjx/template/negative/AA80.png b/superpower19classifier-zjx/template/negative/AA80.png new file mode 100644 index 0000000..57b3eb0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA80.png differ diff --git a/superpower19classifier-zjx/template/negative/AA81.png b/superpower19classifier-zjx/template/negative/AA81.png new file mode 100644 index 0000000..bb7b598 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA81.png differ diff --git a/superpower19classifier-zjx/template/negative/AA84.png b/superpower19classifier-zjx/template/negative/AA84.png new file mode 100644 index 0000000..df7c24d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA84.png differ diff --git a/superpower19classifier-zjx/template/negative/AA94.png b/superpower19classifier-zjx/template/negative/AA94.png new file mode 100644 index 0000000..ea6fdc2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/AA94.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02105_blue.png b/superpower19classifier-zjx/template/negative/HH02105_blue.png new file mode 100644 index 0000000..501eba1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02105_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02125_blue.png b/superpower19classifier-zjx/template/negative/HH02125_blue.png new file mode 100644 index 0000000..cc0d991 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02125_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02185_blue.png b/superpower19classifier-zjx/template/negative/HH02185_blue.png new file mode 100644 index 0000000..796efbf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02185_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH0218_blue.png b/superpower19classifier-zjx/template/negative/HH0218_blue.png new file mode 100644 index 0000000..298a365 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH0218_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH021_blue.png b/superpower19classifier-zjx/template/negative/HH021_blue.png new file mode 100644 index 0000000..8e43d4c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH021_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02215_blue.png b/superpower19classifier-zjx/template/negative/HH02215_blue.png new file mode 100644 index 0000000..b1c6024 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02215_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02251_blue.png b/superpower19classifier-zjx/template/negative/HH02251_blue.png new file mode 100644 index 0000000..941ddc6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02251_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02253_blue.png b/superpower19classifier-zjx/template/negative/HH02253_blue.png new file mode 100644 index 0000000..7dcb1c1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02253_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02256_blue.png b/superpower19classifier-zjx/template/negative/HH02256_blue.png new file mode 100644 index 0000000..a6925c7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02256_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02258_blue.png b/superpower19classifier-zjx/template/negative/HH02258_blue.png new file mode 100644 index 0000000..d73cbc1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02258_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02260_blue.png b/superpower19classifier-zjx/template/negative/HH02260_blue.png new file mode 100644 index 0000000..7788a83 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02260_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02270_blue.png b/superpower19classifier-zjx/template/negative/HH02270_blue.png new file mode 100644 index 0000000..3ff9339 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02270_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02279_blue.png b/superpower19classifier-zjx/template/negative/HH02279_blue.png new file mode 100644 index 0000000..7a677d2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02279_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02280_blue.png b/superpower19classifier-zjx/template/negative/HH02280_blue.png new file mode 100644 index 0000000..bfe5e13 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02280_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH02281_blue.png b/superpower19classifier-zjx/template/negative/HH02281_blue.png new file mode 100644 index 0000000..e9bcb35 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH02281_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/HH0247_blue.png b/superpower19classifier-zjx/template/negative/HH0247_blue.png new file mode 100644 index 0000000..3ada67d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/HH0247_blue.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao16300.png b/superpower19classifier-zjx/template/negative/dapao16300.png new file mode 100644 index 0000000..7bfa4b4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao16300.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao16950.png b/superpower19classifier-zjx/template/negative/dapao16950.png new file mode 100644 index 0000000..e228083 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao16950.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao16975.png b/superpower19classifier-zjx/template/negative/dapao16975.png new file mode 100644 index 0000000..1ad9839 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao16975.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao17025.png b/superpower19classifier-zjx/template/negative/dapao17025.png new file mode 100644 index 0000000..c8b5a2a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao17025.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao27775.png b/superpower19classifier-zjx/template/negative/dapao27775.png new file mode 100644 index 0000000..467105d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao27775.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao27850.png b/superpower19classifier-zjx/template/negative/dapao27850.png new file mode 100644 index 0000000..da7eebe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao27850.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao27875.png b/superpower19classifier-zjx/template/negative/dapao27875.png new file mode 100644 index 0000000..bb8c684 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao27875.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao27975.png b/superpower19classifier-zjx/template/negative/dapao27975.png new file mode 100644 index 0000000..c17e671 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao27975.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28000.png b/superpower19classifier-zjx/template/negative/dapao28000.png new file mode 100644 index 0000000..e972993 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28000.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28025.png b/superpower19classifier-zjx/template/negative/dapao28025.png new file mode 100644 index 0000000..f2eef83 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28025.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28050.png b/superpower19classifier-zjx/template/negative/dapao28050.png new file mode 100644 index 0000000..06121c5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28050.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28075.png b/superpower19classifier-zjx/template/negative/dapao28075.png new file mode 100644 index 0000000..6b6e610 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28075.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28600.png b/superpower19classifier-zjx/template/negative/dapao28600.png new file mode 100644 index 0000000..49be060 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28600.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28625.png b/superpower19classifier-zjx/template/negative/dapao28625.png new file mode 100644 index 0000000..78288d1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28625.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28650.png b/superpower19classifier-zjx/template/negative/dapao28650.png new file mode 100644 index 0000000..d78cc89 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28650.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28700.png b/superpower19classifier-zjx/template/negative/dapao28700.png new file mode 100644 index 0000000..21137df Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28700.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28725.png b/superpower19classifier-zjx/template/negative/dapao28725.png new file mode 100644 index 0000000..970218b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28725.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28800.png b/superpower19classifier-zjx/template/negative/dapao28800.png new file mode 100644 index 0000000..3f52833 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28800.png differ diff --git a/superpower19classifier-zjx/template/negative/dapao28825.png b/superpower19classifier-zjx/template/negative/dapao28825.png new file mode 100644 index 0000000..c293628 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/dapao28825.png differ diff --git a/superpower19classifier-zjx/template/negative/f1.png b/superpower19classifier-zjx/template/negative/f1.png new file mode 100644 index 0000000..235e8bc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f1.png differ diff --git a/superpower19classifier-zjx/template/negative/f10.png b/superpower19classifier-zjx/template/negative/f10.png new file mode 100644 index 0000000..dbf34df Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f10.png differ diff --git a/superpower19classifier-zjx/template/negative/f11.png b/superpower19classifier-zjx/template/negative/f11.png new file mode 100644 index 0000000..f79488f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f11.png differ diff --git a/superpower19classifier-zjx/template/negative/f12.png b/superpower19classifier-zjx/template/negative/f12.png new file mode 100644 index 0000000..03c5c62 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f12.png differ diff --git a/superpower19classifier-zjx/template/negative/f13.png b/superpower19classifier-zjx/template/negative/f13.png new file mode 100644 index 0000000..e2a7380 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f13.png differ diff --git a/superpower19classifier-zjx/template/negative/f14.png b/superpower19classifier-zjx/template/negative/f14.png new file mode 100644 index 0000000..c01a2b2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f14.png differ diff --git a/superpower19classifier-zjx/template/negative/f15.png b/superpower19classifier-zjx/template/negative/f15.png new file mode 100644 index 0000000..184d488 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f15.png differ diff --git a/superpower19classifier-zjx/template/negative/f16.png b/superpower19classifier-zjx/template/negative/f16.png new file mode 100644 index 0000000..2311606 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f16.png differ diff --git a/superpower19classifier-zjx/template/negative/f17.png b/superpower19classifier-zjx/template/negative/f17.png new file mode 100644 index 0000000..d88d4ae Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f17.png differ diff --git a/superpower19classifier-zjx/template/negative/f18.png b/superpower19classifier-zjx/template/negative/f18.png new file mode 100644 index 0000000..9e91c35 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f18.png differ diff --git a/superpower19classifier-zjx/template/negative/f19.png b/superpower19classifier-zjx/template/negative/f19.png new file mode 100644 index 0000000..505ec80 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f19.png differ diff --git a/superpower19classifier-zjx/template/negative/f2.png b/superpower19classifier-zjx/template/negative/f2.png new file mode 100644 index 0000000..0802fca Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f2.png differ diff --git a/superpower19classifier-zjx/template/negative/f20.png b/superpower19classifier-zjx/template/negative/f20.png new file mode 100644 index 0000000..403d475 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f20.png differ diff --git a/superpower19classifier-zjx/template/negative/f21.png b/superpower19classifier-zjx/template/negative/f21.png new file mode 100644 index 0000000..4931293 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f21.png differ diff --git a/superpower19classifier-zjx/template/negative/f22.png b/superpower19classifier-zjx/template/negative/f22.png new file mode 100644 index 0000000..8a009f2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f22.png differ diff --git a/superpower19classifier-zjx/template/negative/f23.png b/superpower19classifier-zjx/template/negative/f23.png new file mode 100644 index 0000000..8520374 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f23.png differ diff --git a/superpower19classifier-zjx/template/negative/f24.png b/superpower19classifier-zjx/template/negative/f24.png new file mode 100644 index 0000000..77939e2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f24.png differ diff --git a/superpower19classifier-zjx/template/negative/f25.png b/superpower19classifier-zjx/template/negative/f25.png new file mode 100644 index 0000000..331e2dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f25.png differ diff --git a/superpower19classifier-zjx/template/negative/f26.png b/superpower19classifier-zjx/template/negative/f26.png new file mode 100644 index 0000000..e37a6fc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f26.png differ diff --git a/superpower19classifier-zjx/template/negative/f27.png b/superpower19classifier-zjx/template/negative/f27.png new file mode 100644 index 0000000..2c0f4a1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f27.png differ diff --git a/superpower19classifier-zjx/template/negative/f28.png b/superpower19classifier-zjx/template/negative/f28.png new file mode 100644 index 0000000..eb20795 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f28.png differ diff --git a/superpower19classifier-zjx/template/negative/f29.png b/superpower19classifier-zjx/template/negative/f29.png new file mode 100644 index 0000000..7620ffc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f29.png differ diff --git a/superpower19classifier-zjx/template/negative/f3.png b/superpower19classifier-zjx/template/negative/f3.png new file mode 100644 index 0000000..4ec2f2b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f3.png differ diff --git a/superpower19classifier-zjx/template/negative/f30.png b/superpower19classifier-zjx/template/negative/f30.png new file mode 100644 index 0000000..250795a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f30.png differ diff --git a/superpower19classifier-zjx/template/negative/f31.png b/superpower19classifier-zjx/template/negative/f31.png new file mode 100644 index 0000000..8de2bf6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f31.png differ diff --git a/superpower19classifier-zjx/template/negative/f32.png b/superpower19classifier-zjx/template/negative/f32.png new file mode 100644 index 0000000..1c1fa5e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f32.png differ diff --git a/superpower19classifier-zjx/template/negative/f33.png b/superpower19classifier-zjx/template/negative/f33.png new file mode 100644 index 0000000..21135e8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f33.png differ diff --git a/superpower19classifier-zjx/template/negative/f34.png b/superpower19classifier-zjx/template/negative/f34.png new file mode 100644 index 0000000..37036b2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f34.png differ diff --git a/superpower19classifier-zjx/template/negative/f35.png b/superpower19classifier-zjx/template/negative/f35.png new file mode 100644 index 0000000..fa24cb8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f35.png differ diff --git a/superpower19classifier-zjx/template/negative/f36.png b/superpower19classifier-zjx/template/negative/f36.png new file mode 100644 index 0000000..d87a9f7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f36.png differ diff --git a/superpower19classifier-zjx/template/negative/f37.png b/superpower19classifier-zjx/template/negative/f37.png new file mode 100644 index 0000000..c6cb196 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f37.png differ diff --git a/superpower19classifier-zjx/template/negative/f38.png b/superpower19classifier-zjx/template/negative/f38.png new file mode 100644 index 0000000..10e1397 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f38.png differ diff --git a/superpower19classifier-zjx/template/negative/f39.png b/superpower19classifier-zjx/template/negative/f39.png new file mode 100644 index 0000000..6fef11c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f39.png differ diff --git a/superpower19classifier-zjx/template/negative/f4.png b/superpower19classifier-zjx/template/negative/f4.png new file mode 100644 index 0000000..7141836 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f4.png differ diff --git a/superpower19classifier-zjx/template/negative/f40.png b/superpower19classifier-zjx/template/negative/f40.png new file mode 100644 index 0000000..930df6d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f40.png differ diff --git a/superpower19classifier-zjx/template/negative/f41.png b/superpower19classifier-zjx/template/negative/f41.png new file mode 100644 index 0000000..a219f70 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f41.png differ diff --git a/superpower19classifier-zjx/template/negative/f42.png b/superpower19classifier-zjx/template/negative/f42.png new file mode 100644 index 0000000..b2ddf68 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f42.png differ diff --git a/superpower19classifier-zjx/template/negative/f43.png b/superpower19classifier-zjx/template/negative/f43.png new file mode 100644 index 0000000..9fdbd6a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f43.png differ diff --git a/superpower19classifier-zjx/template/negative/f44.png b/superpower19classifier-zjx/template/negative/f44.png new file mode 100644 index 0000000..d391dbd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f44.png differ diff --git a/superpower19classifier-zjx/template/negative/f45.png b/superpower19classifier-zjx/template/negative/f45.png new file mode 100644 index 0000000..f2eef83 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f45.png differ diff --git a/superpower19classifier-zjx/template/negative/f46.png b/superpower19classifier-zjx/template/negative/f46.png new file mode 100644 index 0000000..f69131b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f46.png differ diff --git a/superpower19classifier-zjx/template/negative/f47.png b/superpower19classifier-zjx/template/negative/f47.png new file mode 100644 index 0000000..c846720 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f47.png differ diff --git a/superpower19classifier-zjx/template/negative/f48.png b/superpower19classifier-zjx/template/negative/f48.png new file mode 100644 index 0000000..1ee1922 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f48.png differ diff --git a/superpower19classifier-zjx/template/negative/f49.png b/superpower19classifier-zjx/template/negative/f49.png new file mode 100644 index 0000000..fa0fdcf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f49.png differ diff --git a/superpower19classifier-zjx/template/negative/f5.png b/superpower19classifier-zjx/template/negative/f5.png new file mode 100644 index 0000000..ce17ee8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f5.png differ diff --git a/superpower19classifier-zjx/template/negative/f50.png b/superpower19classifier-zjx/template/negative/f50.png new file mode 100644 index 0000000..df0b144 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f50.png differ diff --git a/superpower19classifier-zjx/template/negative/f51.png b/superpower19classifier-zjx/template/negative/f51.png new file mode 100644 index 0000000..1643cd2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f51.png differ diff --git a/superpower19classifier-zjx/template/negative/f52.png b/superpower19classifier-zjx/template/negative/f52.png new file mode 100644 index 0000000..00b3892 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f52.png differ diff --git a/superpower19classifier-zjx/template/negative/f53.png b/superpower19classifier-zjx/template/negative/f53.png new file mode 100644 index 0000000..97f5b94 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f53.png differ diff --git a/superpower19classifier-zjx/template/negative/f54.png b/superpower19classifier-zjx/template/negative/f54.png new file mode 100644 index 0000000..23a776b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f54.png differ diff --git a/superpower19classifier-zjx/template/negative/f55.png b/superpower19classifier-zjx/template/negative/f55.png new file mode 100644 index 0000000..dd74c96 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f55.png differ diff --git a/superpower19classifier-zjx/template/negative/f56.png b/superpower19classifier-zjx/template/negative/f56.png new file mode 100644 index 0000000..f325669 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f56.png differ diff --git a/superpower19classifier-zjx/template/negative/f57.png b/superpower19classifier-zjx/template/negative/f57.png new file mode 100644 index 0000000..646f5bb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f57.png differ diff --git a/superpower19classifier-zjx/template/negative/f58.png b/superpower19classifier-zjx/template/negative/f58.png new file mode 100644 index 0000000..68b5e91 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f58.png differ diff --git a/superpower19classifier-zjx/template/negative/f59.png b/superpower19classifier-zjx/template/negative/f59.png new file mode 100644 index 0000000..b53a1d1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f59.png differ diff --git a/superpower19classifier-zjx/template/negative/f6.png b/superpower19classifier-zjx/template/negative/f6.png new file mode 100644 index 0000000..ae8d1d3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f6.png differ diff --git a/superpower19classifier-zjx/template/negative/f60.png b/superpower19classifier-zjx/template/negative/f60.png new file mode 100644 index 0000000..d78cc89 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f60.png differ diff --git a/superpower19classifier-zjx/template/negative/f61.png b/superpower19classifier-zjx/template/negative/f61.png new file mode 100644 index 0000000..0da159f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f61.png differ diff --git a/superpower19classifier-zjx/template/negative/f62.png b/superpower19classifier-zjx/template/negative/f62.png new file mode 100644 index 0000000..9b49c15 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f62.png differ diff --git a/superpower19classifier-zjx/template/negative/f63.png b/superpower19classifier-zjx/template/negative/f63.png new file mode 100644 index 0000000..0b6df14 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f63.png differ diff --git a/superpower19classifier-zjx/template/negative/f64.png b/superpower19classifier-zjx/template/negative/f64.png new file mode 100644 index 0000000..23a776b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f64.png differ diff --git a/superpower19classifier-zjx/template/negative/f65.png b/superpower19classifier-zjx/template/negative/f65.png new file mode 100644 index 0000000..15a8a8a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f65.png differ diff --git a/superpower19classifier-zjx/template/negative/f66.png b/superpower19classifier-zjx/template/negative/f66.png new file mode 100644 index 0000000..70974f7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f66.png differ diff --git a/superpower19classifier-zjx/template/negative/f67.png b/superpower19classifier-zjx/template/negative/f67.png new file mode 100644 index 0000000..0b34778 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f67.png differ diff --git a/superpower19classifier-zjx/template/negative/f68.png b/superpower19classifier-zjx/template/negative/f68.png new file mode 100644 index 0000000..7e73bc6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f68.png differ diff --git a/superpower19classifier-zjx/template/negative/f69.png b/superpower19classifier-zjx/template/negative/f69.png new file mode 100644 index 0000000..dd74c96 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f69.png differ diff --git a/superpower19classifier-zjx/template/negative/f7.png b/superpower19classifier-zjx/template/negative/f7.png new file mode 100644 index 0000000..48ae882 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f7.png differ diff --git a/superpower19classifier-zjx/template/negative/f70.png b/superpower19classifier-zjx/template/negative/f70.png new file mode 100644 index 0000000..f325669 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f70.png differ diff --git a/superpower19classifier-zjx/template/negative/f71.png b/superpower19classifier-zjx/template/negative/f71.png new file mode 100644 index 0000000..3ed0202 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f71.png differ diff --git a/superpower19classifier-zjx/template/negative/f72.png b/superpower19classifier-zjx/template/negative/f72.png new file mode 100644 index 0000000..d57a66b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f72.png differ diff --git a/superpower19classifier-zjx/template/negative/f73.png b/superpower19classifier-zjx/template/negative/f73.png new file mode 100644 index 0000000..646f5bb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f73.png differ diff --git a/superpower19classifier-zjx/template/negative/f74.png b/superpower19classifier-zjx/template/negative/f74.png new file mode 100644 index 0000000..68b5e91 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f74.png differ diff --git a/superpower19classifier-zjx/template/negative/f75.png b/superpower19classifier-zjx/template/negative/f75.png new file mode 100644 index 0000000..b53a1d1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f75.png differ diff --git a/superpower19classifier-zjx/template/negative/f76.png b/superpower19classifier-zjx/template/negative/f76.png new file mode 100644 index 0000000..d78cc89 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f76.png differ diff --git a/superpower19classifier-zjx/template/negative/f77.png b/superpower19classifier-zjx/template/negative/f77.png new file mode 100644 index 0000000..0da159f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f77.png differ diff --git a/superpower19classifier-zjx/template/negative/f78.png b/superpower19classifier-zjx/template/negative/f78.png new file mode 100644 index 0000000..9b49c15 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f78.png differ diff --git a/superpower19classifier-zjx/template/negative/f79.png b/superpower19classifier-zjx/template/negative/f79.png new file mode 100644 index 0000000..0b6df14 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f79.png differ diff --git a/superpower19classifier-zjx/template/negative/f8.png b/superpower19classifier-zjx/template/negative/f8.png new file mode 100644 index 0000000..68613dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f8.png differ diff --git a/superpower19classifier-zjx/template/negative/f80.png b/superpower19classifier-zjx/template/negative/f80.png new file mode 100644 index 0000000..15a8a8a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f80.png differ diff --git a/superpower19classifier-zjx/template/negative/f81.png b/superpower19classifier-zjx/template/negative/f81.png new file mode 100644 index 0000000..bdcb80b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f81.png differ diff --git a/superpower19classifier-zjx/template/negative/f82.png b/superpower19classifier-zjx/template/negative/f82.png new file mode 100644 index 0000000..70974f7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f82.png differ diff --git a/superpower19classifier-zjx/template/negative/f83.png b/superpower19classifier-zjx/template/negative/f83.png new file mode 100644 index 0000000..a573dc9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f83.png differ diff --git a/superpower19classifier-zjx/template/negative/f84.png b/superpower19classifier-zjx/template/negative/f84.png new file mode 100644 index 0000000..0b34778 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f84.png differ diff --git a/superpower19classifier-zjx/template/negative/f9.png b/superpower19classifier-zjx/template/negative/f9.png new file mode 100644 index 0000000..7b25526 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/f9.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12673.png b/superpower19classifier-zjx/template/negative/n_12673.png new file mode 100644 index 0000000..e086e90 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12673.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12683.png b/superpower19classifier-zjx/template/negative/n_12683.png new file mode 100644 index 0000000..9f23f95 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12683.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12693.png b/superpower19classifier-zjx/template/negative/n_12693.png new file mode 100644 index 0000000..7fdb5f2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12693.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12703.png b/superpower19classifier-zjx/template/negative/n_12703.png new file mode 100644 index 0000000..c28e772 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12703.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12713.png b/superpower19classifier-zjx/template/negative/n_12713.png new file mode 100644 index 0000000..a219f70 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12713.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12783.png b/superpower19classifier-zjx/template/negative/n_12783.png new file mode 100644 index 0000000..6b99ee3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12783.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12793.png b/superpower19classifier-zjx/template/negative/n_12793.png new file mode 100644 index 0000000..21163e3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12793.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12803.png b/superpower19classifier-zjx/template/negative/n_12803.png new file mode 100644 index 0000000..7868582 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12803.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12813.png b/superpower19classifier-zjx/template/negative/n_12813.png new file mode 100644 index 0000000..9279bfa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12813.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12823.png b/superpower19classifier-zjx/template/negative/n_12823.png new file mode 100644 index 0000000..f970d53 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12823.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12893.png b/superpower19classifier-zjx/template/negative/n_12893.png new file mode 100644 index 0000000..7767eef Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12893.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12903.png b/superpower19classifier-zjx/template/negative/n_12903.png new file mode 100644 index 0000000..16b58af Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12903.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12913.png b/superpower19classifier-zjx/template/negative/n_12913.png new file mode 100644 index 0000000..16c1915 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12913.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12923.png b/superpower19classifier-zjx/template/negative/n_12923.png new file mode 100644 index 0000000..5f5b7e7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12923.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12933.png b/superpower19classifier-zjx/template/negative/n_12933.png new file mode 100644 index 0000000..7b7bf9a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12933.png differ diff --git a/superpower19classifier-zjx/template/negative/n_12943.png b/superpower19classifier-zjx/template/negative/n_12943.png new file mode 100644 index 0000000..0f49831 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_12943.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13003.png b/superpower19classifier-zjx/template/negative/n_13003.png new file mode 100644 index 0000000..156952a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13003.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13013.png b/superpower19classifier-zjx/template/negative/n_13013.png new file mode 100644 index 0000000..2edc04b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13013.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13023.png b/superpower19classifier-zjx/template/negative/n_13023.png new file mode 100644 index 0000000..2b6c339 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13023.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13033.png b/superpower19classifier-zjx/template/negative/n_13033.png new file mode 100644 index 0000000..21135e8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13033.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13043.png b/superpower19classifier-zjx/template/negative/n_13043.png new file mode 100644 index 0000000..7e8bc3b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13043.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13393.png b/superpower19classifier-zjx/template/negative/n_13393.png new file mode 100644 index 0000000..5f127a0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13393.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13403.png b/superpower19classifier-zjx/template/negative/n_13403.png new file mode 100644 index 0000000..186492f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13403.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13413.png b/superpower19classifier-zjx/template/negative/n_13413.png new file mode 100644 index 0000000..2b1f545 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13413.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13423.png b/superpower19classifier-zjx/template/negative/n_13423.png new file mode 100644 index 0000000..1c1fa5e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13423.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13433.png b/superpower19classifier-zjx/template/negative/n_13433.png new file mode 100644 index 0000000..726d30f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13433.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13503.png b/superpower19classifier-zjx/template/negative/n_13503.png new file mode 100644 index 0000000..ad39cad Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13503.png differ diff --git a/superpower19classifier-zjx/template/negative/n_13513.png b/superpower19classifier-zjx/template/negative/n_13513.png new file mode 100644 index 0000000..e0dfe27 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_13513.png differ diff --git a/superpower19classifier-zjx/template/negative/n_96923.png b/superpower19classifier-zjx/template/negative/n_96923.png new file mode 100644 index 0000000..5bb8578 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_96923.png differ diff --git a/superpower19classifier-zjx/template/negative/n_96933.png b/superpower19classifier-zjx/template/negative/n_96933.png new file mode 100644 index 0000000..ebbbabd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_96933.png differ diff --git a/superpower19classifier-zjx/template/negative/n_96943.png b/superpower19classifier-zjx/template/negative/n_96943.png new file mode 100644 index 0000000..54d56a8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_96943.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97013.png b/superpower19classifier-zjx/template/negative/n_97013.png new file mode 100644 index 0000000..6088ada Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97013.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97023.png b/superpower19classifier-zjx/template/negative/n_97023.png new file mode 100644 index 0000000..c496ea6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97023.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97033.png b/superpower19classifier-zjx/template/negative/n_97033.png new file mode 100644 index 0000000..e091218 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97033.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97043.png b/superpower19classifier-zjx/template/negative/n_97043.png new file mode 100644 index 0000000..1567c60 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97043.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97053.png b/superpower19classifier-zjx/template/negative/n_97053.png new file mode 100644 index 0000000..d28e8b4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97053.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97123.png b/superpower19classifier-zjx/template/negative/n_97123.png new file mode 100644 index 0000000..0cb59ba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97123.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97133.png b/superpower19classifier-zjx/template/negative/n_97133.png new file mode 100644 index 0000000..9012bd4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97133.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97143.png b/superpower19classifier-zjx/template/negative/n_97143.png new file mode 100644 index 0000000..84e5d84 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97143.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97153.png b/superpower19classifier-zjx/template/negative/n_97153.png new file mode 100644 index 0000000..bf5e0fa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97153.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97163.png b/superpower19classifier-zjx/template/negative/n_97163.png new file mode 100644 index 0000000..bd6c05b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97163.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97233.png b/superpower19classifier-zjx/template/negative/n_97233.png new file mode 100644 index 0000000..8b8bf28 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97233.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97243.png b/superpower19classifier-zjx/template/negative/n_97243.png new file mode 100644 index 0000000..48f128a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97243.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97253.png b/superpower19classifier-zjx/template/negative/n_97253.png new file mode 100644 index 0000000..c85c0ce Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97253.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97273.png b/superpower19classifier-zjx/template/negative/n_97273.png new file mode 100644 index 0000000..efacfc9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97273.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97283.png b/superpower19classifier-zjx/template/negative/n_97283.png new file mode 100644 index 0000000..b7c0dfd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97283.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97353.png b/superpower19classifier-zjx/template/negative/n_97353.png new file mode 100644 index 0000000..6621196 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97353.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97363.png b/superpower19classifier-zjx/template/negative/n_97363.png new file mode 100644 index 0000000..e8f3aad Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97363.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97373.png b/superpower19classifier-zjx/template/negative/n_97373.png new file mode 100644 index 0000000..6ce3127 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97373.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97383.png b/superpower19classifier-zjx/template/negative/n_97383.png new file mode 100644 index 0000000..ff88703 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97383.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97393.png b/superpower19classifier-zjx/template/negative/n_97393.png new file mode 100644 index 0000000..423dcc9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97393.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97463.png b/superpower19classifier-zjx/template/negative/n_97463.png new file mode 100644 index 0000000..dc70c9a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97463.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97473.png b/superpower19classifier-zjx/template/negative/n_97473.png new file mode 100644 index 0000000..ff9607e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97473.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97483.png b/superpower19classifier-zjx/template/negative/n_97483.png new file mode 100644 index 0000000..0c72bf8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97483.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97493.png b/superpower19classifier-zjx/template/negative/n_97493.png new file mode 100644 index 0000000..bcf75f9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97493.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97503.png b/superpower19classifier-zjx/template/negative/n_97503.png new file mode 100644 index 0000000..10dfa6c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97503.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97573.png b/superpower19classifier-zjx/template/negative/n_97573.png new file mode 100644 index 0000000..211bb60 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97573.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97583.png b/superpower19classifier-zjx/template/negative/n_97583.png new file mode 100644 index 0000000..ab174ee Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97583.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97593.png b/superpower19classifier-zjx/template/negative/n_97593.png new file mode 100644 index 0000000..fef101e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97593.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97603.png b/superpower19classifier-zjx/template/negative/n_97603.png new file mode 100644 index 0000000..bf01439 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97603.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97613.png b/superpower19classifier-zjx/template/negative/n_97613.png new file mode 100644 index 0000000..62bbd42 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97613.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97683.png b/superpower19classifier-zjx/template/negative/n_97683.png new file mode 100644 index 0000000..552f8e6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97683.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97703.png b/superpower19classifier-zjx/template/negative/n_97703.png new file mode 100644 index 0000000..767536e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97703.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97713.png b/superpower19classifier-zjx/template/negative/n_97713.png new file mode 100644 index 0000000..d5f1c47 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97713.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97723.png b/superpower19classifier-zjx/template/negative/n_97723.png new file mode 100644 index 0000000..22adfea Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97723.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97743.png b/superpower19classifier-zjx/template/negative/n_97743.png new file mode 100644 index 0000000..44ceba9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97743.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97853.png b/superpower19classifier-zjx/template/negative/n_97853.png new file mode 100644 index 0000000..abf0b7c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97853.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97873.png b/superpower19classifier-zjx/template/negative/n_97873.png new file mode 100644 index 0000000..221a91e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97873.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97883.png b/superpower19classifier-zjx/template/negative/n_97883.png new file mode 100644 index 0000000..dfae8e5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97883.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97893.png b/superpower19classifier-zjx/template/negative/n_97893.png new file mode 100644 index 0000000..7078423 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97893.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97913.png b/superpower19classifier-zjx/template/negative/n_97913.png new file mode 100644 index 0000000..5b4b4dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97913.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97943.png b/superpower19classifier-zjx/template/negative/n_97943.png new file mode 100644 index 0000000..1948445 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97943.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97983.png b/superpower19classifier-zjx/template/negative/n_97983.png new file mode 100644 index 0000000..331966f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97983.png differ diff --git a/superpower19classifier-zjx/template/negative/n_97993.png b/superpower19classifier-zjx/template/negative/n_97993.png new file mode 100644 index 0000000..7ffc548 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_97993.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98013.png b/superpower19classifier-zjx/template/negative/n_98013.png new file mode 100644 index 0000000..b9222c2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98013.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98023.png b/superpower19classifier-zjx/template/negative/n_98023.png new file mode 100644 index 0000000..faae8ff Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98023.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98033.png b/superpower19classifier-zjx/template/negative/n_98033.png new file mode 100644 index 0000000..5ef5f4c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98033.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98103.png b/superpower19classifier-zjx/template/negative/n_98103.png new file mode 100644 index 0000000..5babe6c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98103.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98113.png b/superpower19classifier-zjx/template/negative/n_98113.png new file mode 100644 index 0000000..0f1f0ac Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98113.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98123.png b/superpower19classifier-zjx/template/negative/n_98123.png new file mode 100644 index 0000000..3ed0202 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98123.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98133.png b/superpower19classifier-zjx/template/negative/n_98133.png new file mode 100644 index 0000000..0cb43ed Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98133.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98143.png b/superpower19classifier-zjx/template/negative/n_98143.png new file mode 100644 index 0000000..f13420f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98143.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98173.png b/superpower19classifier-zjx/template/negative/n_98173.png new file mode 100644 index 0000000..1c3d73d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98173.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98233.png b/superpower19classifier-zjx/template/negative/n_98233.png new file mode 100644 index 0000000..b3d14c9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98233.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98243.png b/superpower19classifier-zjx/template/negative/n_98243.png new file mode 100644 index 0000000..555cb2c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98243.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98253.png b/superpower19classifier-zjx/template/negative/n_98253.png new file mode 100644 index 0000000..d486d7f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98253.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98263.png b/superpower19classifier-zjx/template/negative/n_98263.png new file mode 100644 index 0000000..187576f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98263.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98273.png b/superpower19classifier-zjx/template/negative/n_98273.png new file mode 100644 index 0000000..c0d7648 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98273.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98293.png b/superpower19classifier-zjx/template/negative/n_98293.png new file mode 100644 index 0000000..730bc11 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98293.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98353.png b/superpower19classifier-zjx/template/negative/n_98353.png new file mode 100644 index 0000000..ae18a5e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98353.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98363.png b/superpower19classifier-zjx/template/negative/n_98363.png new file mode 100644 index 0000000..1936d05 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98363.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98373.png b/superpower19classifier-zjx/template/negative/n_98373.png new file mode 100644 index 0000000..e3a267e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98373.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98383.png b/superpower19classifier-zjx/template/negative/n_98383.png new file mode 100644 index 0000000..b6bedda Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98383.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98403.png b/superpower19classifier-zjx/template/negative/n_98403.png new file mode 100644 index 0000000..b7afb86 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98403.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98493.png b/superpower19classifier-zjx/template/negative/n_98493.png new file mode 100644 index 0000000..3fd17ee Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98493.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98503.png b/superpower19classifier-zjx/template/negative/n_98503.png new file mode 100644 index 0000000..1132136 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98503.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98513.png b/superpower19classifier-zjx/template/negative/n_98513.png new file mode 100644 index 0000000..03be540 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98513.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98523.png b/superpower19classifier-zjx/template/negative/n_98523.png new file mode 100644 index 0000000..d3fee4f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98523.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98533.png b/superpower19classifier-zjx/template/negative/n_98533.png new file mode 100644 index 0000000..4e21809 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98533.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98603.png b/superpower19classifier-zjx/template/negative/n_98603.png new file mode 100644 index 0000000..7ba083d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98603.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98613.png b/superpower19classifier-zjx/template/negative/n_98613.png new file mode 100644 index 0000000..da4be32 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98613.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98623.png b/superpower19classifier-zjx/template/negative/n_98623.png new file mode 100644 index 0000000..3b5faac Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98623.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98633.png b/superpower19classifier-zjx/template/negative/n_98633.png new file mode 100644 index 0000000..a5c3a63 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98633.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98643.png b/superpower19classifier-zjx/template/negative/n_98643.png new file mode 100644 index 0000000..5e7c39c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98643.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98713.png b/superpower19classifier-zjx/template/negative/n_98713.png new file mode 100644 index 0000000..a0bacd2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98713.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98723.png b/superpower19classifier-zjx/template/negative/n_98723.png new file mode 100644 index 0000000..190260a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98723.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98733.png b/superpower19classifier-zjx/template/negative/n_98733.png new file mode 100644 index 0000000..2ac7412 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98733.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98743.png b/superpower19classifier-zjx/template/negative/n_98743.png new file mode 100644 index 0000000..65ee4ef Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98743.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98753.png b/superpower19classifier-zjx/template/negative/n_98753.png new file mode 100644 index 0000000..3fc2ee5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98753.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98823.png b/superpower19classifier-zjx/template/negative/n_98823.png new file mode 100644 index 0000000..4c467bd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98823.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98833.png b/superpower19classifier-zjx/template/negative/n_98833.png new file mode 100644 index 0000000..d0d848d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98833.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98843.png b/superpower19classifier-zjx/template/negative/n_98843.png new file mode 100644 index 0000000..6981513 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98843.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98853.png b/superpower19classifier-zjx/template/negative/n_98853.png new file mode 100644 index 0000000..def7e69 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98853.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98863.png b/superpower19classifier-zjx/template/negative/n_98863.png new file mode 100644 index 0000000..868e759 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98863.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98933.png b/superpower19classifier-zjx/template/negative/n_98933.png new file mode 100644 index 0000000..974225e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98933.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98943.png b/superpower19classifier-zjx/template/negative/n_98943.png new file mode 100644 index 0000000..a774780 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98943.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98953.png b/superpower19classifier-zjx/template/negative/n_98953.png new file mode 100644 index 0000000..d555021 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98953.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98963.png b/superpower19classifier-zjx/template/negative/n_98963.png new file mode 100644 index 0000000..94d0ac5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98963.png differ diff --git a/superpower19classifier-zjx/template/negative/n_98973.png b/superpower19classifier-zjx/template/negative/n_98973.png new file mode 100644 index 0000000..352a1e8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/n_98973.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042877.png b/superpower19classifier-zjx/template/negative/oo042877.png new file mode 100644 index 0000000..37402fa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042877.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042885.png b/superpower19classifier-zjx/template/negative/oo042885.png new file mode 100644 index 0000000..3434f01 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042885.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042904.png b/superpower19classifier-zjx/template/negative/oo042904.png new file mode 100644 index 0000000..88f003e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042904.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042916.png b/superpower19classifier-zjx/template/negative/oo042916.png new file mode 100644 index 0000000..a0a775f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042916.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042927.png b/superpower19classifier-zjx/template/negative/oo042927.png new file mode 100644 index 0000000..551dc2f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042927.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042934.png b/superpower19classifier-zjx/template/negative/oo042934.png new file mode 100644 index 0000000..42459fa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042934.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042936.png b/superpower19classifier-zjx/template/negative/oo042936.png new file mode 100644 index 0000000..51db813 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042936.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042956.png b/superpower19classifier-zjx/template/negative/oo042956.png new file mode 100644 index 0000000..820b6de Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042956.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042963.png b/superpower19classifier-zjx/template/negative/oo042963.png new file mode 100644 index 0000000..44de2fe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042963.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042975.png b/superpower19classifier-zjx/template/negative/oo042975.png new file mode 100644 index 0000000..14b646e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042975.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042987.png b/superpower19classifier-zjx/template/negative/oo042987.png new file mode 100644 index 0000000..3f5208e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042987.png differ diff --git a/superpower19classifier-zjx/template/negative/oo042995.png b/superpower19classifier-zjx/template/negative/oo042995.png new file mode 100644 index 0000000..3dbc54a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo042995.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043006.png b/superpower19classifier-zjx/template/negative/oo043006.png new file mode 100644 index 0000000..a885cdf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043006.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043014.png b/superpower19classifier-zjx/template/negative/oo043014.png new file mode 100644 index 0000000..6aa7796 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043014.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043026.png b/superpower19classifier-zjx/template/negative/oo043026.png new file mode 100644 index 0000000..ad36a24 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043026.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043027.png b/superpower19classifier-zjx/template/negative/oo043027.png new file mode 100644 index 0000000..eaaf117 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043027.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043048.png b/superpower19classifier-zjx/template/negative/oo043048.png new file mode 100644 index 0000000..14e34aa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043048.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043054.png b/superpower19classifier-zjx/template/negative/oo043054.png new file mode 100644 index 0000000..579cb00 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043054.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043066.png b/superpower19classifier-zjx/template/negative/oo043066.png new file mode 100644 index 0000000..d904332 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043066.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043077.png b/superpower19classifier-zjx/template/negative/oo043077.png new file mode 100644 index 0000000..f9a169e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043077.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043105.png b/superpower19classifier-zjx/template/negative/oo043105.png new file mode 100644 index 0000000..37d8e2b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043105.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043113.png b/superpower19classifier-zjx/template/negative/oo043113.png new file mode 100644 index 0000000..1f05648 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043113.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043145.png b/superpower19classifier-zjx/template/negative/oo043145.png new file mode 100644 index 0000000..3f3eb0b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043145.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043156.png b/superpower19classifier-zjx/template/negative/oo043156.png new file mode 100644 index 0000000..cb8b656 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043156.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043158.png b/superpower19classifier-zjx/template/negative/oo043158.png new file mode 100644 index 0000000..52da7de Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043158.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043177.png b/superpower19classifier-zjx/template/negative/oo043177.png new file mode 100644 index 0000000..a5f8593 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043177.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043188.png b/superpower19classifier-zjx/template/negative/oo043188.png new file mode 100644 index 0000000..86eaeba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043188.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043196.png b/superpower19classifier-zjx/template/negative/oo043196.png new file mode 100644 index 0000000..050a838 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043196.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043205.png b/superpower19classifier-zjx/template/negative/oo043205.png new file mode 100644 index 0000000..ed73f5c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043205.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043207.png b/superpower19classifier-zjx/template/negative/oo043207.png new file mode 100644 index 0000000..049cf5e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043207.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043210.png b/superpower19classifier-zjx/template/negative/oo043210.png new file mode 100644 index 0000000..3540103 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043210.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043218.png b/superpower19classifier-zjx/template/negative/oo043218.png new file mode 100644 index 0000000..c92a681 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043218.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043225.png b/superpower19classifier-zjx/template/negative/oo043225.png new file mode 100644 index 0000000..165c70a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043225.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043247.png b/superpower19classifier-zjx/template/negative/oo043247.png new file mode 100644 index 0000000..37143e6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043247.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043256.png b/superpower19classifier-zjx/template/negative/oo043256.png new file mode 100644 index 0000000..9fa1a01 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043256.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043260.png b/superpower19classifier-zjx/template/negative/oo043260.png new file mode 100644 index 0000000..bdaf9f3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043260.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043275.png b/superpower19classifier-zjx/template/negative/oo043275.png new file mode 100644 index 0000000..b557f64 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043275.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043284.png b/superpower19classifier-zjx/template/negative/oo043284.png new file mode 100644 index 0000000..403164e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043284.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043297.png b/superpower19classifier-zjx/template/negative/oo043297.png new file mode 100644 index 0000000..605934a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043297.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043304.png b/superpower19classifier-zjx/template/negative/oo043304.png new file mode 100644 index 0000000..81d0db5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043304.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043310.png b/superpower19classifier-zjx/template/negative/oo043310.png new file mode 100644 index 0000000..6026a4b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043310.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043318.png b/superpower19classifier-zjx/template/negative/oo043318.png new file mode 100644 index 0000000..09740aa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043318.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043322.png b/superpower19classifier-zjx/template/negative/oo043322.png new file mode 100644 index 0000000..00e6a9f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043322.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043323.png b/superpower19classifier-zjx/template/negative/oo043323.png new file mode 100644 index 0000000..27f84d3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043323.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043324.png b/superpower19classifier-zjx/template/negative/oo043324.png new file mode 100644 index 0000000..e404759 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043324.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043325.png b/superpower19classifier-zjx/template/negative/oo043325.png new file mode 100644 index 0000000..ad9edd1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043325.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043326.png b/superpower19classifier-zjx/template/negative/oo043326.png new file mode 100644 index 0000000..17ed88f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043326.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043328.png b/superpower19classifier-zjx/template/negative/oo043328.png new file mode 100644 index 0000000..0e7da49 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043328.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043350.png b/superpower19classifier-zjx/template/negative/oo043350.png new file mode 100644 index 0000000..f038758 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043350.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043358.png b/superpower19classifier-zjx/template/negative/oo043358.png new file mode 100644 index 0000000..27e2af9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043358.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043364.png b/superpower19classifier-zjx/template/negative/oo043364.png new file mode 100644 index 0000000..ea131b9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043364.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043371.png b/superpower19classifier-zjx/template/negative/oo043371.png new file mode 100644 index 0000000..cdcb131 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043371.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043378.png b/superpower19classifier-zjx/template/negative/oo043378.png new file mode 100644 index 0000000..ad93f50 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043378.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043400.png b/superpower19classifier-zjx/template/negative/oo043400.png new file mode 100644 index 0000000..1c059fc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043400.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043408.png b/superpower19classifier-zjx/template/negative/oo043408.png new file mode 100644 index 0000000..0cd0428 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043408.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043416.png b/superpower19classifier-zjx/template/negative/oo043416.png new file mode 100644 index 0000000..d19b54c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043416.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043448.png b/superpower19classifier-zjx/template/negative/oo043448.png new file mode 100644 index 0000000..015a5a4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043448.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043460.png b/superpower19classifier-zjx/template/negative/oo043460.png new file mode 100644 index 0000000..7711d12 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043460.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043463.png b/superpower19classifier-zjx/template/negative/oo043463.png new file mode 100644 index 0000000..b51d650 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043463.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043477.png b/superpower19classifier-zjx/template/negative/oo043477.png new file mode 100644 index 0000000..fd45f64 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043477.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043484.png b/superpower19classifier-zjx/template/negative/oo043484.png new file mode 100644 index 0000000..23d9955 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043484.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043491.png b/superpower19classifier-zjx/template/negative/oo043491.png new file mode 100644 index 0000000..39383ea Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043491.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043496.png b/superpower19classifier-zjx/template/negative/oo043496.png new file mode 100644 index 0000000..52aecbe Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043496.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043505.png b/superpower19classifier-zjx/template/negative/oo043505.png new file mode 100644 index 0000000..a435f20 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043505.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043511.png b/superpower19classifier-zjx/template/negative/oo043511.png new file mode 100644 index 0000000..0c562ef Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043511.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043516.png b/superpower19classifier-zjx/template/negative/oo043516.png new file mode 100644 index 0000000..780f951 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043516.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043525.png b/superpower19classifier-zjx/template/negative/oo043525.png new file mode 100644 index 0000000..fb0fed0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043525.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043546.png b/superpower19classifier-zjx/template/negative/oo043546.png new file mode 100644 index 0000000..6f7a0a7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043546.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043552.png b/superpower19classifier-zjx/template/negative/oo043552.png new file mode 100644 index 0000000..c140d02 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043552.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043561.png b/superpower19classifier-zjx/template/negative/oo043561.png new file mode 100644 index 0000000..5ae81ec Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043561.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043581.png b/superpower19classifier-zjx/template/negative/oo043581.png new file mode 100644 index 0000000..b180fd6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043581.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043593.png b/superpower19classifier-zjx/template/negative/oo043593.png new file mode 100644 index 0000000..403b9d6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043593.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043599.png b/superpower19classifier-zjx/template/negative/oo043599.png new file mode 100644 index 0000000..f05f7bc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043599.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043605.png b/superpower19classifier-zjx/template/negative/oo043605.png new file mode 100644 index 0000000..f4b3089 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043605.png differ diff --git a/superpower19classifier-zjx/template/negative/oo043749.png b/superpower19classifier-zjx/template/negative/oo043749.png new file mode 100644 index 0000000..5bd6e1c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo043749.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044157.png b/superpower19classifier-zjx/template/negative/oo044157.png new file mode 100644 index 0000000..0811b1f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044157.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044158.png b/superpower19classifier-zjx/template/negative/oo044158.png new file mode 100644 index 0000000..8429d31 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044158.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044159.png b/superpower19classifier-zjx/template/negative/oo044159.png new file mode 100644 index 0000000..0bc5cf3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044159.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044160.png b/superpower19classifier-zjx/template/negative/oo044160.png new file mode 100644 index 0000000..d098e1d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044160.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044161.png b/superpower19classifier-zjx/template/negative/oo044161.png new file mode 100644 index 0000000..6d034e7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044161.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044162.png b/superpower19classifier-zjx/template/negative/oo044162.png new file mode 100644 index 0000000..34cfcb7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044162.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044163.png b/superpower19classifier-zjx/template/negative/oo044163.png new file mode 100644 index 0000000..e1604d3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044163.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044164.png b/superpower19classifier-zjx/template/negative/oo044164.png new file mode 100644 index 0000000..dfe0baa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044164.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044168.png b/superpower19classifier-zjx/template/negative/oo044168.png new file mode 100644 index 0000000..194464b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044168.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044169.png b/superpower19classifier-zjx/template/negative/oo044169.png new file mode 100644 index 0000000..c0cf7e4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044169.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044170.png b/superpower19classifier-zjx/template/negative/oo044170.png new file mode 100644 index 0000000..6b552d6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044170.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044171.png b/superpower19classifier-zjx/template/negative/oo044171.png new file mode 100644 index 0000000..5b116f1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044171.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044172.png b/superpower19classifier-zjx/template/negative/oo044172.png new file mode 100644 index 0000000..9690269 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044172.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044173.png b/superpower19classifier-zjx/template/negative/oo044173.png new file mode 100644 index 0000000..a811422 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044173.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044174.png b/superpower19classifier-zjx/template/negative/oo044174.png new file mode 100644 index 0000000..2696214 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044174.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044175.png b/superpower19classifier-zjx/template/negative/oo044175.png new file mode 100644 index 0000000..634f085 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044175.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044180.png b/superpower19classifier-zjx/template/negative/oo044180.png new file mode 100644 index 0000000..69d0726 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044180.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044181.png b/superpower19classifier-zjx/template/negative/oo044181.png new file mode 100644 index 0000000..40584ad Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044181.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044182.png b/superpower19classifier-zjx/template/negative/oo044182.png new file mode 100644 index 0000000..bb09463 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044182.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044183.png b/superpower19classifier-zjx/template/negative/oo044183.png new file mode 100644 index 0000000..4e7cb0d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044183.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044184.png b/superpower19classifier-zjx/template/negative/oo044184.png new file mode 100644 index 0000000..04d64a9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044184.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044185.png b/superpower19classifier-zjx/template/negative/oo044185.png new file mode 100644 index 0000000..c6df156 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044185.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044186.png b/superpower19classifier-zjx/template/negative/oo044186.png new file mode 100644 index 0000000..d3728a3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044186.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044187.png b/superpower19classifier-zjx/template/negative/oo044187.png new file mode 100644 index 0000000..4323f4d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044187.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044191.png b/superpower19classifier-zjx/template/negative/oo044191.png new file mode 100644 index 0000000..2e6dd28 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044191.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044192.png b/superpower19classifier-zjx/template/negative/oo044192.png new file mode 100644 index 0000000..de74646 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044192.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044193.png b/superpower19classifier-zjx/template/negative/oo044193.png new file mode 100644 index 0000000..11b8488 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044193.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044194.png b/superpower19classifier-zjx/template/negative/oo044194.png new file mode 100644 index 0000000..77c4abf Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044194.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044195.png b/superpower19classifier-zjx/template/negative/oo044195.png new file mode 100644 index 0000000..596ed70 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044195.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044196.png b/superpower19classifier-zjx/template/negative/oo044196.png new file mode 100644 index 0000000..bdd9134 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044196.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044197.png b/superpower19classifier-zjx/template/negative/oo044197.png new file mode 100644 index 0000000..54e88a0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044197.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044198.png b/superpower19classifier-zjx/template/negative/oo044198.png new file mode 100644 index 0000000..cdbc854 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044198.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044202.png b/superpower19classifier-zjx/template/negative/oo044202.png new file mode 100644 index 0000000..35dbfb0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044202.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044203.png b/superpower19classifier-zjx/template/negative/oo044203.png new file mode 100644 index 0000000..743d866 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044203.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044204.png b/superpower19classifier-zjx/template/negative/oo044204.png new file mode 100644 index 0000000..f037703 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044204.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044205.png b/superpower19classifier-zjx/template/negative/oo044205.png new file mode 100644 index 0000000..37a6695 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044205.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044206.png b/superpower19classifier-zjx/template/negative/oo044206.png new file mode 100644 index 0000000..8a84d7d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044206.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044207.png b/superpower19classifier-zjx/template/negative/oo044207.png new file mode 100644 index 0000000..4eb9bf4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044207.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044208.png b/superpower19classifier-zjx/template/negative/oo044208.png new file mode 100644 index 0000000..7ae3e73 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044208.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044209.png b/superpower19classifier-zjx/template/negative/oo044209.png new file mode 100644 index 0000000..2f34468 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044209.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044213.png b/superpower19classifier-zjx/template/negative/oo044213.png new file mode 100644 index 0000000..253ff94 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044213.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044214.png b/superpower19classifier-zjx/template/negative/oo044214.png new file mode 100644 index 0000000..13f3901 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044214.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044215.png b/superpower19classifier-zjx/template/negative/oo044215.png new file mode 100644 index 0000000..1a49837 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044215.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044216.png b/superpower19classifier-zjx/template/negative/oo044216.png new file mode 100644 index 0000000..0f22afc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044216.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044217.png b/superpower19classifier-zjx/template/negative/oo044217.png new file mode 100644 index 0000000..00331da Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044217.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044218.png b/superpower19classifier-zjx/template/negative/oo044218.png new file mode 100644 index 0000000..f5243cb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044218.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044219.png b/superpower19classifier-zjx/template/negative/oo044219.png new file mode 100644 index 0000000..9fa21fc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044219.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044220.png b/superpower19classifier-zjx/template/negative/oo044220.png new file mode 100644 index 0000000..afa06ee Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044220.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044224.png b/superpower19classifier-zjx/template/negative/oo044224.png new file mode 100644 index 0000000..09146e2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044224.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044225.png b/superpower19classifier-zjx/template/negative/oo044225.png new file mode 100644 index 0000000..7392ad0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044225.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044226.png b/superpower19classifier-zjx/template/negative/oo044226.png new file mode 100644 index 0000000..4adf5a1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044226.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044227.png b/superpower19classifier-zjx/template/negative/oo044227.png new file mode 100644 index 0000000..8e549ed Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044227.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044228.png b/superpower19classifier-zjx/template/negative/oo044228.png new file mode 100644 index 0000000..fbec2b9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044228.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044230.png b/superpower19classifier-zjx/template/negative/oo044230.png new file mode 100644 index 0000000..ba1027a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044230.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044231.png b/superpower19classifier-zjx/template/negative/oo044231.png new file mode 100644 index 0000000..d5c6f5e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044231.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044232.png b/superpower19classifier-zjx/template/negative/oo044232.png new file mode 100644 index 0000000..7d81945 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044232.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044236.png b/superpower19classifier-zjx/template/negative/oo044236.png new file mode 100644 index 0000000..3d6fedb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044236.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044237.png b/superpower19classifier-zjx/template/negative/oo044237.png new file mode 100644 index 0000000..08c48b3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044237.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044238.png b/superpower19classifier-zjx/template/negative/oo044238.png new file mode 100644 index 0000000..874b491 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044238.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044239.png b/superpower19classifier-zjx/template/negative/oo044239.png new file mode 100644 index 0000000..e38abba Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044239.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044240.png b/superpower19classifier-zjx/template/negative/oo044240.png new file mode 100644 index 0000000..2ee8de2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044240.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044241.png b/superpower19classifier-zjx/template/negative/oo044241.png new file mode 100644 index 0000000..d9928a8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044241.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044242.png b/superpower19classifier-zjx/template/negative/oo044242.png new file mode 100644 index 0000000..290a47b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044242.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044243.png b/superpower19classifier-zjx/template/negative/oo044243.png new file mode 100644 index 0000000..411cf05 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044243.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044247.png b/superpower19classifier-zjx/template/negative/oo044247.png new file mode 100644 index 0000000..c566ee8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044247.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044248.png b/superpower19classifier-zjx/template/negative/oo044248.png new file mode 100644 index 0000000..57020f7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044248.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044249.png b/superpower19classifier-zjx/template/negative/oo044249.png new file mode 100644 index 0000000..8ff408b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044249.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044250.png b/superpower19classifier-zjx/template/negative/oo044250.png new file mode 100644 index 0000000..b7e8523 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044250.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044251.png b/superpower19classifier-zjx/template/negative/oo044251.png new file mode 100644 index 0000000..da6093a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044251.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044252.png b/superpower19classifier-zjx/template/negative/oo044252.png new file mode 100644 index 0000000..bf4a0ea Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044252.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044253.png b/superpower19classifier-zjx/template/negative/oo044253.png new file mode 100644 index 0000000..98f5d17 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044253.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044254.png b/superpower19classifier-zjx/template/negative/oo044254.png new file mode 100644 index 0000000..731fafa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044254.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044258.png b/superpower19classifier-zjx/template/negative/oo044258.png new file mode 100644 index 0000000..e7a171f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044258.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044259.png b/superpower19classifier-zjx/template/negative/oo044259.png new file mode 100644 index 0000000..cfc5f0c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044259.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044260.png b/superpower19classifier-zjx/template/negative/oo044260.png new file mode 100644 index 0000000..8933540 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044260.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044261.png b/superpower19classifier-zjx/template/negative/oo044261.png new file mode 100644 index 0000000..0fc3729 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044261.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044262.png b/superpower19classifier-zjx/template/negative/oo044262.png new file mode 100644 index 0000000..7694f20 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044262.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044263.png b/superpower19classifier-zjx/template/negative/oo044263.png new file mode 100644 index 0000000..b8159be Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044263.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044264.png b/superpower19classifier-zjx/template/negative/oo044264.png new file mode 100644 index 0000000..c059dd9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044264.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044265.png b/superpower19classifier-zjx/template/negative/oo044265.png new file mode 100644 index 0000000..b9e1ad1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044265.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044269.png b/superpower19classifier-zjx/template/negative/oo044269.png new file mode 100644 index 0000000..6920d99 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044269.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044270.png b/superpower19classifier-zjx/template/negative/oo044270.png new file mode 100644 index 0000000..e2e21c0 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044270.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044271.png b/superpower19classifier-zjx/template/negative/oo044271.png new file mode 100644 index 0000000..d4d011a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044271.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044272.png b/superpower19classifier-zjx/template/negative/oo044272.png new file mode 100644 index 0000000..8353e2f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044272.png differ diff --git a/superpower19classifier-zjx/template/negative/oo044273.png b/superpower19classifier-zjx/template/negative/oo044273.png new file mode 100644 index 0000000..74b4602 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo044273.png differ diff --git a/superpower19classifier-zjx/template/negative/oo04595.png b/superpower19classifier-zjx/template/negative/oo04595.png new file mode 100644 index 0000000..d691e96 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo04595.png differ diff --git a/superpower19classifier-zjx/template/negative/oo04596.png b/superpower19classifier-zjx/template/negative/oo04596.png new file mode 100644 index 0000000..d158329 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/oo04596.png differ diff --git a/superpower19classifier-zjx/template/negative/small20150.png b/superpower19classifier-zjx/template/negative/small20150.png new file mode 100644 index 0000000..94afa5c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20150.png differ diff --git a/superpower19classifier-zjx/template/negative/small20175.png b/superpower19classifier-zjx/template/negative/small20175.png new file mode 100644 index 0000000..dfa6467 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20175.png differ diff --git a/superpower19classifier-zjx/template/negative/small20200.png b/superpower19classifier-zjx/template/negative/small20200.png new file mode 100644 index 0000000..1598ec7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20200.png differ diff --git a/superpower19classifier-zjx/template/negative/small20325.png b/superpower19classifier-zjx/template/negative/small20325.png new file mode 100644 index 0000000..d11274f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20325.png differ diff --git a/superpower19classifier-zjx/template/negative/small20375.png b/superpower19classifier-zjx/template/negative/small20375.png new file mode 100644 index 0000000..3c189bc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20375.png differ diff --git a/superpower19classifier-zjx/template/negative/small20400.png b/superpower19classifier-zjx/template/negative/small20400.png new file mode 100644 index 0000000..fca445b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20400.png differ diff --git a/superpower19classifier-zjx/template/negative/small20450.png b/superpower19classifier-zjx/template/negative/small20450.png new file mode 100644 index 0000000..a72f1a7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20450.png differ diff --git a/superpower19classifier-zjx/template/negative/small20725.png b/superpower19classifier-zjx/template/negative/small20725.png new file mode 100644 index 0000000..5c0e55e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20725.png differ diff --git a/superpower19classifier-zjx/template/negative/small20750.png b/superpower19classifier-zjx/template/negative/small20750.png new file mode 100644 index 0000000..5b9d8ae Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20750.png differ diff --git a/superpower19classifier-zjx/template/negative/small20825.png b/superpower19classifier-zjx/template/negative/small20825.png new file mode 100644 index 0000000..069ecd4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20825.png differ diff --git a/superpower19classifier-zjx/template/negative/small20850.png b/superpower19classifier-zjx/template/negative/small20850.png new file mode 100644 index 0000000..e06dbd9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20850.png differ diff --git a/superpower19classifier-zjx/template/negative/small20950.png b/superpower19classifier-zjx/template/negative/small20950.png new file mode 100644 index 0000000..ee70a91 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20950.png differ diff --git a/superpower19classifier-zjx/template/negative/small20975.png b/superpower19classifier-zjx/template/negative/small20975.png new file mode 100644 index 0000000..22d1a1c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small20975.png differ diff --git a/superpower19classifier-zjx/template/negative/small21050.png b/superpower19classifier-zjx/template/negative/small21050.png new file mode 100644 index 0000000..d9e073b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small21050.png differ diff --git a/superpower19classifier-zjx/template/negative/small21075.png b/superpower19classifier-zjx/template/negative/small21075.png new file mode 100644 index 0000000..869d50a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small21075.png differ diff --git a/superpower19classifier-zjx/template/negative/small21100.png b/superpower19classifier-zjx/template/negative/small21100.png new file mode 100644 index 0000000..605ef70 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small21100.png differ diff --git a/superpower19classifier-zjx/template/negative/small21125.png b/superpower19classifier-zjx/template/negative/small21125.png new file mode 100644 index 0000000..435d010 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small21125.png differ diff --git a/superpower19classifier-zjx/template/negative/small21150.png b/superpower19classifier-zjx/template/negative/small21150.png new file mode 100644 index 0000000..4da822b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small21150.png differ diff --git a/superpower19classifier-zjx/template/negative/small21200.png b/superpower19classifier-zjx/template/negative/small21200.png new file mode 100644 index 0000000..6366f39 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small21200.png differ diff --git a/superpower19classifier-zjx/template/negative/small21625.png b/superpower19classifier-zjx/template/negative/small21625.png new file mode 100644 index 0000000..ba26494 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small21625.png differ diff --git a/superpower19classifier-zjx/template/negative/small21650.png b/superpower19classifier-zjx/template/negative/small21650.png new file mode 100644 index 0000000..8a9b8ae Binary files /dev/null and b/superpower19classifier-zjx/template/negative/small21650.png differ diff --git a/superpower19classifier-zjx/template/negative/ss000.png b/superpower19classifier-zjx/template/negative/ss000.png new file mode 100644 index 0000000..a573dc9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss000.png differ diff --git a/superpower19classifier-zjx/template/negative/ss001.png b/superpower19classifier-zjx/template/negative/ss001.png new file mode 100644 index 0000000..15a8a8a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss001.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00103.png b/superpower19classifier-zjx/template/negative/ss00103.png new file mode 100644 index 0000000..b194a56 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00103.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00104.png b/superpower19classifier-zjx/template/negative/ss00104.png new file mode 100644 index 0000000..9fdbd6a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00104.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00110.png b/superpower19classifier-zjx/template/negative/ss00110.png new file mode 100644 index 0000000..b2ddf68 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00110.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00112.png b/superpower19classifier-zjx/template/negative/ss00112.png new file mode 100644 index 0000000..307266e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00112.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0012.png b/superpower19classifier-zjx/template/negative/ss0012.png new file mode 100644 index 0000000..70974f7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0012.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00129.png b/superpower19classifier-zjx/template/negative/ss00129.png new file mode 100644 index 0000000..3118168 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00129.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00133.png b/superpower19classifier-zjx/template/negative/ss00133.png new file mode 100644 index 0000000..425abcd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00133.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00136.png b/superpower19classifier-zjx/template/negative/ss00136.png new file mode 100644 index 0000000..bc7503d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00136.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00139.png b/superpower19classifier-zjx/template/negative/ss00139.png new file mode 100644 index 0000000..e8988ac Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00139.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0014.png b/superpower19classifier-zjx/template/negative/ss0014.png new file mode 100644 index 0000000..d57a66b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0014.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00141.png b/superpower19classifier-zjx/template/negative/ss00141.png new file mode 100644 index 0000000..1f36678 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00141.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00142.png b/superpower19classifier-zjx/template/negative/ss00142.png new file mode 100644 index 0000000..78814b9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00142.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00143.png b/superpower19classifier-zjx/template/negative/ss00143.png new file mode 100644 index 0000000..8520374 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00143.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00144.png b/superpower19classifier-zjx/template/negative/ss00144.png new file mode 100644 index 0000000..ce17ee8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00144.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00160.png b/superpower19classifier-zjx/template/negative/ss00160.png new file mode 100644 index 0000000..6bc0ef2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00160.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00164.png b/superpower19classifier-zjx/template/negative/ss00164.png new file mode 100644 index 0000000..0d43c1b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00164.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00165.png b/superpower19classifier-zjx/template/negative/ss00165.png new file mode 100644 index 0000000..69a63d4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00165.png differ diff --git a/superpower19classifier-zjx/template/negative/ss001671.png b/superpower19classifier-zjx/template/negative/ss001671.png new file mode 100644 index 0000000..7f5a1b3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss001671.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00168.png b/superpower19classifier-zjx/template/negative/ss00168.png new file mode 100644 index 0000000..ffabe57 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00168.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00174.png b/superpower19classifier-zjx/template/negative/ss00174.png new file mode 100644 index 0000000..ee58644 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00174.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00176.png b/superpower19classifier-zjx/template/negative/ss00176.png new file mode 100644 index 0000000..37a8873 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00176.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00184.png b/superpower19classifier-zjx/template/negative/ss00184.png new file mode 100644 index 0000000..629e748 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00184.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00189.png b/superpower19classifier-zjx/template/negative/ss00189.png new file mode 100644 index 0000000..9687a94 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00189.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00198.png b/superpower19classifier-zjx/template/negative/ss00198.png new file mode 100644 index 0000000..a1d0407 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00198.png differ diff --git a/superpower19classifier-zjx/template/negative/ss002105.png b/superpower19classifier-zjx/template/negative/ss002105.png new file mode 100644 index 0000000..41f56c3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss002105.png differ diff --git a/superpower19classifier-zjx/template/negative/ss002116.png b/superpower19classifier-zjx/template/negative/ss002116.png new file mode 100644 index 0000000..bde2fa5 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss002116.png differ diff --git a/superpower19classifier-zjx/template/negative/ss002130.png b/superpower19classifier-zjx/template/negative/ss002130.png new file mode 100644 index 0000000..b17a962 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss002130.png differ diff --git a/superpower19classifier-zjx/template/negative/ss002154.png b/superpower19classifier-zjx/template/negative/ss002154.png new file mode 100644 index 0000000..589a13b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss002154.png differ diff --git a/superpower19classifier-zjx/template/negative/ss002156.png b/superpower19classifier-zjx/template/negative/ss002156.png new file mode 100644 index 0000000..86305b3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss002156.png differ diff --git a/superpower19classifier-zjx/template/negative/ss002392.png b/superpower19classifier-zjx/template/negative/ss002392.png new file mode 100644 index 0000000..4eb4963 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss002392.png differ diff --git a/superpower19classifier-zjx/template/negative/ss002648.png b/superpower19classifier-zjx/template/negative/ss002648.png new file mode 100644 index 0000000..e09702b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss002648.png differ diff --git a/superpower19classifier-zjx/template/negative/ss002662.png b/superpower19classifier-zjx/template/negative/ss002662.png new file mode 100644 index 0000000..1c95a17 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss002662.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0027.png b/superpower19classifier-zjx/template/negative/ss0027.png new file mode 100644 index 0000000..4931293 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0027.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0030.png b/superpower19classifier-zjx/template/negative/ss0030.png new file mode 100644 index 0000000..03c5c62 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0030.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00301.png b/superpower19classifier-zjx/template/negative/ss00301.png new file mode 100644 index 0000000..165ea93 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00301.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00302.png b/superpower19classifier-zjx/template/negative/ss00302.png new file mode 100644 index 0000000..6e784fd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00302.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00307.png b/superpower19classifier-zjx/template/negative/ss00307.png new file mode 100644 index 0000000..58420ce Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00307.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0032.png b/superpower19classifier-zjx/template/negative/ss0032.png new file mode 100644 index 0000000..2311606 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0032.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003470.png b/superpower19classifier-zjx/template/negative/ss003470.png new file mode 100644 index 0000000..fb1ab81 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003470.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003491.png b/superpower19classifier-zjx/template/negative/ss003491.png new file mode 100644 index 0000000..928c6ce Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003491.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003586.png b/superpower19classifier-zjx/template/negative/ss003586.png new file mode 100644 index 0000000..3935162 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003586.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003603.png b/superpower19classifier-zjx/template/negative/ss003603.png new file mode 100644 index 0000000..dd34028 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003603.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003649.png b/superpower19classifier-zjx/template/negative/ss003649.png new file mode 100644 index 0000000..5e6b2b4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003649.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003659.png b/superpower19classifier-zjx/template/negative/ss003659.png new file mode 100644 index 0000000..81c508f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003659.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0038.png b/superpower19classifier-zjx/template/negative/ss0038.png new file mode 100644 index 0000000..0da159f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0038.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003833.png b/superpower19classifier-zjx/template/negative/ss003833.png new file mode 100644 index 0000000..af7d427 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003833.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003838.png b/superpower19classifier-zjx/template/negative/ss003838.png new file mode 100644 index 0000000..6659003 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003838.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003848.png b/superpower19classifier-zjx/template/negative/ss003848.png new file mode 100644 index 0000000..fc52588 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003848.png differ diff --git a/superpower19classifier-zjx/template/negative/ss003860.png b/superpower19classifier-zjx/template/negative/ss003860.png new file mode 100644 index 0000000..f189dec Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss003860.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0041.png b/superpower19classifier-zjx/template/negative/ss0041.png new file mode 100644 index 0000000..331e2dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0041.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00419.png b/superpower19classifier-zjx/template/negative/ss00419.png new file mode 100644 index 0000000..8458c99 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00419.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00420.png b/superpower19classifier-zjx/template/negative/ss00420.png new file mode 100644 index 0000000..c8c150e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00420.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00425.png b/superpower19classifier-zjx/template/negative/ss00425.png new file mode 100644 index 0000000..073ae02 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00425.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00436.png b/superpower19classifier-zjx/template/negative/ss00436.png new file mode 100644 index 0000000..86503a1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00436.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00439.png b/superpower19classifier-zjx/template/negative/ss00439.png new file mode 100644 index 0000000..ebb394b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00439.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00450.png b/superpower19classifier-zjx/template/negative/ss00450.png new file mode 100644 index 0000000..a16ad6c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00450.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00454.png b/superpower19classifier-zjx/template/negative/ss00454.png new file mode 100644 index 0000000..7460028 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00454.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0046.png b/superpower19classifier-zjx/template/negative/ss0046.png new file mode 100644 index 0000000..2b912be Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0046.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00460.png b/superpower19classifier-zjx/template/negative/ss00460.png new file mode 100644 index 0000000..6cd2889 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00460.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00463.png b/superpower19classifier-zjx/template/negative/ss00463.png new file mode 100644 index 0000000..02caeb4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00463.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00468.png b/superpower19classifier-zjx/template/negative/ss00468.png new file mode 100644 index 0000000..cbe5fe8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00468.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00491.png b/superpower19classifier-zjx/template/negative/ss00491.png new file mode 100644 index 0000000..3bc3818 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00491.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00499.png b/superpower19classifier-zjx/template/negative/ss00499.png new file mode 100644 index 0000000..b6ab6d8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00499.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0050.png b/superpower19classifier-zjx/template/negative/ss0050.png new file mode 100644 index 0000000..930df6d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0050.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00500.png b/superpower19classifier-zjx/template/negative/ss00500.png new file mode 100644 index 0000000..017d658 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00500.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0052.png b/superpower19classifier-zjx/template/negative/ss0052.png new file mode 100644 index 0000000..37036b2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0052.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00525.png b/superpower19classifier-zjx/template/negative/ss00525.png new file mode 100644 index 0000000..d411829 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00525.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00528.png b/superpower19classifier-zjx/template/negative/ss00528.png new file mode 100644 index 0000000..cbce8d3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00528.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00534.png b/superpower19classifier-zjx/template/negative/ss00534.png new file mode 100644 index 0000000..9bbae39 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00534.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00541.png b/superpower19classifier-zjx/template/negative/ss00541.png new file mode 100644 index 0000000..cb751b7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00541.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00547.png b/superpower19classifier-zjx/template/negative/ss00547.png new file mode 100644 index 0000000..030415b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00547.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00548.png b/superpower19classifier-zjx/template/negative/ss00548.png new file mode 100644 index 0000000..a5a9da1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00548.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00573.png b/superpower19classifier-zjx/template/negative/ss00573.png new file mode 100644 index 0000000..9cb7b02 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00573.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00584.png b/superpower19classifier-zjx/template/negative/ss00584.png new file mode 100644 index 0000000..d255c5f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00584.png differ diff --git a/superpower19classifier-zjx/template/negative/ss006.png b/superpower19classifier-zjx/template/negative/ss006.png new file mode 100644 index 0000000..646f5bb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss006.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0061.png b/superpower19classifier-zjx/template/negative/ss0061.png new file mode 100644 index 0000000..7b01bf4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0061.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00632.png b/superpower19classifier-zjx/template/negative/ss00632.png new file mode 100644 index 0000000..10031fa Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00632.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0064.png b/superpower19classifier-zjx/template/negative/ss0064.png new file mode 100644 index 0000000..1ee1922 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0064.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00654.png b/superpower19classifier-zjx/template/negative/ss00654.png new file mode 100644 index 0000000..1b3ad2d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00654.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00658.png b/superpower19classifier-zjx/template/negative/ss00658.png new file mode 100644 index 0000000..b91bdca Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00658.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0066.png b/superpower19classifier-zjx/template/negative/ss0066.png new file mode 100644 index 0000000..f69131b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0066.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00665.png b/superpower19classifier-zjx/template/negative/ss00665.png new file mode 100644 index 0000000..0ac6528 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00665.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0069.png b/superpower19classifier-zjx/template/negative/ss0069.png new file mode 100644 index 0000000..6772f9d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0069.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00692.png b/superpower19classifier-zjx/template/negative/ss00692.png new file mode 100644 index 0000000..55bc3af Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00692.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0072.png b/superpower19classifier-zjx/template/negative/ss0072.png new file mode 100644 index 0000000..f14c078 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0072.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00736.png b/superpower19classifier-zjx/template/negative/ss00736.png new file mode 100644 index 0000000..3098bb7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00736.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00740.png b/superpower19classifier-zjx/template/negative/ss00740.png new file mode 100644 index 0000000..cd38b68 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00740.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00751.png b/superpower19classifier-zjx/template/negative/ss00751.png new file mode 100644 index 0000000..60128ee Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00751.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0076.png b/superpower19classifier-zjx/template/negative/ss0076.png new file mode 100644 index 0000000..cc6a84b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0076.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0078.png b/superpower19classifier-zjx/template/negative/ss0078.png new file mode 100644 index 0000000..6fef11c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0078.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0081.png b/superpower19classifier-zjx/template/negative/ss0081.png new file mode 100644 index 0000000..afcdea9 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0081.png differ diff --git a/superpower19classifier-zjx/template/negative/ss009.png b/superpower19classifier-zjx/template/negative/ss009.png new file mode 100644 index 0000000..8a009f2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss009.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0095.png b/superpower19classifier-zjx/template/negative/ss0095.png new file mode 100644 index 0000000..e22bce1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0095.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0096.png b/superpower19classifier-zjx/template/negative/ss0096.png new file mode 100644 index 0000000..2c0f4a1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0096.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0098.png b/superpower19classifier-zjx/template/negative/ss0098.png new file mode 100644 index 0000000..251d1c8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0098.png differ diff --git a/superpower19classifier-zjx/template/negative/ss00987.png b/superpower19classifier-zjx/template/negative/ss00987.png new file mode 100644 index 0000000..7e73bc6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss00987.png differ diff --git a/superpower19classifier-zjx/template/negative/ss0116_red.png b/superpower19classifier-zjx/template/negative/ss0116_red.png new file mode 100644 index 0000000..adb3d9d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/ss0116_red.png differ diff --git a/superpower19classifier-zjx/template/negative/w1.png b/superpower19classifier-zjx/template/negative/w1.png new file mode 100644 index 0000000..235e8bc Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w1.png differ diff --git a/superpower19classifier-zjx/template/negative/w10.png b/superpower19classifier-zjx/template/negative/w10.png new file mode 100644 index 0000000..1f36678 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w10.png differ diff --git a/superpower19classifier-zjx/template/negative/w11.png b/superpower19classifier-zjx/template/negative/w11.png new file mode 100644 index 0000000..dbf34df Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w11.png differ diff --git a/superpower19classifier-zjx/template/negative/w12.png b/superpower19classifier-zjx/template/negative/w12.png new file mode 100644 index 0000000..f79488f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w12.png differ diff --git a/superpower19classifier-zjx/template/negative/w13.png b/superpower19classifier-zjx/template/negative/w13.png new file mode 100644 index 0000000..ababb77 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w13.png differ diff --git a/superpower19classifier-zjx/template/negative/w14.png b/superpower19classifier-zjx/template/negative/w14.png new file mode 100644 index 0000000..03c5c62 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w14.png differ diff --git a/superpower19classifier-zjx/template/negative/w15.png b/superpower19classifier-zjx/template/negative/w15.png new file mode 100644 index 0000000..c01a2b2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w15.png differ diff --git a/superpower19classifier-zjx/template/negative/w16.png b/superpower19classifier-zjx/template/negative/w16.png new file mode 100644 index 0000000..2311606 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w16.png differ diff --git a/superpower19classifier-zjx/template/negative/w2.png b/superpower19classifier-zjx/template/negative/w2.png new file mode 100644 index 0000000..0802fca Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w2.png differ diff --git a/superpower19classifier-zjx/template/negative/w21.png b/superpower19classifier-zjx/template/negative/w21.png new file mode 100644 index 0000000..8a009f2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w21.png differ diff --git a/superpower19classifier-zjx/template/negative/w22.png b/superpower19classifier-zjx/template/negative/w22.png new file mode 100644 index 0000000..8520374 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w22.png differ diff --git a/superpower19classifier-zjx/template/negative/w23.png b/superpower19classifier-zjx/template/negative/w23.png new file mode 100644 index 0000000..77939e2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w23.png differ diff --git a/superpower19classifier-zjx/template/negative/w24.png b/superpower19classifier-zjx/template/negative/w24.png new file mode 100644 index 0000000..0223f34 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w24.png differ diff --git a/superpower19classifier-zjx/template/negative/w25.png b/superpower19classifier-zjx/template/negative/w25.png new file mode 100644 index 0000000..34ef6a6 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w25.png differ diff --git a/superpower19classifier-zjx/template/negative/w26.png b/superpower19classifier-zjx/template/negative/w26.png new file mode 100644 index 0000000..331e2dd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w26.png differ diff --git a/superpower19classifier-zjx/template/negative/w3.png b/superpower19classifier-zjx/template/negative/w3.png new file mode 100644 index 0000000..4ec2f2b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w3.png differ diff --git a/superpower19classifier-zjx/template/negative/w32.png b/superpower19classifier-zjx/template/negative/w32.png new file mode 100644 index 0000000..250795a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w32.png differ diff --git a/superpower19classifier-zjx/template/negative/w33.png b/superpower19classifier-zjx/template/negative/w33.png new file mode 100644 index 0000000..e22bce1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w33.png differ diff --git a/superpower19classifier-zjx/template/negative/w34.png b/superpower19classifier-zjx/template/negative/w34.png new file mode 100644 index 0000000..99021ce Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w34.png differ diff --git a/superpower19classifier-zjx/template/negative/w35.png b/superpower19classifier-zjx/template/negative/w35.png new file mode 100644 index 0000000..21135e8 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w35.png differ diff --git a/superpower19classifier-zjx/template/negative/w36.png b/superpower19classifier-zjx/template/negative/w36.png new file mode 100644 index 0000000..37036b2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w36.png differ diff --git a/superpower19classifier-zjx/template/negative/w37.png b/superpower19classifier-zjx/template/negative/w37.png new file mode 100644 index 0000000..2b912be Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w37.png differ diff --git a/superpower19classifier-zjx/template/negative/w4.png b/superpower19classifier-zjx/template/negative/w4.png new file mode 100644 index 0000000..7141836 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w4.png differ diff --git a/superpower19classifier-zjx/template/negative/w43.png b/superpower19classifier-zjx/template/negative/w43.png new file mode 100644 index 0000000..e8988ac Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w43.png differ diff --git a/superpower19classifier-zjx/template/negative/w44.png b/superpower19classifier-zjx/template/negative/w44.png new file mode 100644 index 0000000..7b01bf4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w44.png differ diff --git a/superpower19classifier-zjx/template/negative/w45.png b/superpower19classifier-zjx/template/negative/w45.png new file mode 100644 index 0000000..4bc2462 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w45.png differ diff --git a/superpower19classifier-zjx/template/negative/w46.png b/superpower19classifier-zjx/template/negative/w46.png new file mode 100644 index 0000000..6cd2889 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w46.png differ diff --git a/superpower19classifier-zjx/template/negative/w47.png b/superpower19classifier-zjx/template/negative/w47.png new file mode 100644 index 0000000..b2ddf68 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w47.png differ diff --git a/superpower19classifier-zjx/template/negative/w48.png b/superpower19classifier-zjx/template/negative/w48.png new file mode 100644 index 0000000..9fdbd6a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w48.png differ diff --git a/superpower19classifier-zjx/template/negative/w5.png b/superpower19classifier-zjx/template/negative/w5.png new file mode 100644 index 0000000..c8c150e Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w5.png differ diff --git a/superpower19classifier-zjx/template/negative/w6.png b/superpower19classifier-zjx/template/negative/w6.png new file mode 100644 index 0000000..ae8d1d3 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/w6.png differ diff --git a/superpower19classifier-zjx/template/negative/z39725.png b/superpower19classifier-zjx/template/negative/z39725.png new file mode 100644 index 0000000..f642d3f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39725.png differ diff --git a/superpower19classifier-zjx/template/negative/z39750.png b/superpower19classifier-zjx/template/negative/z39750.png new file mode 100644 index 0000000..b628e0f Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39750.png differ diff --git a/superpower19classifier-zjx/template/negative/z39775.png b/superpower19classifier-zjx/template/negative/z39775.png new file mode 100644 index 0000000..d40df7d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39775.png differ diff --git a/superpower19classifier-zjx/template/negative/z39800.png b/superpower19classifier-zjx/template/negative/z39800.png new file mode 100644 index 0000000..878a7b1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39800.png differ diff --git a/superpower19classifier-zjx/template/negative/z39825.png b/superpower19classifier-zjx/template/negative/z39825.png new file mode 100644 index 0000000..41b2015 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39825.png differ diff --git a/superpower19classifier-zjx/template/negative/z39850.png b/superpower19classifier-zjx/template/negative/z39850.png new file mode 100644 index 0000000..e9ebedd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39850.png differ diff --git a/superpower19classifier-zjx/template/negative/z39875.png b/superpower19classifier-zjx/template/negative/z39875.png new file mode 100644 index 0000000..12fce72 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39875.png differ diff --git a/superpower19classifier-zjx/template/negative/z39900.png b/superpower19classifier-zjx/template/negative/z39900.png new file mode 100644 index 0000000..8e7ebda Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39900.png differ diff --git a/superpower19classifier-zjx/template/negative/z39925.png b/superpower19classifier-zjx/template/negative/z39925.png new file mode 100644 index 0000000..05b4bfd Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z39925.png differ diff --git a/superpower19classifier-zjx/template/negative/z46525.png b/superpower19classifier-zjx/template/negative/z46525.png new file mode 100644 index 0000000..5e35180 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46525.png differ diff --git a/superpower19classifier-zjx/template/negative/z46550.png b/superpower19classifier-zjx/template/negative/z46550.png new file mode 100644 index 0000000..48bf79b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46550.png differ diff --git a/superpower19classifier-zjx/template/negative/z46575.png b/superpower19classifier-zjx/template/negative/z46575.png new file mode 100644 index 0000000..d97ca2b Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46575.png differ diff --git a/superpower19classifier-zjx/template/negative/z46600.png b/superpower19classifier-zjx/template/negative/z46600.png new file mode 100644 index 0000000..fcc1c62 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46600.png differ diff --git a/superpower19classifier-zjx/template/negative/z46625.png b/superpower19classifier-zjx/template/negative/z46625.png new file mode 100644 index 0000000..d2ffac2 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46625.png differ diff --git a/superpower19classifier-zjx/template/negative/z46650.png b/superpower19classifier-zjx/template/negative/z46650.png new file mode 100644 index 0000000..694eb54 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46650.png differ diff --git a/superpower19classifier-zjx/template/negative/z46675.png b/superpower19classifier-zjx/template/negative/z46675.png new file mode 100644 index 0000000..e80e3f1 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46675.png differ diff --git a/superpower19classifier-zjx/template/negative/z46700.png b/superpower19classifier-zjx/template/negative/z46700.png new file mode 100644 index 0000000..ff8eb5c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46700.png differ diff --git a/superpower19classifier-zjx/template/negative/z46725.png b/superpower19classifier-zjx/template/negative/z46725.png new file mode 100644 index 0000000..962162d Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46725.png differ diff --git a/superpower19classifier-zjx/template/negative/z46750.png b/superpower19classifier-zjx/template/negative/z46750.png new file mode 100644 index 0000000..a835ad4 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46750.png differ diff --git a/superpower19classifier-zjx/template/negative/z46775.png b/superpower19classifier-zjx/template/negative/z46775.png new file mode 100644 index 0000000..063dd5a Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46775.png differ diff --git a/superpower19classifier-zjx/template/negative/z46800.png b/superpower19classifier-zjx/template/negative/z46800.png new file mode 100644 index 0000000..3b41e77 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46800.png differ diff --git a/superpower19classifier-zjx/template/negative/z46825.png b/superpower19classifier-zjx/template/negative/z46825.png new file mode 100644 index 0000000..2136ea7 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46825.png differ diff --git a/superpower19classifier-zjx/template/negative/z46850.png b/superpower19classifier-zjx/template/negative/z46850.png new file mode 100644 index 0000000..f11f759 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46850.png differ diff --git a/superpower19classifier-zjx/template/negative/z46875.png b/superpower19classifier-zjx/template/negative/z46875.png new file mode 100644 index 0000000..171caff Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46875.png differ diff --git a/superpower19classifier-zjx/template/negative/z46900.png b/superpower19classifier-zjx/template/negative/z46900.png new file mode 100644 index 0000000..803a2ce Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46900.png differ diff --git a/superpower19classifier-zjx/template/negative/z46925.png b/superpower19classifier-zjx/template/negative/z46925.png new file mode 100644 index 0000000..3eb51eb Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46925.png differ diff --git a/superpower19classifier-zjx/template/negative/z46950.png b/superpower19classifier-zjx/template/negative/z46950.png new file mode 100644 index 0000000..c366d0c Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46950.png differ diff --git a/superpower19classifier-zjx/template/negative/z46975.png b/superpower19classifier-zjx/template/negative/z46975.png new file mode 100644 index 0000000..f16a565 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z46975.png differ diff --git a/superpower19classifier-zjx/template/negative/z47000.png b/superpower19classifier-zjx/template/negative/z47000.png new file mode 100644 index 0000000..54d7d83 Binary files /dev/null and b/superpower19classifier-zjx/template/negative/z47000.png differ diff --git a/superpower19classifier-zjx/template/positive/.DS_Store b/superpower19classifier-zjx/template/positive/.DS_Store new file mode 100644 index 0000000..dfe1944 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/.DS_Store differ diff --git a/superpower19classifier-zjx/template/positive/1-0.png b/superpower19classifier-zjx/template/positive/1-0.png new file mode 100644 index 0000000..2ace72a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-0.png differ diff --git a/superpower19classifier-zjx/template/positive/1-1.png b/superpower19classifier-zjx/template/positive/1-1.png new file mode 100644 index 0000000..7dcc86e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-1.png differ diff --git a/superpower19classifier-zjx/template/positive/1-10.png b/superpower19classifier-zjx/template/positive/1-10.png new file mode 100644 index 0000000..f17b714 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-10.png differ diff --git a/superpower19classifier-zjx/template/positive/1-100.png b/superpower19classifier-zjx/template/positive/1-100.png new file mode 100644 index 0000000..4860177 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-100.png differ diff --git a/superpower19classifier-zjx/template/positive/1-101.png b/superpower19classifier-zjx/template/positive/1-101.png new file mode 100644 index 0000000..42ef256 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-101.png differ diff --git a/superpower19classifier-zjx/template/positive/1-102.png b/superpower19classifier-zjx/template/positive/1-102.png new file mode 100644 index 0000000..b47df7f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-102.png differ diff --git a/superpower19classifier-zjx/template/positive/1-103.png b/superpower19classifier-zjx/template/positive/1-103.png new file mode 100644 index 0000000..2332e8c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-103.png differ diff --git a/superpower19classifier-zjx/template/positive/1-104.png b/superpower19classifier-zjx/template/positive/1-104.png new file mode 100644 index 0000000..3ba376b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-104.png differ diff --git a/superpower19classifier-zjx/template/positive/1-105.png b/superpower19classifier-zjx/template/positive/1-105.png new file mode 100644 index 0000000..fec035a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-105.png differ diff --git a/superpower19classifier-zjx/template/positive/1-106.png b/superpower19classifier-zjx/template/positive/1-106.png new file mode 100644 index 0000000..1945472 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-106.png differ diff --git a/superpower19classifier-zjx/template/positive/1-107.png b/superpower19classifier-zjx/template/positive/1-107.png new file mode 100644 index 0000000..5569639 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-107.png differ diff --git a/superpower19classifier-zjx/template/positive/1-108.png b/superpower19classifier-zjx/template/positive/1-108.png new file mode 100644 index 0000000..5f4cacf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-108.png differ diff --git a/superpower19classifier-zjx/template/positive/1-109.png b/superpower19classifier-zjx/template/positive/1-109.png new file mode 100644 index 0000000..ae5886e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-109.png differ diff --git a/superpower19classifier-zjx/template/positive/1-11.png b/superpower19classifier-zjx/template/positive/1-11.png new file mode 100644 index 0000000..6f2cba1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-11.png differ diff --git a/superpower19classifier-zjx/template/positive/1-110.png b/superpower19classifier-zjx/template/positive/1-110.png new file mode 100644 index 0000000..b432e0c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-110.png differ diff --git a/superpower19classifier-zjx/template/positive/1-111.png b/superpower19classifier-zjx/template/positive/1-111.png new file mode 100644 index 0000000..a94240b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-111.png differ diff --git a/superpower19classifier-zjx/template/positive/1-112.png b/superpower19classifier-zjx/template/positive/1-112.png new file mode 100644 index 0000000..594d82a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-112.png differ diff --git a/superpower19classifier-zjx/template/positive/1-113.png b/superpower19classifier-zjx/template/positive/1-113.png new file mode 100644 index 0000000..c7605cf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-113.png differ diff --git a/superpower19classifier-zjx/template/positive/1-114.png b/superpower19classifier-zjx/template/positive/1-114.png new file mode 100644 index 0000000..e20037c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-114.png differ diff --git a/superpower19classifier-zjx/template/positive/1-115.png b/superpower19classifier-zjx/template/positive/1-115.png new file mode 100644 index 0000000..fad02cd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-115.png differ diff --git a/superpower19classifier-zjx/template/positive/1-116.png b/superpower19classifier-zjx/template/positive/1-116.png new file mode 100644 index 0000000..0af6be7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-116.png differ diff --git a/superpower19classifier-zjx/template/positive/1-117.png b/superpower19classifier-zjx/template/positive/1-117.png new file mode 100644 index 0000000..2a5fc25 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-117.png differ diff --git a/superpower19classifier-zjx/template/positive/1-118.png b/superpower19classifier-zjx/template/positive/1-118.png new file mode 100644 index 0000000..dff9747 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-118.png differ diff --git a/superpower19classifier-zjx/template/positive/1-119.png b/superpower19classifier-zjx/template/positive/1-119.png new file mode 100644 index 0000000..50acd54 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-119.png differ diff --git a/superpower19classifier-zjx/template/positive/1-12.png b/superpower19classifier-zjx/template/positive/1-12.png new file mode 100644 index 0000000..2d7fdba Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-12.png differ diff --git a/superpower19classifier-zjx/template/positive/1-120.png b/superpower19classifier-zjx/template/positive/1-120.png new file mode 100644 index 0000000..a362da2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-120.png differ diff --git a/superpower19classifier-zjx/template/positive/1-121.png b/superpower19classifier-zjx/template/positive/1-121.png new file mode 100644 index 0000000..6447371 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-121.png differ diff --git a/superpower19classifier-zjx/template/positive/1-122.png b/superpower19classifier-zjx/template/positive/1-122.png new file mode 100644 index 0000000..aa246c1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-122.png differ diff --git a/superpower19classifier-zjx/template/positive/1-123.png b/superpower19classifier-zjx/template/positive/1-123.png new file mode 100644 index 0000000..32d818c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-123.png differ diff --git a/superpower19classifier-zjx/template/positive/1-124.png b/superpower19classifier-zjx/template/positive/1-124.png new file mode 100644 index 0000000..193e688 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-124.png differ diff --git a/superpower19classifier-zjx/template/positive/1-125.png b/superpower19classifier-zjx/template/positive/1-125.png new file mode 100644 index 0000000..53b4940 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-125.png differ diff --git a/superpower19classifier-zjx/template/positive/1-126.png b/superpower19classifier-zjx/template/positive/1-126.png new file mode 100644 index 0000000..a4d79e5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-126.png differ diff --git a/superpower19classifier-zjx/template/positive/1-127.png b/superpower19classifier-zjx/template/positive/1-127.png new file mode 100644 index 0000000..b9edd03 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-127.png differ diff --git a/superpower19classifier-zjx/template/positive/1-128.png b/superpower19classifier-zjx/template/positive/1-128.png new file mode 100644 index 0000000..5f43db1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-128.png differ diff --git a/superpower19classifier-zjx/template/positive/1-129.png b/superpower19classifier-zjx/template/positive/1-129.png new file mode 100644 index 0000000..a88e385 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-129.png differ diff --git a/superpower19classifier-zjx/template/positive/1-13.png b/superpower19classifier-zjx/template/positive/1-13.png new file mode 100644 index 0000000..76e17cf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-13.png differ diff --git a/superpower19classifier-zjx/template/positive/1-130.png b/superpower19classifier-zjx/template/positive/1-130.png new file mode 100644 index 0000000..68aaff3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-130.png differ diff --git a/superpower19classifier-zjx/template/positive/1-131.png b/superpower19classifier-zjx/template/positive/1-131.png new file mode 100644 index 0000000..f2decbd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-131.png differ diff --git a/superpower19classifier-zjx/template/positive/1-132.png b/superpower19classifier-zjx/template/positive/1-132.png new file mode 100644 index 0000000..00a21e3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-132.png differ diff --git a/superpower19classifier-zjx/template/positive/1-133.png b/superpower19classifier-zjx/template/positive/1-133.png new file mode 100644 index 0000000..636e907 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-133.png differ diff --git a/superpower19classifier-zjx/template/positive/1-134.png b/superpower19classifier-zjx/template/positive/1-134.png new file mode 100644 index 0000000..be14978 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-134.png differ diff --git a/superpower19classifier-zjx/template/positive/1-135.png b/superpower19classifier-zjx/template/positive/1-135.png new file mode 100644 index 0000000..44edd7a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-135.png differ diff --git a/superpower19classifier-zjx/template/positive/1-136.png b/superpower19classifier-zjx/template/positive/1-136.png new file mode 100644 index 0000000..ac71f7d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-136.png differ diff --git a/superpower19classifier-zjx/template/positive/1-137.png b/superpower19classifier-zjx/template/positive/1-137.png new file mode 100644 index 0000000..3006684 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-137.png differ diff --git a/superpower19classifier-zjx/template/positive/1-138.png b/superpower19classifier-zjx/template/positive/1-138.png new file mode 100644 index 0000000..7d4a760 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-138.png differ diff --git a/superpower19classifier-zjx/template/positive/1-139.png b/superpower19classifier-zjx/template/positive/1-139.png new file mode 100644 index 0000000..abfb412 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-139.png differ diff --git a/superpower19classifier-zjx/template/positive/1-14.png b/superpower19classifier-zjx/template/positive/1-14.png new file mode 100644 index 0000000..164371c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-14.png differ diff --git a/superpower19classifier-zjx/template/positive/1-140.png b/superpower19classifier-zjx/template/positive/1-140.png new file mode 100644 index 0000000..9cc7e99 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-140.png differ diff --git a/superpower19classifier-zjx/template/positive/1-141.png b/superpower19classifier-zjx/template/positive/1-141.png new file mode 100644 index 0000000..77b1ce3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-141.png differ diff --git a/superpower19classifier-zjx/template/positive/1-142.png b/superpower19classifier-zjx/template/positive/1-142.png new file mode 100644 index 0000000..f383d87 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-142.png differ diff --git a/superpower19classifier-zjx/template/positive/1-143.png b/superpower19classifier-zjx/template/positive/1-143.png new file mode 100644 index 0000000..6f9f078 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-143.png differ diff --git a/superpower19classifier-zjx/template/positive/1-144.png b/superpower19classifier-zjx/template/positive/1-144.png new file mode 100644 index 0000000..340a4b5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-144.png differ diff --git a/superpower19classifier-zjx/template/positive/1-145.png b/superpower19classifier-zjx/template/positive/1-145.png new file mode 100644 index 0000000..28431e1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-145.png differ diff --git a/superpower19classifier-zjx/template/positive/1-146.png b/superpower19classifier-zjx/template/positive/1-146.png new file mode 100644 index 0000000..45f6b05 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-146.png differ diff --git a/superpower19classifier-zjx/template/positive/1-147.png b/superpower19classifier-zjx/template/positive/1-147.png new file mode 100644 index 0000000..2871fee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-147.png differ diff --git a/superpower19classifier-zjx/template/positive/1-148.png b/superpower19classifier-zjx/template/positive/1-148.png new file mode 100644 index 0000000..9b2c356 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-148.png differ diff --git a/superpower19classifier-zjx/template/positive/1-149.png b/superpower19classifier-zjx/template/positive/1-149.png new file mode 100644 index 0000000..48bdff7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-149.png differ diff --git a/superpower19classifier-zjx/template/positive/1-15.png b/superpower19classifier-zjx/template/positive/1-15.png new file mode 100644 index 0000000..b1e32ee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-15.png differ diff --git a/superpower19classifier-zjx/template/positive/1-150.png b/superpower19classifier-zjx/template/positive/1-150.png new file mode 100644 index 0000000..ca7b068 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-150.png differ diff --git a/superpower19classifier-zjx/template/positive/1-151.png b/superpower19classifier-zjx/template/positive/1-151.png new file mode 100644 index 0000000..b048442 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-151.png differ diff --git a/superpower19classifier-zjx/template/positive/1-152.png b/superpower19classifier-zjx/template/positive/1-152.png new file mode 100644 index 0000000..54efdd4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-152.png differ diff --git a/superpower19classifier-zjx/template/positive/1-153.png b/superpower19classifier-zjx/template/positive/1-153.png new file mode 100644 index 0000000..6838484 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-153.png differ diff --git a/superpower19classifier-zjx/template/positive/1-154.png b/superpower19classifier-zjx/template/positive/1-154.png new file mode 100644 index 0000000..650797a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-154.png differ diff --git a/superpower19classifier-zjx/template/positive/1-155.png b/superpower19classifier-zjx/template/positive/1-155.png new file mode 100644 index 0000000..512cbad Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-155.png differ diff --git a/superpower19classifier-zjx/template/positive/1-156.png b/superpower19classifier-zjx/template/positive/1-156.png new file mode 100644 index 0000000..25ca832 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-156.png differ diff --git a/superpower19classifier-zjx/template/positive/1-157.png b/superpower19classifier-zjx/template/positive/1-157.png new file mode 100644 index 0000000..009f801 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-157.png differ diff --git a/superpower19classifier-zjx/template/positive/1-158.png b/superpower19classifier-zjx/template/positive/1-158.png new file mode 100644 index 0000000..4196de4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-158.png differ diff --git a/superpower19classifier-zjx/template/positive/1-159.png b/superpower19classifier-zjx/template/positive/1-159.png new file mode 100644 index 0000000..ecd1bdd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-159.png differ diff --git a/superpower19classifier-zjx/template/positive/1-16.png b/superpower19classifier-zjx/template/positive/1-16.png new file mode 100644 index 0000000..2de01dc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-16.png differ diff --git a/superpower19classifier-zjx/template/positive/1-160.png b/superpower19classifier-zjx/template/positive/1-160.png new file mode 100644 index 0000000..9ff5dff Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-160.png differ diff --git a/superpower19classifier-zjx/template/positive/1-161.png b/superpower19classifier-zjx/template/positive/1-161.png new file mode 100644 index 0000000..1e63238 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-161.png differ diff --git a/superpower19classifier-zjx/template/positive/1-162.png b/superpower19classifier-zjx/template/positive/1-162.png new file mode 100644 index 0000000..37825e8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-162.png differ diff --git a/superpower19classifier-zjx/template/positive/1-163.png b/superpower19classifier-zjx/template/positive/1-163.png new file mode 100644 index 0000000..c06981e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-163.png differ diff --git a/superpower19classifier-zjx/template/positive/1-164.png b/superpower19classifier-zjx/template/positive/1-164.png new file mode 100644 index 0000000..83d8ad7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-164.png differ diff --git a/superpower19classifier-zjx/template/positive/1-165.png b/superpower19classifier-zjx/template/positive/1-165.png new file mode 100644 index 0000000..0a9f38a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-165.png differ diff --git a/superpower19classifier-zjx/template/positive/1-166.png b/superpower19classifier-zjx/template/positive/1-166.png new file mode 100644 index 0000000..d10dac6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-166.png differ diff --git a/superpower19classifier-zjx/template/positive/1-167.png b/superpower19classifier-zjx/template/positive/1-167.png new file mode 100644 index 0000000..f014b91 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-167.png differ diff --git a/superpower19classifier-zjx/template/positive/1-168.png b/superpower19classifier-zjx/template/positive/1-168.png new file mode 100644 index 0000000..bf01315 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-168.png differ diff --git a/superpower19classifier-zjx/template/positive/1-169.png b/superpower19classifier-zjx/template/positive/1-169.png new file mode 100644 index 0000000..b71cc2d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-169.png differ diff --git a/superpower19classifier-zjx/template/positive/1-17.png b/superpower19classifier-zjx/template/positive/1-17.png new file mode 100644 index 0000000..a3ace1d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-17.png differ diff --git a/superpower19classifier-zjx/template/positive/1-170.png b/superpower19classifier-zjx/template/positive/1-170.png new file mode 100644 index 0000000..46e693c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-170.png differ diff --git a/superpower19classifier-zjx/template/positive/1-171.png b/superpower19classifier-zjx/template/positive/1-171.png new file mode 100644 index 0000000..5ae5540 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-171.png differ diff --git a/superpower19classifier-zjx/template/positive/1-172.png b/superpower19classifier-zjx/template/positive/1-172.png new file mode 100644 index 0000000..fd34163 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-172.png differ diff --git a/superpower19classifier-zjx/template/positive/1-173.png b/superpower19classifier-zjx/template/positive/1-173.png new file mode 100644 index 0000000..5faa8db Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-173.png differ diff --git a/superpower19classifier-zjx/template/positive/1-174.png b/superpower19classifier-zjx/template/positive/1-174.png new file mode 100644 index 0000000..e04939f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-174.png differ diff --git a/superpower19classifier-zjx/template/positive/1-175.png b/superpower19classifier-zjx/template/positive/1-175.png new file mode 100644 index 0000000..56e89f5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-175.png differ diff --git a/superpower19classifier-zjx/template/positive/1-176.png b/superpower19classifier-zjx/template/positive/1-176.png new file mode 100644 index 0000000..b41e23a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-176.png differ diff --git a/superpower19classifier-zjx/template/positive/1-177.png b/superpower19classifier-zjx/template/positive/1-177.png new file mode 100644 index 0000000..61c182c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-177.png differ diff --git a/superpower19classifier-zjx/template/positive/1-178.png b/superpower19classifier-zjx/template/positive/1-178.png new file mode 100644 index 0000000..6045990 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-178.png differ diff --git a/superpower19classifier-zjx/template/positive/1-179.png b/superpower19classifier-zjx/template/positive/1-179.png new file mode 100644 index 0000000..03471ef Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-179.png differ diff --git a/superpower19classifier-zjx/template/positive/1-18.png b/superpower19classifier-zjx/template/positive/1-18.png new file mode 100644 index 0000000..43e27b2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-18.png differ diff --git a/superpower19classifier-zjx/template/positive/1-180.png b/superpower19classifier-zjx/template/positive/1-180.png new file mode 100644 index 0000000..321cc2e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-180.png differ diff --git a/superpower19classifier-zjx/template/positive/1-181.png b/superpower19classifier-zjx/template/positive/1-181.png new file mode 100644 index 0000000..a903933 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-181.png differ diff --git a/superpower19classifier-zjx/template/positive/1-182.png b/superpower19classifier-zjx/template/positive/1-182.png new file mode 100644 index 0000000..ac6041a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-182.png differ diff --git a/superpower19classifier-zjx/template/positive/1-183.png b/superpower19classifier-zjx/template/positive/1-183.png new file mode 100644 index 0000000..43fae0b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-183.png differ diff --git a/superpower19classifier-zjx/template/positive/1-184.png b/superpower19classifier-zjx/template/positive/1-184.png new file mode 100644 index 0000000..ec06b65 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-184.png differ diff --git a/superpower19classifier-zjx/template/positive/1-185.png b/superpower19classifier-zjx/template/positive/1-185.png new file mode 100644 index 0000000..ecaed91 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-185.png differ diff --git a/superpower19classifier-zjx/template/positive/1-186.png b/superpower19classifier-zjx/template/positive/1-186.png new file mode 100644 index 0000000..899b0c7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-186.png differ diff --git a/superpower19classifier-zjx/template/positive/1-187.png b/superpower19classifier-zjx/template/positive/1-187.png new file mode 100644 index 0000000..0f6f618 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-187.png differ diff --git a/superpower19classifier-zjx/template/positive/1-188.png b/superpower19classifier-zjx/template/positive/1-188.png new file mode 100644 index 0000000..e2477e1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-188.png differ diff --git a/superpower19classifier-zjx/template/positive/1-189.png b/superpower19classifier-zjx/template/positive/1-189.png new file mode 100644 index 0000000..a40af99 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-189.png differ diff --git a/superpower19classifier-zjx/template/positive/1-19.png b/superpower19classifier-zjx/template/positive/1-19.png new file mode 100644 index 0000000..039de79 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-19.png differ diff --git a/superpower19classifier-zjx/template/positive/1-190.png b/superpower19classifier-zjx/template/positive/1-190.png new file mode 100644 index 0000000..ef54862 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-190.png differ diff --git a/superpower19classifier-zjx/template/positive/1-191.png b/superpower19classifier-zjx/template/positive/1-191.png new file mode 100644 index 0000000..30ff4f1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-191.png differ diff --git a/superpower19classifier-zjx/template/positive/1-192.png b/superpower19classifier-zjx/template/positive/1-192.png new file mode 100644 index 0000000..45c7cfa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-192.png differ diff --git a/superpower19classifier-zjx/template/positive/1-193.png b/superpower19classifier-zjx/template/positive/1-193.png new file mode 100644 index 0000000..bca8bc6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-193.png differ diff --git a/superpower19classifier-zjx/template/positive/1-194.png b/superpower19classifier-zjx/template/positive/1-194.png new file mode 100644 index 0000000..7cfacde Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-194.png differ diff --git a/superpower19classifier-zjx/template/positive/1-195.png b/superpower19classifier-zjx/template/positive/1-195.png new file mode 100644 index 0000000..da4c961 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-195.png differ diff --git a/superpower19classifier-zjx/template/positive/1-196.png b/superpower19classifier-zjx/template/positive/1-196.png new file mode 100644 index 0000000..1da60da Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-196.png differ diff --git a/superpower19classifier-zjx/template/positive/1-197.png b/superpower19classifier-zjx/template/positive/1-197.png new file mode 100644 index 0000000..1b50e27 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-197.png differ diff --git a/superpower19classifier-zjx/template/positive/1-198.png b/superpower19classifier-zjx/template/positive/1-198.png new file mode 100644 index 0000000..dd95957 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-198.png differ diff --git a/superpower19classifier-zjx/template/positive/1-199.png b/superpower19classifier-zjx/template/positive/1-199.png new file mode 100644 index 0000000..7e8765a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-199.png differ diff --git a/superpower19classifier-zjx/template/positive/1-2.png b/superpower19classifier-zjx/template/positive/1-2.png new file mode 100644 index 0000000..01e2db7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-2.png differ diff --git a/superpower19classifier-zjx/template/positive/1-20.png b/superpower19classifier-zjx/template/positive/1-20.png new file mode 100644 index 0000000..1a8e0b5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-20.png differ diff --git a/superpower19classifier-zjx/template/positive/1-200.png b/superpower19classifier-zjx/template/positive/1-200.png new file mode 100644 index 0000000..4556e14 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-200.png differ diff --git a/superpower19classifier-zjx/template/positive/1-201.png b/superpower19classifier-zjx/template/positive/1-201.png new file mode 100644 index 0000000..a4c9356 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-201.png differ diff --git a/superpower19classifier-zjx/template/positive/1-202.png b/superpower19classifier-zjx/template/positive/1-202.png new file mode 100644 index 0000000..e337798 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-202.png differ diff --git a/superpower19classifier-zjx/template/positive/1-203.png b/superpower19classifier-zjx/template/positive/1-203.png new file mode 100644 index 0000000..b76e4ed Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-203.png differ diff --git a/superpower19classifier-zjx/template/positive/1-204.png b/superpower19classifier-zjx/template/positive/1-204.png new file mode 100644 index 0000000..0967247 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-204.png differ diff --git a/superpower19classifier-zjx/template/positive/1-205.png b/superpower19classifier-zjx/template/positive/1-205.png new file mode 100644 index 0000000..690ccea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-205.png differ diff --git a/superpower19classifier-zjx/template/positive/1-206.png b/superpower19classifier-zjx/template/positive/1-206.png new file mode 100644 index 0000000..625db69 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-206.png differ diff --git a/superpower19classifier-zjx/template/positive/1-207.png b/superpower19classifier-zjx/template/positive/1-207.png new file mode 100644 index 0000000..83d5d56 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-207.png differ diff --git a/superpower19classifier-zjx/template/positive/1-208.png b/superpower19classifier-zjx/template/positive/1-208.png new file mode 100644 index 0000000..dc77c6a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-208.png differ diff --git a/superpower19classifier-zjx/template/positive/1-209.png b/superpower19classifier-zjx/template/positive/1-209.png new file mode 100644 index 0000000..24af9c8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-209.png differ diff --git a/superpower19classifier-zjx/template/positive/1-21.png b/superpower19classifier-zjx/template/positive/1-21.png new file mode 100644 index 0000000..c14360b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-21.png differ diff --git a/superpower19classifier-zjx/template/positive/1-210.png b/superpower19classifier-zjx/template/positive/1-210.png new file mode 100644 index 0000000..c7fe17d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-210.png differ diff --git a/superpower19classifier-zjx/template/positive/1-211.png b/superpower19classifier-zjx/template/positive/1-211.png new file mode 100644 index 0000000..c28386f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-211.png differ diff --git a/superpower19classifier-zjx/template/positive/1-212.png b/superpower19classifier-zjx/template/positive/1-212.png new file mode 100644 index 0000000..416447a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-212.png differ diff --git a/superpower19classifier-zjx/template/positive/1-213.png b/superpower19classifier-zjx/template/positive/1-213.png new file mode 100644 index 0000000..3bbca8b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-213.png differ diff --git a/superpower19classifier-zjx/template/positive/1-214.png b/superpower19classifier-zjx/template/positive/1-214.png new file mode 100644 index 0000000..8bd298e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-214.png differ diff --git a/superpower19classifier-zjx/template/positive/1-215.png b/superpower19classifier-zjx/template/positive/1-215.png new file mode 100644 index 0000000..acbeea2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-215.png differ diff --git a/superpower19classifier-zjx/template/positive/1-216.png b/superpower19classifier-zjx/template/positive/1-216.png new file mode 100644 index 0000000..0ee733e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-216.png differ diff --git a/superpower19classifier-zjx/template/positive/1-217.png b/superpower19classifier-zjx/template/positive/1-217.png new file mode 100644 index 0000000..414c5ce Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-217.png differ diff --git a/superpower19classifier-zjx/template/positive/1-218.png b/superpower19classifier-zjx/template/positive/1-218.png new file mode 100644 index 0000000..c4a52c3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-218.png differ diff --git a/superpower19classifier-zjx/template/positive/1-219.png b/superpower19classifier-zjx/template/positive/1-219.png new file mode 100644 index 0000000..51ada68 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-219.png differ diff --git a/superpower19classifier-zjx/template/positive/1-22.png b/superpower19classifier-zjx/template/positive/1-22.png new file mode 100644 index 0000000..753a332 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-22.png differ diff --git a/superpower19classifier-zjx/template/positive/1-220.png b/superpower19classifier-zjx/template/positive/1-220.png new file mode 100644 index 0000000..804f226 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-220.png differ diff --git a/superpower19classifier-zjx/template/positive/1-221.png b/superpower19classifier-zjx/template/positive/1-221.png new file mode 100644 index 0000000..b7610a8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-221.png differ diff --git a/superpower19classifier-zjx/template/positive/1-222.png b/superpower19classifier-zjx/template/positive/1-222.png new file mode 100644 index 0000000..63f58b7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-222.png differ diff --git a/superpower19classifier-zjx/template/positive/1-223.png b/superpower19classifier-zjx/template/positive/1-223.png new file mode 100644 index 0000000..a92f596 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-223.png differ diff --git a/superpower19classifier-zjx/template/positive/1-224.png b/superpower19classifier-zjx/template/positive/1-224.png new file mode 100644 index 0000000..815bb77 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-224.png differ diff --git a/superpower19classifier-zjx/template/positive/1-225.png b/superpower19classifier-zjx/template/positive/1-225.png new file mode 100644 index 0000000..ae80a46 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-225.png differ diff --git a/superpower19classifier-zjx/template/positive/1-226.png b/superpower19classifier-zjx/template/positive/1-226.png new file mode 100644 index 0000000..062744b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-226.png differ diff --git a/superpower19classifier-zjx/template/positive/1-227.png b/superpower19classifier-zjx/template/positive/1-227.png new file mode 100644 index 0000000..2c61c1e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-227.png differ diff --git a/superpower19classifier-zjx/template/positive/1-228.png b/superpower19classifier-zjx/template/positive/1-228.png new file mode 100644 index 0000000..fe59af6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-228.png differ diff --git a/superpower19classifier-zjx/template/positive/1-229.png b/superpower19classifier-zjx/template/positive/1-229.png new file mode 100644 index 0000000..c64b6f9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-229.png differ diff --git a/superpower19classifier-zjx/template/positive/1-23.png b/superpower19classifier-zjx/template/positive/1-23.png new file mode 100644 index 0000000..7dde175 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-23.png differ diff --git a/superpower19classifier-zjx/template/positive/1-230.png b/superpower19classifier-zjx/template/positive/1-230.png new file mode 100644 index 0000000..b46f896 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-230.png differ diff --git a/superpower19classifier-zjx/template/positive/1-231.png b/superpower19classifier-zjx/template/positive/1-231.png new file mode 100644 index 0000000..df11fd7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-231.png differ diff --git a/superpower19classifier-zjx/template/positive/1-232.png b/superpower19classifier-zjx/template/positive/1-232.png new file mode 100644 index 0000000..e1a1055 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-232.png differ diff --git a/superpower19classifier-zjx/template/positive/1-233.png b/superpower19classifier-zjx/template/positive/1-233.png new file mode 100644 index 0000000..79cb489 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-233.png differ diff --git a/superpower19classifier-zjx/template/positive/1-234.png b/superpower19classifier-zjx/template/positive/1-234.png new file mode 100644 index 0000000..7aea479 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-234.png differ diff --git a/superpower19classifier-zjx/template/positive/1-235.png b/superpower19classifier-zjx/template/positive/1-235.png new file mode 100644 index 0000000..1bd590f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-235.png differ diff --git a/superpower19classifier-zjx/template/positive/1-236.png b/superpower19classifier-zjx/template/positive/1-236.png new file mode 100644 index 0000000..4aa93ec Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-236.png differ diff --git a/superpower19classifier-zjx/template/positive/1-237.png b/superpower19classifier-zjx/template/positive/1-237.png new file mode 100644 index 0000000..e51ac8e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-237.png differ diff --git a/superpower19classifier-zjx/template/positive/1-238.png b/superpower19classifier-zjx/template/positive/1-238.png new file mode 100644 index 0000000..630c996 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-238.png differ diff --git a/superpower19classifier-zjx/template/positive/1-239.png b/superpower19classifier-zjx/template/positive/1-239.png new file mode 100644 index 0000000..725cceb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-239.png differ diff --git a/superpower19classifier-zjx/template/positive/1-24.png b/superpower19classifier-zjx/template/positive/1-24.png new file mode 100644 index 0000000..7f770d5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-24.png differ diff --git a/superpower19classifier-zjx/template/positive/1-240.png b/superpower19classifier-zjx/template/positive/1-240.png new file mode 100644 index 0000000..c38e90c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-240.png differ diff --git a/superpower19classifier-zjx/template/positive/1-241.png b/superpower19classifier-zjx/template/positive/1-241.png new file mode 100644 index 0000000..3d7300e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-241.png differ diff --git a/superpower19classifier-zjx/template/positive/1-242.png b/superpower19classifier-zjx/template/positive/1-242.png new file mode 100644 index 0000000..6dc7794 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-242.png differ diff --git a/superpower19classifier-zjx/template/positive/1-243.png b/superpower19classifier-zjx/template/positive/1-243.png new file mode 100644 index 0000000..d098551 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-243.png differ diff --git a/superpower19classifier-zjx/template/positive/1-244.png b/superpower19classifier-zjx/template/positive/1-244.png new file mode 100644 index 0000000..dde6200 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-244.png differ diff --git a/superpower19classifier-zjx/template/positive/1-245.png b/superpower19classifier-zjx/template/positive/1-245.png new file mode 100644 index 0000000..7e032c0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-245.png differ diff --git a/superpower19classifier-zjx/template/positive/1-246.png b/superpower19classifier-zjx/template/positive/1-246.png new file mode 100644 index 0000000..2025e2b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-246.png differ diff --git a/superpower19classifier-zjx/template/positive/1-247.png b/superpower19classifier-zjx/template/positive/1-247.png new file mode 100644 index 0000000..7e6744d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-247.png differ diff --git a/superpower19classifier-zjx/template/positive/1-248.png b/superpower19classifier-zjx/template/positive/1-248.png new file mode 100644 index 0000000..474312b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-248.png differ diff --git a/superpower19classifier-zjx/template/positive/1-249.png b/superpower19classifier-zjx/template/positive/1-249.png new file mode 100644 index 0000000..b5f4558 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-249.png differ diff --git a/superpower19classifier-zjx/template/positive/1-25.png b/superpower19classifier-zjx/template/positive/1-25.png new file mode 100644 index 0000000..907c503 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-25.png differ diff --git a/superpower19classifier-zjx/template/positive/1-250.png b/superpower19classifier-zjx/template/positive/1-250.png new file mode 100644 index 0000000..43066bd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-250.png differ diff --git a/superpower19classifier-zjx/template/positive/1-251.png b/superpower19classifier-zjx/template/positive/1-251.png new file mode 100644 index 0000000..17d210d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-251.png differ diff --git a/superpower19classifier-zjx/template/positive/1-252.png b/superpower19classifier-zjx/template/positive/1-252.png new file mode 100644 index 0000000..c450391 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-252.png differ diff --git a/superpower19classifier-zjx/template/positive/1-253.png b/superpower19classifier-zjx/template/positive/1-253.png new file mode 100644 index 0000000..c227e23 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-253.png differ diff --git a/superpower19classifier-zjx/template/positive/1-254.png b/superpower19classifier-zjx/template/positive/1-254.png new file mode 100644 index 0000000..982d2a7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-254.png differ diff --git a/superpower19classifier-zjx/template/positive/1-255.png b/superpower19classifier-zjx/template/positive/1-255.png new file mode 100644 index 0000000..c724823 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-255.png differ diff --git a/superpower19classifier-zjx/template/positive/1-256.png b/superpower19classifier-zjx/template/positive/1-256.png new file mode 100644 index 0000000..d91b2ed Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-256.png differ diff --git a/superpower19classifier-zjx/template/positive/1-257.png b/superpower19classifier-zjx/template/positive/1-257.png new file mode 100644 index 0000000..051f2e6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-257.png differ diff --git a/superpower19classifier-zjx/template/positive/1-258.png b/superpower19classifier-zjx/template/positive/1-258.png new file mode 100644 index 0000000..038f114 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-258.png differ diff --git a/superpower19classifier-zjx/template/positive/1-259.png b/superpower19classifier-zjx/template/positive/1-259.png new file mode 100644 index 0000000..5a8d8ed Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-259.png differ diff --git a/superpower19classifier-zjx/template/positive/1-26.png b/superpower19classifier-zjx/template/positive/1-26.png new file mode 100644 index 0000000..9268bc3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-26.png differ diff --git a/superpower19classifier-zjx/template/positive/1-260.png b/superpower19classifier-zjx/template/positive/1-260.png new file mode 100644 index 0000000..23faaa1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-260.png differ diff --git a/superpower19classifier-zjx/template/positive/1-261.png b/superpower19classifier-zjx/template/positive/1-261.png new file mode 100644 index 0000000..81bef33 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-261.png differ diff --git a/superpower19classifier-zjx/template/positive/1-262.png b/superpower19classifier-zjx/template/positive/1-262.png new file mode 100644 index 0000000..7b0b0bc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-262.png differ diff --git a/superpower19classifier-zjx/template/positive/1-263.png b/superpower19classifier-zjx/template/positive/1-263.png new file mode 100644 index 0000000..80c5d9f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-263.png differ diff --git a/superpower19classifier-zjx/template/positive/1-264.png b/superpower19classifier-zjx/template/positive/1-264.png new file mode 100644 index 0000000..6be97a1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-264.png differ diff --git a/superpower19classifier-zjx/template/positive/1-265.png b/superpower19classifier-zjx/template/positive/1-265.png new file mode 100644 index 0000000..c054936 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-265.png differ diff --git a/superpower19classifier-zjx/template/positive/1-266.png b/superpower19classifier-zjx/template/positive/1-266.png new file mode 100644 index 0000000..9aa2f98 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-266.png differ diff --git a/superpower19classifier-zjx/template/positive/1-267.png b/superpower19classifier-zjx/template/positive/1-267.png new file mode 100644 index 0000000..bcc7113 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-267.png differ diff --git a/superpower19classifier-zjx/template/positive/1-268.png b/superpower19classifier-zjx/template/positive/1-268.png new file mode 100644 index 0000000..e8f4701 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-268.png differ diff --git a/superpower19classifier-zjx/template/positive/1-269.png b/superpower19classifier-zjx/template/positive/1-269.png new file mode 100644 index 0000000..eb713f1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-269.png differ diff --git a/superpower19classifier-zjx/template/positive/1-27.png b/superpower19classifier-zjx/template/positive/1-27.png new file mode 100644 index 0000000..87bf38b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-27.png differ diff --git a/superpower19classifier-zjx/template/positive/1-270.png b/superpower19classifier-zjx/template/positive/1-270.png new file mode 100644 index 0000000..2666130 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-270.png differ diff --git a/superpower19classifier-zjx/template/positive/1-271.png b/superpower19classifier-zjx/template/positive/1-271.png new file mode 100644 index 0000000..c8fbf43 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-271.png differ diff --git a/superpower19classifier-zjx/template/positive/1-272.png b/superpower19classifier-zjx/template/positive/1-272.png new file mode 100644 index 0000000..0f5984d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-272.png differ diff --git a/superpower19classifier-zjx/template/positive/1-273.png b/superpower19classifier-zjx/template/positive/1-273.png new file mode 100644 index 0000000..de9b029 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-273.png differ diff --git a/superpower19classifier-zjx/template/positive/1-274.png b/superpower19classifier-zjx/template/positive/1-274.png new file mode 100644 index 0000000..f57515e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-274.png differ diff --git a/superpower19classifier-zjx/template/positive/1-275.png b/superpower19classifier-zjx/template/positive/1-275.png new file mode 100644 index 0000000..9114fab Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-275.png differ diff --git a/superpower19classifier-zjx/template/positive/1-276.png b/superpower19classifier-zjx/template/positive/1-276.png new file mode 100644 index 0000000..3cbd02f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-276.png differ diff --git a/superpower19classifier-zjx/template/positive/1-277.png b/superpower19classifier-zjx/template/positive/1-277.png new file mode 100644 index 0000000..45cfc91 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-277.png differ diff --git a/superpower19classifier-zjx/template/positive/1-278.png b/superpower19classifier-zjx/template/positive/1-278.png new file mode 100644 index 0000000..faeb931 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-278.png differ diff --git a/superpower19classifier-zjx/template/positive/1-279.png b/superpower19classifier-zjx/template/positive/1-279.png new file mode 100644 index 0000000..81efa01 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-279.png differ diff --git a/superpower19classifier-zjx/template/positive/1-28.png b/superpower19classifier-zjx/template/positive/1-28.png new file mode 100644 index 0000000..9153feb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-28.png differ diff --git a/superpower19classifier-zjx/template/positive/1-280.png b/superpower19classifier-zjx/template/positive/1-280.png new file mode 100644 index 0000000..f858c64 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-280.png differ diff --git a/superpower19classifier-zjx/template/positive/1-281.png b/superpower19classifier-zjx/template/positive/1-281.png new file mode 100644 index 0000000..16954b5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-281.png differ diff --git a/superpower19classifier-zjx/template/positive/1-282.png b/superpower19classifier-zjx/template/positive/1-282.png new file mode 100644 index 0000000..cb45edb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-282.png differ diff --git a/superpower19classifier-zjx/template/positive/1-283.png b/superpower19classifier-zjx/template/positive/1-283.png new file mode 100644 index 0000000..005d7cf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-283.png differ diff --git a/superpower19classifier-zjx/template/positive/1-284.png b/superpower19classifier-zjx/template/positive/1-284.png new file mode 100644 index 0000000..0f28502 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-284.png differ diff --git a/superpower19classifier-zjx/template/positive/1-285.png b/superpower19classifier-zjx/template/positive/1-285.png new file mode 100644 index 0000000..0b7ca4c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-285.png differ diff --git a/superpower19classifier-zjx/template/positive/1-286.png b/superpower19classifier-zjx/template/positive/1-286.png new file mode 100644 index 0000000..dc58119 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-286.png differ diff --git a/superpower19classifier-zjx/template/positive/1-287.png b/superpower19classifier-zjx/template/positive/1-287.png new file mode 100644 index 0000000..2376f9d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-287.png differ diff --git a/superpower19classifier-zjx/template/positive/1-288.png b/superpower19classifier-zjx/template/positive/1-288.png new file mode 100644 index 0000000..5321d23 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-288.png differ diff --git a/superpower19classifier-zjx/template/positive/1-289.png b/superpower19classifier-zjx/template/positive/1-289.png new file mode 100644 index 0000000..1b68fe8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-289.png differ diff --git a/superpower19classifier-zjx/template/positive/1-29.png b/superpower19classifier-zjx/template/positive/1-29.png new file mode 100644 index 0000000..1ee54e4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-29.png differ diff --git a/superpower19classifier-zjx/template/positive/1-290.png b/superpower19classifier-zjx/template/positive/1-290.png new file mode 100644 index 0000000..a25df8a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-290.png differ diff --git a/superpower19classifier-zjx/template/positive/1-291.png b/superpower19classifier-zjx/template/positive/1-291.png new file mode 100644 index 0000000..b72f784 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-291.png differ diff --git a/superpower19classifier-zjx/template/positive/1-292.png b/superpower19classifier-zjx/template/positive/1-292.png new file mode 100644 index 0000000..d90d2c7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-292.png differ diff --git a/superpower19classifier-zjx/template/positive/1-293.png b/superpower19classifier-zjx/template/positive/1-293.png new file mode 100644 index 0000000..2dcc228 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-293.png differ diff --git a/superpower19classifier-zjx/template/positive/1-3.png b/superpower19classifier-zjx/template/positive/1-3.png new file mode 100644 index 0000000..87775e9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-3.png differ diff --git a/superpower19classifier-zjx/template/positive/1-30.png b/superpower19classifier-zjx/template/positive/1-30.png new file mode 100644 index 0000000..96f0c01 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-30.png differ diff --git a/superpower19classifier-zjx/template/positive/1-31.png b/superpower19classifier-zjx/template/positive/1-31.png new file mode 100644 index 0000000..313b563 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-31.png differ diff --git a/superpower19classifier-zjx/template/positive/1-32.png b/superpower19classifier-zjx/template/positive/1-32.png new file mode 100644 index 0000000..16208e6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-32.png differ diff --git a/superpower19classifier-zjx/template/positive/1-33.png b/superpower19classifier-zjx/template/positive/1-33.png new file mode 100644 index 0000000..4ada4a3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-33.png differ diff --git a/superpower19classifier-zjx/template/positive/1-34.png b/superpower19classifier-zjx/template/positive/1-34.png new file mode 100644 index 0000000..43b728b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-34.png differ diff --git a/superpower19classifier-zjx/template/positive/1-35.png b/superpower19classifier-zjx/template/positive/1-35.png new file mode 100644 index 0000000..ea88610 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-35.png differ diff --git a/superpower19classifier-zjx/template/positive/1-36.png b/superpower19classifier-zjx/template/positive/1-36.png new file mode 100644 index 0000000..539d5a5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-36.png differ diff --git a/superpower19classifier-zjx/template/positive/1-37.png b/superpower19classifier-zjx/template/positive/1-37.png new file mode 100644 index 0000000..deff0ca Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-37.png differ diff --git a/superpower19classifier-zjx/template/positive/1-38.png b/superpower19classifier-zjx/template/positive/1-38.png new file mode 100644 index 0000000..473f983 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-38.png differ diff --git a/superpower19classifier-zjx/template/positive/1-39.png b/superpower19classifier-zjx/template/positive/1-39.png new file mode 100644 index 0000000..4b1d45f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-39.png differ diff --git a/superpower19classifier-zjx/template/positive/1-4.png b/superpower19classifier-zjx/template/positive/1-4.png new file mode 100644 index 0000000..0b9ec25 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-4.png differ diff --git a/superpower19classifier-zjx/template/positive/1-40.png b/superpower19classifier-zjx/template/positive/1-40.png new file mode 100644 index 0000000..7f4bd87 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-40.png differ diff --git a/superpower19classifier-zjx/template/positive/1-41.png b/superpower19classifier-zjx/template/positive/1-41.png new file mode 100644 index 0000000..2aaf0a7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-41.png differ diff --git a/superpower19classifier-zjx/template/positive/1-42.png b/superpower19classifier-zjx/template/positive/1-42.png new file mode 100644 index 0000000..9dc7dd2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-42.png differ diff --git a/superpower19classifier-zjx/template/positive/1-43.png b/superpower19classifier-zjx/template/positive/1-43.png new file mode 100644 index 0000000..38f5da0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-43.png differ diff --git a/superpower19classifier-zjx/template/positive/1-44.png b/superpower19classifier-zjx/template/positive/1-44.png new file mode 100644 index 0000000..16511ec Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-44.png differ diff --git a/superpower19classifier-zjx/template/positive/1-45.png b/superpower19classifier-zjx/template/positive/1-45.png new file mode 100644 index 0000000..9233415 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-45.png differ diff --git a/superpower19classifier-zjx/template/positive/1-46.png b/superpower19classifier-zjx/template/positive/1-46.png new file mode 100644 index 0000000..e52b7dc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-46.png differ diff --git a/superpower19classifier-zjx/template/positive/1-47.png b/superpower19classifier-zjx/template/positive/1-47.png new file mode 100644 index 0000000..957eaf2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-47.png differ diff --git a/superpower19classifier-zjx/template/positive/1-48.png b/superpower19classifier-zjx/template/positive/1-48.png new file mode 100644 index 0000000..e048690 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-48.png differ diff --git a/superpower19classifier-zjx/template/positive/1-49.png b/superpower19classifier-zjx/template/positive/1-49.png new file mode 100644 index 0000000..b46b128 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-49.png differ diff --git a/superpower19classifier-zjx/template/positive/1-5.png b/superpower19classifier-zjx/template/positive/1-5.png new file mode 100644 index 0000000..5d9cdd1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-5.png differ diff --git a/superpower19classifier-zjx/template/positive/1-50.png b/superpower19classifier-zjx/template/positive/1-50.png new file mode 100644 index 0000000..a04f635 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-50.png differ diff --git a/superpower19classifier-zjx/template/positive/1-51.png b/superpower19classifier-zjx/template/positive/1-51.png new file mode 100644 index 0000000..78ad94a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-51.png differ diff --git a/superpower19classifier-zjx/template/positive/1-52.png b/superpower19classifier-zjx/template/positive/1-52.png new file mode 100644 index 0000000..2476f9d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-52.png differ diff --git a/superpower19classifier-zjx/template/positive/1-53.png b/superpower19classifier-zjx/template/positive/1-53.png new file mode 100644 index 0000000..8d16f34 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-53.png differ diff --git a/superpower19classifier-zjx/template/positive/1-54.png b/superpower19classifier-zjx/template/positive/1-54.png new file mode 100644 index 0000000..65af233 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-54.png differ diff --git a/superpower19classifier-zjx/template/positive/1-55.png b/superpower19classifier-zjx/template/positive/1-55.png new file mode 100644 index 0000000..ac3e1d6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-55.png differ diff --git a/superpower19classifier-zjx/template/positive/1-56.png b/superpower19classifier-zjx/template/positive/1-56.png new file mode 100644 index 0000000..b10a9c4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-56.png differ diff --git a/superpower19classifier-zjx/template/positive/1-57.png b/superpower19classifier-zjx/template/positive/1-57.png new file mode 100644 index 0000000..f251f95 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-57.png differ diff --git a/superpower19classifier-zjx/template/positive/1-58.png b/superpower19classifier-zjx/template/positive/1-58.png new file mode 100644 index 0000000..bc510bf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-58.png differ diff --git a/superpower19classifier-zjx/template/positive/1-59.png b/superpower19classifier-zjx/template/positive/1-59.png new file mode 100644 index 0000000..e6ec617 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-59.png differ diff --git a/superpower19classifier-zjx/template/positive/1-6.png b/superpower19classifier-zjx/template/positive/1-6.png new file mode 100644 index 0000000..ef44761 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-6.png differ diff --git a/superpower19classifier-zjx/template/positive/1-60.png b/superpower19classifier-zjx/template/positive/1-60.png new file mode 100644 index 0000000..fa3cada Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-60.png differ diff --git a/superpower19classifier-zjx/template/positive/1-61.png b/superpower19classifier-zjx/template/positive/1-61.png new file mode 100644 index 0000000..2cbb856 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-61.png differ diff --git a/superpower19classifier-zjx/template/positive/1-62.png b/superpower19classifier-zjx/template/positive/1-62.png new file mode 100644 index 0000000..997b167 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-62.png differ diff --git a/superpower19classifier-zjx/template/positive/1-63.png b/superpower19classifier-zjx/template/positive/1-63.png new file mode 100644 index 0000000..9fc8cda Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-63.png differ diff --git a/superpower19classifier-zjx/template/positive/1-64.png b/superpower19classifier-zjx/template/positive/1-64.png new file mode 100644 index 0000000..6213f65 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-64.png differ diff --git a/superpower19classifier-zjx/template/positive/1-65.png b/superpower19classifier-zjx/template/positive/1-65.png new file mode 100644 index 0000000..a56210c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-65.png differ diff --git a/superpower19classifier-zjx/template/positive/1-66.png b/superpower19classifier-zjx/template/positive/1-66.png new file mode 100644 index 0000000..26f6392 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-66.png differ diff --git a/superpower19classifier-zjx/template/positive/1-67.png b/superpower19classifier-zjx/template/positive/1-67.png new file mode 100644 index 0000000..25f99c0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-67.png differ diff --git a/superpower19classifier-zjx/template/positive/1-68.png b/superpower19classifier-zjx/template/positive/1-68.png new file mode 100644 index 0000000..e3ad6a0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-68.png differ diff --git a/superpower19classifier-zjx/template/positive/1-69.png b/superpower19classifier-zjx/template/positive/1-69.png new file mode 100644 index 0000000..77136cb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-69.png differ diff --git a/superpower19classifier-zjx/template/positive/1-7.png b/superpower19classifier-zjx/template/positive/1-7.png new file mode 100644 index 0000000..112f38c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-7.png differ diff --git a/superpower19classifier-zjx/template/positive/1-70.png b/superpower19classifier-zjx/template/positive/1-70.png new file mode 100644 index 0000000..448a619 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-70.png differ diff --git a/superpower19classifier-zjx/template/positive/1-71.png b/superpower19classifier-zjx/template/positive/1-71.png new file mode 100644 index 0000000..7d812e7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-71.png differ diff --git a/superpower19classifier-zjx/template/positive/1-72.png b/superpower19classifier-zjx/template/positive/1-72.png new file mode 100644 index 0000000..5bbd061 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-72.png differ diff --git a/superpower19classifier-zjx/template/positive/1-73.png b/superpower19classifier-zjx/template/positive/1-73.png new file mode 100644 index 0000000..7dbdaa4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-73.png differ diff --git a/superpower19classifier-zjx/template/positive/1-74.png b/superpower19classifier-zjx/template/positive/1-74.png new file mode 100644 index 0000000..14e2cc4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-74.png differ diff --git a/superpower19classifier-zjx/template/positive/1-75.png b/superpower19classifier-zjx/template/positive/1-75.png new file mode 100644 index 0000000..a35cc0f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-75.png differ diff --git a/superpower19classifier-zjx/template/positive/1-76.png b/superpower19classifier-zjx/template/positive/1-76.png new file mode 100644 index 0000000..ca396be Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-76.png differ diff --git a/superpower19classifier-zjx/template/positive/1-77.png b/superpower19classifier-zjx/template/positive/1-77.png new file mode 100644 index 0000000..eb91045 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-77.png differ diff --git a/superpower19classifier-zjx/template/positive/1-78.png b/superpower19classifier-zjx/template/positive/1-78.png new file mode 100644 index 0000000..df3588f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-78.png differ diff --git a/superpower19classifier-zjx/template/positive/1-79.png b/superpower19classifier-zjx/template/positive/1-79.png new file mode 100644 index 0000000..d9b5a28 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-79.png differ diff --git a/superpower19classifier-zjx/template/positive/1-8.png b/superpower19classifier-zjx/template/positive/1-8.png new file mode 100644 index 0000000..8f916fc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-8.png differ diff --git a/superpower19classifier-zjx/template/positive/1-80.png b/superpower19classifier-zjx/template/positive/1-80.png new file mode 100644 index 0000000..512d3b6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-80.png differ diff --git a/superpower19classifier-zjx/template/positive/1-81.png b/superpower19classifier-zjx/template/positive/1-81.png new file mode 100644 index 0000000..ad9b178 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-81.png differ diff --git a/superpower19classifier-zjx/template/positive/1-82.png b/superpower19classifier-zjx/template/positive/1-82.png new file mode 100644 index 0000000..41114bb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-82.png differ diff --git a/superpower19classifier-zjx/template/positive/1-83.png b/superpower19classifier-zjx/template/positive/1-83.png new file mode 100644 index 0000000..4a20ca7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-83.png differ diff --git a/superpower19classifier-zjx/template/positive/1-84.png b/superpower19classifier-zjx/template/positive/1-84.png new file mode 100644 index 0000000..e006108 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-84.png differ diff --git a/superpower19classifier-zjx/template/positive/1-85.png b/superpower19classifier-zjx/template/positive/1-85.png new file mode 100644 index 0000000..f108fac Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-85.png differ diff --git a/superpower19classifier-zjx/template/positive/1-86.png b/superpower19classifier-zjx/template/positive/1-86.png new file mode 100644 index 0000000..c30a74d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-86.png differ diff --git a/superpower19classifier-zjx/template/positive/1-87.png b/superpower19classifier-zjx/template/positive/1-87.png new file mode 100644 index 0000000..dce03e6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-87.png differ diff --git a/superpower19classifier-zjx/template/positive/1-88.png b/superpower19classifier-zjx/template/positive/1-88.png new file mode 100644 index 0000000..a2d9264 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-88.png differ diff --git a/superpower19classifier-zjx/template/positive/1-89.png b/superpower19classifier-zjx/template/positive/1-89.png new file mode 100644 index 0000000..8dde324 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-89.png differ diff --git a/superpower19classifier-zjx/template/positive/1-9.png b/superpower19classifier-zjx/template/positive/1-9.png new file mode 100644 index 0000000..7847206 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-9.png differ diff --git a/superpower19classifier-zjx/template/positive/1-90.png b/superpower19classifier-zjx/template/positive/1-90.png new file mode 100644 index 0000000..27523e5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-90.png differ diff --git a/superpower19classifier-zjx/template/positive/1-91.png b/superpower19classifier-zjx/template/positive/1-91.png new file mode 100644 index 0000000..f9c3c2b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-91.png differ diff --git a/superpower19classifier-zjx/template/positive/1-92.png b/superpower19classifier-zjx/template/positive/1-92.png new file mode 100644 index 0000000..53a607f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-92.png differ diff --git a/superpower19classifier-zjx/template/positive/1-93.png b/superpower19classifier-zjx/template/positive/1-93.png new file mode 100644 index 0000000..ad3fc2e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-93.png differ diff --git a/superpower19classifier-zjx/template/positive/1-94.png b/superpower19classifier-zjx/template/positive/1-94.png new file mode 100644 index 0000000..b0da5bf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-94.png differ diff --git a/superpower19classifier-zjx/template/positive/1-95.png b/superpower19classifier-zjx/template/positive/1-95.png new file mode 100644 index 0000000..ddbf2dd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-95.png differ diff --git a/superpower19classifier-zjx/template/positive/1-96.png b/superpower19classifier-zjx/template/positive/1-96.png new file mode 100644 index 0000000..eeb004c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-96.png differ diff --git a/superpower19classifier-zjx/template/positive/1-97.png b/superpower19classifier-zjx/template/positive/1-97.png new file mode 100644 index 0000000..24af01c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-97.png differ diff --git a/superpower19classifier-zjx/template/positive/1-98.png b/superpower19classifier-zjx/template/positive/1-98.png new file mode 100644 index 0000000..3551624 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-98.png differ diff --git a/superpower19classifier-zjx/template/positive/1-99.png b/superpower19classifier-zjx/template/positive/1-99.png new file mode 100644 index 0000000..2e089b8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1-99.png differ diff --git a/superpower19classifier-zjx/template/positive/1.png b/superpower19classifier-zjx/template/positive/1.png new file mode 100644 index 0000000..e148605 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1.png differ diff --git a/superpower19classifier-zjx/template/positive/10.png b/superpower19classifier-zjx/template/positive/10.png new file mode 100644 index 0000000..da5a6dc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10.png differ diff --git a/superpower19classifier-zjx/template/positive/100.png b/superpower19classifier-zjx/template/positive/100.png new file mode 100644 index 0000000..7028ac1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/100.png differ diff --git a/superpower19classifier-zjx/template/positive/1000.png b/superpower19classifier-zjx/template/positive/1000.png new file mode 100644 index 0000000..2680d81 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1000.png differ diff --git a/superpower19classifier-zjx/template/positive/10011.png b/superpower19classifier-zjx/template/positive/10011.png new file mode 100644 index 0000000..e34a163 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10011.png differ diff --git a/superpower19classifier-zjx/template/positive/10051.png b/superpower19classifier-zjx/template/positive/10051.png new file mode 100644 index 0000000..ab38a0c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10051.png differ diff --git a/superpower19classifier-zjx/template/positive/10071.png b/superpower19classifier-zjx/template/positive/10071.png new file mode 100644 index 0000000..b3cbaae Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10071.png differ diff --git a/superpower19classifier-zjx/template/positive/10091.png b/superpower19classifier-zjx/template/positive/10091.png new file mode 100644 index 0000000..d007402 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10091.png differ diff --git a/superpower19classifier-zjx/template/positive/1010.png b/superpower19classifier-zjx/template/positive/1010.png new file mode 100644 index 0000000..cd33443 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1010.png differ diff --git a/superpower19classifier-zjx/template/positive/10151.png b/superpower19classifier-zjx/template/positive/10151.png new file mode 100644 index 0000000..3886cb0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10151.png differ diff --git a/superpower19classifier-zjx/template/positive/10181.png b/superpower19classifier-zjx/template/positive/10181.png new file mode 100644 index 0000000..4565c65 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10181.png differ diff --git a/superpower19classifier-zjx/template/positive/102.png b/superpower19classifier-zjx/template/positive/102.png new file mode 100644 index 0000000..a0ba4ad Binary files /dev/null and b/superpower19classifier-zjx/template/positive/102.png differ diff --git a/superpower19classifier-zjx/template/positive/1020.png b/superpower19classifier-zjx/template/positive/1020.png new file mode 100644 index 0000000..a402682 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1020.png differ diff --git a/superpower19classifier-zjx/template/positive/10201.png b/superpower19classifier-zjx/template/positive/10201.png new file mode 100644 index 0000000..ea454ff Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10201.png differ diff --git a/superpower19classifier-zjx/template/positive/10211.png b/superpower19classifier-zjx/template/positive/10211.png new file mode 100644 index 0000000..58197b4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10211.png differ diff --git a/superpower19classifier-zjx/template/positive/10261.png b/superpower19classifier-zjx/template/positive/10261.png new file mode 100644 index 0000000..2de9780 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10261.png differ diff --git a/superpower19classifier-zjx/template/positive/10281.png b/superpower19classifier-zjx/template/positive/10281.png new file mode 100644 index 0000000..9ed5a98 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10281.png differ diff --git a/superpower19classifier-zjx/template/positive/1035.png b/superpower19classifier-zjx/template/positive/1035.png new file mode 100644 index 0000000..ef124a4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1035.png differ diff --git a/superpower19classifier-zjx/template/positive/104.png b/superpower19classifier-zjx/template/positive/104.png new file mode 100644 index 0000000..b05455f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/104.png differ diff --git a/superpower19classifier-zjx/template/positive/105.png b/superpower19classifier-zjx/template/positive/105.png new file mode 100644 index 0000000..1a5d1df Binary files /dev/null and b/superpower19classifier-zjx/template/positive/105.png differ diff --git a/superpower19classifier-zjx/template/positive/106.png b/superpower19classifier-zjx/template/positive/106.png new file mode 100644 index 0000000..17f9245 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/106.png differ diff --git a/superpower19classifier-zjx/template/positive/1065.png b/superpower19classifier-zjx/template/positive/1065.png new file mode 100644 index 0000000..487faf0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1065.png differ diff --git a/superpower19classifier-zjx/template/positive/10671.png b/superpower19classifier-zjx/template/positive/10671.png new file mode 100644 index 0000000..696d5d3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10671.png differ diff --git a/superpower19classifier-zjx/template/positive/10691.png b/superpower19classifier-zjx/template/positive/10691.png new file mode 100644 index 0000000..122057d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10691.png differ diff --git a/superpower19classifier-zjx/template/positive/1070.png b/superpower19classifier-zjx/template/positive/1070.png new file mode 100644 index 0000000..0ea6022 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1070.png differ diff --git a/superpower19classifier-zjx/template/positive/10711.png b/superpower19classifier-zjx/template/positive/10711.png new file mode 100644 index 0000000..5ae4a2f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10711.png differ diff --git a/superpower19classifier-zjx/template/positive/10741.png b/superpower19classifier-zjx/template/positive/10741.png new file mode 100644 index 0000000..0441e77 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10741.png differ diff --git a/superpower19classifier-zjx/template/positive/108.png b/superpower19classifier-zjx/template/positive/108.png new file mode 100644 index 0000000..a088418 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/108.png differ diff --git a/superpower19classifier-zjx/template/positive/1080.png b/superpower19classifier-zjx/template/positive/1080.png new file mode 100644 index 0000000..3ec8392 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1080.png differ diff --git a/superpower19classifier-zjx/template/positive/10881.png b/superpower19classifier-zjx/template/positive/10881.png new file mode 100644 index 0000000..891c01e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10881.png differ diff --git a/superpower19classifier-zjx/template/positive/10891.png b/superpower19classifier-zjx/template/positive/10891.png new file mode 100644 index 0000000..f9fb9d2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10891.png differ diff --git a/superpower19classifier-zjx/template/positive/1090.png b/superpower19classifier-zjx/template/positive/1090.png new file mode 100644 index 0000000..8ef9690 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1090.png differ diff --git a/superpower19classifier-zjx/template/positive/10901.png b/superpower19classifier-zjx/template/positive/10901.png new file mode 100644 index 0000000..109f330 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10901.png differ diff --git a/superpower19classifier-zjx/template/positive/10921.png b/superpower19classifier-zjx/template/positive/10921.png new file mode 100644 index 0000000..9a82378 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10921.png differ diff --git a/superpower19classifier-zjx/template/positive/10971.png b/superpower19classifier-zjx/template/positive/10971.png new file mode 100644 index 0000000..e980f29 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/10971.png differ diff --git a/superpower19classifier-zjx/template/positive/110.png b/superpower19classifier-zjx/template/positive/110.png new file mode 100644 index 0000000..f0bb3cb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/110.png differ diff --git a/superpower19classifier-zjx/template/positive/1100.png b/superpower19classifier-zjx/template/positive/1100.png new file mode 100644 index 0000000..3fd8dbe Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1100.png differ diff --git a/superpower19classifier-zjx/template/positive/11011.png b/superpower19classifier-zjx/template/positive/11011.png new file mode 100644 index 0000000..4e8b9f9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11011.png differ diff --git a/superpower19classifier-zjx/template/positive/1105.png b/superpower19classifier-zjx/template/positive/1105.png new file mode 100644 index 0000000..6654b7e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1105.png differ diff --git a/superpower19classifier-zjx/template/positive/1115.png b/superpower19classifier-zjx/template/positive/1115.png new file mode 100644 index 0000000..765d304 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1115.png differ diff --git a/superpower19classifier-zjx/template/positive/1120.png b/superpower19classifier-zjx/template/positive/1120.png new file mode 100644 index 0000000..d28353f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1120.png differ diff --git a/superpower19classifier-zjx/template/positive/11221.png b/superpower19classifier-zjx/template/positive/11221.png new file mode 100644 index 0000000..ef09f6d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11221.png differ diff --git a/superpower19classifier-zjx/template/positive/1125.png b/superpower19classifier-zjx/template/positive/1125.png new file mode 100644 index 0000000..51c72ba Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1125.png differ diff --git a/superpower19classifier-zjx/template/positive/11251.png b/superpower19classifier-zjx/template/positive/11251.png new file mode 100644 index 0000000..e8574cc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11251.png differ diff --git a/superpower19classifier-zjx/template/positive/11281.png b/superpower19classifier-zjx/template/positive/11281.png new file mode 100644 index 0000000..b4a69af Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11281.png differ diff --git a/superpower19classifier-zjx/template/positive/11291.png b/superpower19classifier-zjx/template/positive/11291.png new file mode 100644 index 0000000..069fa3d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11291.png differ diff --git a/superpower19classifier-zjx/template/positive/113.png b/superpower19classifier-zjx/template/positive/113.png new file mode 100644 index 0000000..2b04788 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/113.png differ diff --git a/superpower19classifier-zjx/template/positive/11301.png b/superpower19classifier-zjx/template/positive/11301.png new file mode 100644 index 0000000..266d91c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11301.png differ diff --git a/superpower19classifier-zjx/template/positive/1135.png b/superpower19classifier-zjx/template/positive/1135.png new file mode 100644 index 0000000..e3fbdb4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1135.png differ diff --git a/superpower19classifier-zjx/template/positive/11391.png b/superpower19classifier-zjx/template/positive/11391.png new file mode 100644 index 0000000..5e0107e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11391.png differ diff --git a/superpower19classifier-zjx/template/positive/11401.png b/superpower19classifier-zjx/template/positive/11401.png new file mode 100644 index 0000000..8dad8f2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11401.png differ diff --git a/superpower19classifier-zjx/template/positive/1145.png b/superpower19classifier-zjx/template/positive/1145.png new file mode 100644 index 0000000..deb33a2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1145.png differ diff --git a/superpower19classifier-zjx/template/positive/115.png b/superpower19classifier-zjx/template/positive/115.png new file mode 100644 index 0000000..6d87fb2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/115.png differ diff --git a/superpower19classifier-zjx/template/positive/11521.png b/superpower19classifier-zjx/template/positive/11521.png new file mode 100644 index 0000000..5897a5a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11521.png differ diff --git a/superpower19classifier-zjx/template/positive/11531.png b/superpower19classifier-zjx/template/positive/11531.png new file mode 100644 index 0000000..11ac075 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11531.png differ diff --git a/superpower19classifier-zjx/template/positive/1155.png b/superpower19classifier-zjx/template/positive/1155.png new file mode 100644 index 0000000..7cf1c32 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1155.png differ diff --git a/superpower19classifier-zjx/template/positive/11551.png b/superpower19classifier-zjx/template/positive/11551.png new file mode 100644 index 0000000..9cc3aea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11551.png differ diff --git a/superpower19classifier-zjx/template/positive/11581.png b/superpower19classifier-zjx/template/positive/11581.png new file mode 100644 index 0000000..dcad7ac Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11581.png differ diff --git a/superpower19classifier-zjx/template/positive/11591.png b/superpower19classifier-zjx/template/positive/11591.png new file mode 100644 index 0000000..d424c45 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11591.png differ diff --git a/superpower19classifier-zjx/template/positive/116.png b/superpower19classifier-zjx/template/positive/116.png new file mode 100644 index 0000000..d0e8dd8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/116.png differ diff --git a/superpower19classifier-zjx/template/positive/11621.png b/superpower19classifier-zjx/template/positive/11621.png new file mode 100644 index 0000000..7f39a82 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11621.png differ diff --git a/superpower19classifier-zjx/template/positive/1165.png b/superpower19classifier-zjx/template/positive/1165.png new file mode 100644 index 0000000..b69ff71 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1165.png differ diff --git a/superpower19classifier-zjx/template/positive/11671.png b/superpower19classifier-zjx/template/positive/11671.png new file mode 100644 index 0000000..a63c2b1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11671.png differ diff --git a/superpower19classifier-zjx/template/positive/117.png b/superpower19classifier-zjx/template/positive/117.png new file mode 100644 index 0000000..4021dc6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/117.png differ diff --git a/superpower19classifier-zjx/template/positive/11701.png b/superpower19classifier-zjx/template/positive/11701.png new file mode 100644 index 0000000..8c60ac6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11701.png differ diff --git a/superpower19classifier-zjx/template/positive/11711.png b/superpower19classifier-zjx/template/positive/11711.png new file mode 100644 index 0000000..70c787a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11711.png differ diff --git a/superpower19classifier-zjx/template/positive/11721.png b/superpower19classifier-zjx/template/positive/11721.png new file mode 100644 index 0000000..586b5fd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11721.png differ diff --git a/superpower19classifier-zjx/template/positive/11731.png b/superpower19classifier-zjx/template/positive/11731.png new file mode 100644 index 0000000..bb4beb9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11731.png differ diff --git a/superpower19classifier-zjx/template/positive/1175.png b/superpower19classifier-zjx/template/positive/1175.png new file mode 100644 index 0000000..2092571 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1175.png differ diff --git a/superpower19classifier-zjx/template/positive/11751.png b/superpower19classifier-zjx/template/positive/11751.png new file mode 100644 index 0000000..b2643df Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11751.png differ diff --git a/superpower19classifier-zjx/template/positive/11771.png b/superpower19classifier-zjx/template/positive/11771.png new file mode 100644 index 0000000..21f1614 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11771.png differ diff --git a/superpower19classifier-zjx/template/positive/11801.png b/superpower19classifier-zjx/template/positive/11801.png new file mode 100644 index 0000000..e74134c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11801.png differ diff --git a/superpower19classifier-zjx/template/positive/1185.png b/superpower19classifier-zjx/template/positive/1185.png new file mode 100644 index 0000000..deadad6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1185.png differ diff --git a/superpower19classifier-zjx/template/positive/11891.png b/superpower19classifier-zjx/template/positive/11891.png new file mode 100644 index 0000000..869aeea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11891.png differ diff --git a/superpower19classifier-zjx/template/positive/119.png b/superpower19classifier-zjx/template/positive/119.png new file mode 100644 index 0000000..38d6090 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/119.png differ diff --git a/superpower19classifier-zjx/template/positive/11921.png b/superpower19classifier-zjx/template/positive/11921.png new file mode 100644 index 0000000..40f0fa4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11921.png differ diff --git a/superpower19classifier-zjx/template/positive/1195.png b/superpower19classifier-zjx/template/positive/1195.png new file mode 100644 index 0000000..b2a547c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1195.png differ diff --git a/superpower19classifier-zjx/template/positive/11951.png b/superpower19classifier-zjx/template/positive/11951.png new file mode 100644 index 0000000..78a4d2a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11951.png differ diff --git a/superpower19classifier-zjx/template/positive/11971.png b/superpower19classifier-zjx/template/positive/11971.png new file mode 100644 index 0000000..e82bef5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/11971.png differ diff --git a/superpower19classifier-zjx/template/positive/12.png b/superpower19classifier-zjx/template/positive/12.png new file mode 100644 index 0000000..8a0603e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/12.png differ diff --git a/superpower19classifier-zjx/template/positive/120.png b/superpower19classifier-zjx/template/positive/120.png new file mode 100644 index 0000000..5add198 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/120.png differ diff --git a/superpower19classifier-zjx/template/positive/1200.png b/superpower19classifier-zjx/template/positive/1200.png new file mode 100644 index 0000000..cb9f389 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1200.png differ diff --git a/superpower19classifier-zjx/template/positive/12001.png b/superpower19classifier-zjx/template/positive/12001.png new file mode 100644 index 0000000..835f5d6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/12001.png differ diff --git a/superpower19classifier-zjx/template/positive/12011.png b/superpower19classifier-zjx/template/positive/12011.png new file mode 100644 index 0000000..8b0c816 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/12011.png differ diff --git a/superpower19classifier-zjx/template/positive/12061.png b/superpower19classifier-zjx/template/positive/12061.png new file mode 100644 index 0000000..094905e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/12061.png differ diff --git a/superpower19classifier-zjx/template/positive/1210.png b/superpower19classifier-zjx/template/positive/1210.png new file mode 100644 index 0000000..8737a0e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1210.png differ diff --git "a/superpower19classifier-zjx/template/positive/1210\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/1210\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..cd5753b Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/1210\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/12171.png b/superpower19classifier-zjx/template/positive/12171.png new file mode 100644 index 0000000..e0117eb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/12171.png differ diff --git a/superpower19classifier-zjx/template/positive/1220.png b/superpower19classifier-zjx/template/positive/1220.png new file mode 100644 index 0000000..d7243f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1220.png differ diff --git "a/superpower19classifier-zjx/template/positive/1220\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/1220\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..d4161ae Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/1220\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/12211.png b/superpower19classifier-zjx/template/positive/12211.png new file mode 100644 index 0000000..1329a71 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/12211.png differ diff --git a/superpower19classifier-zjx/template/positive/12231.png b/superpower19classifier-zjx/template/positive/12231.png new file mode 100644 index 0000000..8dfbc8b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/12231.png differ diff --git a/superpower19classifier-zjx/template/positive/123.png b/superpower19classifier-zjx/template/positive/123.png new file mode 100644 index 0000000..5136429 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/123.png differ diff --git a/superpower19classifier-zjx/template/positive/1230.png b/superpower19classifier-zjx/template/positive/1230.png new file mode 100644 index 0000000..ad17b42 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1230.png differ diff --git a/superpower19classifier-zjx/template/positive/1240.png b/superpower19classifier-zjx/template/positive/1240.png new file mode 100644 index 0000000..68d4598 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1240.png differ diff --git a/superpower19classifier-zjx/template/positive/125.png b/superpower19classifier-zjx/template/positive/125.png new file mode 100644 index 0000000..730eb46 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/125.png differ diff --git a/superpower19classifier-zjx/template/positive/1250.png b/superpower19classifier-zjx/template/positive/1250.png new file mode 100644 index 0000000..6136d01 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1250.png differ diff --git a/superpower19classifier-zjx/template/positive/1260.png b/superpower19classifier-zjx/template/positive/1260.png new file mode 100644 index 0000000..196f702 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1260.png differ diff --git "a/superpower19classifier-zjx/template/positive/1260\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/1260\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..3b40e5b Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/1260\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/1270.png b/superpower19classifier-zjx/template/positive/1270.png new file mode 100644 index 0000000..bd8e2db Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1270.png differ diff --git a/superpower19classifier-zjx/template/positive/1275.png b/superpower19classifier-zjx/template/positive/1275.png new file mode 100644 index 0000000..432f398 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1275.png differ diff --git a/superpower19classifier-zjx/template/positive/128.png b/superpower19classifier-zjx/template/positive/128.png new file mode 100644 index 0000000..227f9da Binary files /dev/null and b/superpower19classifier-zjx/template/positive/128.png differ diff --git a/superpower19classifier-zjx/template/positive/1290.png b/superpower19classifier-zjx/template/positive/1290.png new file mode 100644 index 0000000..05251a3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1290.png differ diff --git a/superpower19classifier-zjx/template/positive/13.png b/superpower19classifier-zjx/template/positive/13.png new file mode 100644 index 0000000..0a212a7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/13.png differ diff --git a/superpower19classifier-zjx/template/positive/1300.png b/superpower19classifier-zjx/template/positive/1300.png new file mode 100644 index 0000000..37da84c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1300.png differ diff --git a/superpower19classifier-zjx/template/positive/1310.png b/superpower19classifier-zjx/template/positive/1310.png new file mode 100644 index 0000000..d5a588e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1310.png differ diff --git a/superpower19classifier-zjx/template/positive/1320.png b/superpower19classifier-zjx/template/positive/1320.png new file mode 100644 index 0000000..e081530 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1320.png differ diff --git a/superpower19classifier-zjx/template/positive/1321.png b/superpower19classifier-zjx/template/positive/1321.png new file mode 100644 index 0000000..e0ded2b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1321.png differ diff --git a/superpower19classifier-zjx/template/positive/1330.png b/superpower19classifier-zjx/template/positive/1330.png new file mode 100644 index 0000000..3c2203c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1330.png differ diff --git a/superpower19classifier-zjx/template/positive/1331.png b/superpower19classifier-zjx/template/positive/1331.png new file mode 100644 index 0000000..a5014f0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1331.png differ diff --git a/superpower19classifier-zjx/template/positive/1340.png b/superpower19classifier-zjx/template/positive/1340.png new file mode 100644 index 0000000..0b8bb94 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1340.png differ diff --git a/superpower19classifier-zjx/template/positive/1341.png b/superpower19classifier-zjx/template/positive/1341.png new file mode 100644 index 0000000..0a537eb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1341.png differ diff --git a/superpower19classifier-zjx/template/positive/135.png b/superpower19classifier-zjx/template/positive/135.png new file mode 100644 index 0000000..342015c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/135.png differ diff --git a/superpower19classifier-zjx/template/positive/1350.png b/superpower19classifier-zjx/template/positive/1350.png new file mode 100644 index 0000000..7adff22 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1350.png differ diff --git a/superpower19classifier-zjx/template/positive/1351.png b/superpower19classifier-zjx/template/positive/1351.png new file mode 100644 index 0000000..ba6e515 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1351.png differ diff --git a/superpower19classifier-zjx/template/positive/136.png b/superpower19classifier-zjx/template/positive/136.png new file mode 100644 index 0000000..e91d492 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/136.png differ diff --git a/superpower19classifier-zjx/template/positive/1360.png b/superpower19classifier-zjx/template/positive/1360.png new file mode 100644 index 0000000..aadbd46 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1360.png differ diff --git "a/superpower19classifier-zjx/template/positive/1360\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/1360\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..d92b0e8 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/1360\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/1361.png b/superpower19classifier-zjx/template/positive/1361.png new file mode 100644 index 0000000..c522677 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1361.png differ diff --git a/superpower19classifier-zjx/template/positive/1370.png b/superpower19classifier-zjx/template/positive/1370.png new file mode 100644 index 0000000..5123aa1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1370.png differ diff --git a/superpower19classifier-zjx/template/positive/1371.png b/superpower19classifier-zjx/template/positive/1371.png new file mode 100644 index 0000000..1213752 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1371.png differ diff --git a/superpower19classifier-zjx/template/positive/1375.png b/superpower19classifier-zjx/template/positive/1375.png new file mode 100644 index 0000000..4a5b97f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1375.png differ diff --git a/superpower19classifier-zjx/template/positive/1380.png b/superpower19classifier-zjx/template/positive/1380.png new file mode 100644 index 0000000..79971f4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1380.png differ diff --git "a/superpower19classifier-zjx/template/positive/1380\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/1380\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..bf9f7e7 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/1380\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/1381.png b/superpower19classifier-zjx/template/positive/1381.png new file mode 100644 index 0000000..145b6f7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1381.png differ diff --git a/superpower19classifier-zjx/template/positive/1390.png b/superpower19classifier-zjx/template/positive/1390.png new file mode 100644 index 0000000..3e082c7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1390.png differ diff --git "a/superpower19classifier-zjx/template/positive/1390\347\232\204\345\211\257\346\234\254 2.png" "b/superpower19classifier-zjx/template/positive/1390\347\232\204\345\211\257\346\234\254 2.png" new file mode 100644 index 0000000..038d0fd Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/1390\347\232\204\345\211\257\346\234\254 2.png" differ diff --git "a/superpower19classifier-zjx/template/positive/1390\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/1390\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..038d0fd Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/1390\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/1391.png b/superpower19classifier-zjx/template/positive/1391.png new file mode 100644 index 0000000..8f68c05 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1391.png differ diff --git a/superpower19classifier-zjx/template/positive/140.png b/superpower19classifier-zjx/template/positive/140.png new file mode 100644 index 0000000..d0d47d9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/140.png differ diff --git a/superpower19classifier-zjx/template/positive/1400.png b/superpower19classifier-zjx/template/positive/1400.png new file mode 100644 index 0000000..a0a19f3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1400.png differ diff --git a/superpower19classifier-zjx/template/positive/1401.png b/superpower19classifier-zjx/template/positive/1401.png new file mode 100644 index 0000000..b9bf428 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1401.png differ diff --git a/superpower19classifier-zjx/template/positive/1402.png b/superpower19classifier-zjx/template/positive/1402.png new file mode 100644 index 0000000..33c349d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1402.png differ diff --git a/superpower19classifier-zjx/template/positive/1403.png b/superpower19classifier-zjx/template/positive/1403.png new file mode 100644 index 0000000..9e6ae4e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1403.png differ diff --git a/superpower19classifier-zjx/template/positive/1405.png b/superpower19classifier-zjx/template/positive/1405.png new file mode 100644 index 0000000..8f994b1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1405.png differ diff --git a/superpower19classifier-zjx/template/positive/1406.png b/superpower19classifier-zjx/template/positive/1406.png new file mode 100644 index 0000000..591bef7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1406.png differ diff --git a/superpower19classifier-zjx/template/positive/1407.png b/superpower19classifier-zjx/template/positive/1407.png new file mode 100644 index 0000000..02dbe28 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1407.png differ diff --git a/superpower19classifier-zjx/template/positive/1408.png b/superpower19classifier-zjx/template/positive/1408.png new file mode 100644 index 0000000..3aa32f9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1408.png differ diff --git a/superpower19classifier-zjx/template/positive/1410.png b/superpower19classifier-zjx/template/positive/1410.png new file mode 100644 index 0000000..5499049 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1410.png differ diff --git a/superpower19classifier-zjx/template/positive/1411.png b/superpower19classifier-zjx/template/positive/1411.png new file mode 100644 index 0000000..634b74a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1411.png differ diff --git a/superpower19classifier-zjx/template/positive/1420.png b/superpower19classifier-zjx/template/positive/1420.png new file mode 100644 index 0000000..bbf2a51 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1420.png differ diff --git a/superpower19classifier-zjx/template/positive/1421.png b/superpower19classifier-zjx/template/positive/1421.png new file mode 100644 index 0000000..83e2770 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1421.png differ diff --git a/superpower19classifier-zjx/template/positive/143.png b/superpower19classifier-zjx/template/positive/143.png new file mode 100644 index 0000000..73dbc62 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/143.png differ diff --git a/superpower19classifier-zjx/template/positive/1430.png b/superpower19classifier-zjx/template/positive/1430.png new file mode 100644 index 0000000..8db4abf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1430.png differ diff --git a/superpower19classifier-zjx/template/positive/1431.png b/superpower19classifier-zjx/template/positive/1431.png new file mode 100644 index 0000000..22c392b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1431.png differ diff --git a/superpower19classifier-zjx/template/positive/1435.png b/superpower19classifier-zjx/template/positive/1435.png new file mode 100644 index 0000000..e3f8970 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1435.png differ diff --git a/superpower19classifier-zjx/template/positive/1441.png b/superpower19classifier-zjx/template/positive/1441.png new file mode 100644 index 0000000..04e896c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1441.png differ diff --git a/superpower19classifier-zjx/template/positive/1445.png b/superpower19classifier-zjx/template/positive/1445.png new file mode 100644 index 0000000..7ab2e5d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1445.png differ diff --git a/superpower19classifier-zjx/template/positive/145.png b/superpower19classifier-zjx/template/positive/145.png new file mode 100644 index 0000000..b0db789 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/145.png differ diff --git a/superpower19classifier-zjx/template/positive/1451.png b/superpower19classifier-zjx/template/positive/1451.png new file mode 100644 index 0000000..da11eab Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1451.png differ diff --git a/superpower19classifier-zjx/template/positive/1455.png b/superpower19classifier-zjx/template/positive/1455.png new file mode 100644 index 0000000..bb4f777 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1455.png differ diff --git a/superpower19classifier-zjx/template/positive/1460.png b/superpower19classifier-zjx/template/positive/1460.png new file mode 100644 index 0000000..3da9a9b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1460.png differ diff --git a/superpower19classifier-zjx/template/positive/1470.png b/superpower19classifier-zjx/template/positive/1470.png new file mode 100644 index 0000000..93e1bde Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1470.png differ diff --git a/superpower19classifier-zjx/template/positive/1480.png b/superpower19classifier-zjx/template/positive/1480.png new file mode 100644 index 0000000..7e9f79b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1480.png differ diff --git a/superpower19classifier-zjx/template/positive/1490.png b/superpower19classifier-zjx/template/positive/1490.png new file mode 100644 index 0000000..5d7e0c8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1490.png differ diff --git a/superpower19classifier-zjx/template/positive/1495.png b/superpower19classifier-zjx/template/positive/1495.png new file mode 100644 index 0000000..02afc5e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1495.png differ diff --git a/superpower19classifier-zjx/template/positive/15.png b/superpower19classifier-zjx/template/positive/15.png new file mode 100644 index 0000000..5fc37c6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/15.png differ diff --git a/superpower19classifier-zjx/template/positive/150.png b/superpower19classifier-zjx/template/positive/150.png new file mode 100644 index 0000000..0c932d2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/150.png differ diff --git a/superpower19classifier-zjx/template/positive/1505.png b/superpower19classifier-zjx/template/positive/1505.png new file mode 100644 index 0000000..b0f56a8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1505.png differ diff --git a/superpower19classifier-zjx/template/positive/1515.png b/superpower19classifier-zjx/template/positive/1515.png new file mode 100644 index 0000000..9e8dcc6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1515.png differ diff --git a/superpower19classifier-zjx/template/positive/1519.png b/superpower19classifier-zjx/template/positive/1519.png new file mode 100644 index 0000000..febaf21 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1519.png differ diff --git a/superpower19classifier-zjx/template/positive/1525.png b/superpower19classifier-zjx/template/positive/1525.png new file mode 100644 index 0000000..9b6320e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1525.png differ diff --git a/superpower19classifier-zjx/template/positive/1529.png b/superpower19classifier-zjx/template/positive/1529.png new file mode 100644 index 0000000..ea6316d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1529.png differ diff --git a/superpower19classifier-zjx/template/positive/1530.png b/superpower19classifier-zjx/template/positive/1530.png new file mode 100644 index 0000000..d10c787 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1530.png differ diff --git a/superpower19classifier-zjx/template/positive/1535.png b/superpower19classifier-zjx/template/positive/1535.png new file mode 100644 index 0000000..65cc6df Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1535.png differ diff --git a/superpower19classifier-zjx/template/positive/154.png b/superpower19classifier-zjx/template/positive/154.png new file mode 100644 index 0000000..82227e7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/154.png differ diff --git a/superpower19classifier-zjx/template/positive/1540.png b/superpower19classifier-zjx/template/positive/1540.png new file mode 100644 index 0000000..dd56c74 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1540.png differ diff --git a/superpower19classifier-zjx/template/positive/1550.png b/superpower19classifier-zjx/template/positive/1550.png new file mode 100644 index 0000000..215933e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1550.png differ diff --git a/superpower19classifier-zjx/template/positive/156.png b/superpower19classifier-zjx/template/positive/156.png new file mode 100644 index 0000000..af90537 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/156.png differ diff --git a/superpower19classifier-zjx/template/positive/1560.png b/superpower19classifier-zjx/template/positive/1560.png new file mode 100644 index 0000000..ad159f1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1560.png differ diff --git a/superpower19classifier-zjx/template/positive/1570.png b/superpower19classifier-zjx/template/positive/1570.png new file mode 100644 index 0000000..f3c82b7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1570.png differ diff --git a/superpower19classifier-zjx/template/positive/1575.png b/superpower19classifier-zjx/template/positive/1575.png new file mode 100644 index 0000000..970b1c0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1575.png differ diff --git a/superpower19classifier-zjx/template/positive/1585.png b/superpower19classifier-zjx/template/positive/1585.png new file mode 100644 index 0000000..00bd218 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1585.png differ diff --git a/superpower19classifier-zjx/template/positive/1595.png b/superpower19classifier-zjx/template/positive/1595.png new file mode 100644 index 0000000..4a33be8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1595.png differ diff --git a/superpower19classifier-zjx/template/positive/161.png b/superpower19classifier-zjx/template/positive/161.png new file mode 100644 index 0000000..5694d9a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/161.png differ diff --git a/superpower19classifier-zjx/template/positive/1610.png b/superpower19classifier-zjx/template/positive/1610.png new file mode 100644 index 0000000..498946a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1610.png differ diff --git a/superpower19classifier-zjx/template/positive/1635.png b/superpower19classifier-zjx/template/positive/1635.png new file mode 100644 index 0000000..71994f1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1635.png differ diff --git a/superpower19classifier-zjx/template/positive/1640.png b/superpower19classifier-zjx/template/positive/1640.png new file mode 100644 index 0000000..219fc6c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1640.png differ diff --git a/superpower19classifier-zjx/template/positive/165.png b/superpower19classifier-zjx/template/positive/165.png new file mode 100644 index 0000000..598a652 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/165.png differ diff --git a/superpower19classifier-zjx/template/positive/168.png b/superpower19classifier-zjx/template/positive/168.png new file mode 100644 index 0000000..fe41117 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/168.png differ diff --git a/superpower19classifier-zjx/template/positive/17.png b/superpower19classifier-zjx/template/positive/17.png new file mode 100644 index 0000000..e6ed7f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/17.png differ diff --git a/superpower19classifier-zjx/template/positive/1730.png b/superpower19classifier-zjx/template/positive/1730.png new file mode 100644 index 0000000..b3fcb11 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1730.png differ diff --git a/superpower19classifier-zjx/template/positive/174.png b/superpower19classifier-zjx/template/positive/174.png new file mode 100644 index 0000000..c2c63cf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/174.png differ diff --git a/superpower19classifier-zjx/template/positive/1740.png b/superpower19classifier-zjx/template/positive/1740.png new file mode 100644 index 0000000..91a61e5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1740.png differ diff --git a/superpower19classifier-zjx/template/positive/1750.png b/superpower19classifier-zjx/template/positive/1750.png new file mode 100644 index 0000000..7772c91 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1750.png differ diff --git a/superpower19classifier-zjx/template/positive/1760.png b/superpower19classifier-zjx/template/positive/1760.png new file mode 100644 index 0000000..7d9f2d8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1760.png differ diff --git a/superpower19classifier-zjx/template/positive/1765.png b/superpower19classifier-zjx/template/positive/1765.png new file mode 100644 index 0000000..622bccf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1765.png differ diff --git a/superpower19classifier-zjx/template/positive/1770.png b/superpower19classifier-zjx/template/positive/1770.png new file mode 100644 index 0000000..a09ab26 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1770.png differ diff --git a/superpower19classifier-zjx/template/positive/1780.png b/superpower19classifier-zjx/template/positive/1780.png new file mode 100644 index 0000000..dae5722 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1780.png differ diff --git a/superpower19classifier-zjx/template/positive/1790.png b/superpower19classifier-zjx/template/positive/1790.png new file mode 100644 index 0000000..d3e3828 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1790.png differ diff --git a/superpower19classifier-zjx/template/positive/18.png b/superpower19classifier-zjx/template/positive/18.png new file mode 100644 index 0000000..f09aa00 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/18.png differ diff --git a/superpower19classifier-zjx/template/positive/180.png b/superpower19classifier-zjx/template/positive/180.png new file mode 100644 index 0000000..0ea6a0b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/180.png differ diff --git a/superpower19classifier-zjx/template/positive/1800.png b/superpower19classifier-zjx/template/positive/1800.png new file mode 100644 index 0000000..d6eda40 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1800.png differ diff --git a/superpower19classifier-zjx/template/positive/181.png b/superpower19classifier-zjx/template/positive/181.png new file mode 100644 index 0000000..11acde0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/181.png differ diff --git a/superpower19classifier-zjx/template/positive/1810.png b/superpower19classifier-zjx/template/positive/1810.png new file mode 100644 index 0000000..dc77c32 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1810.png differ diff --git a/superpower19classifier-zjx/template/positive/1820.png b/superpower19classifier-zjx/template/positive/1820.png new file mode 100644 index 0000000..f3fc7cc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1820.png differ diff --git a/superpower19classifier-zjx/template/positive/1835.png b/superpower19classifier-zjx/template/positive/1835.png new file mode 100644 index 0000000..5c9411d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1835.png differ diff --git a/superpower19classifier-zjx/template/positive/184.png b/superpower19classifier-zjx/template/positive/184.png new file mode 100644 index 0000000..bc2e302 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/184.png differ diff --git a/superpower19classifier-zjx/template/positive/1845.png b/superpower19classifier-zjx/template/positive/1845.png new file mode 100644 index 0000000..c0572fa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/1845.png differ diff --git a/superpower19classifier-zjx/template/positive/185.png b/superpower19classifier-zjx/template/positive/185.png new file mode 100644 index 0000000..029506a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/185.png differ diff --git a/superpower19classifier-zjx/template/positive/189.png b/superpower19classifier-zjx/template/positive/189.png new file mode 100644 index 0000000..f5738cd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/189.png differ diff --git a/superpower19classifier-zjx/template/positive/190.png b/superpower19classifier-zjx/template/positive/190.png new file mode 100644 index 0000000..e73f481 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/190.png differ diff --git a/superpower19classifier-zjx/template/positive/192.png b/superpower19classifier-zjx/template/positive/192.png new file mode 100644 index 0000000..89c57ab Binary files /dev/null and b/superpower19classifier-zjx/template/positive/192.png differ diff --git a/superpower19classifier-zjx/template/positive/194.png b/superpower19classifier-zjx/template/positive/194.png new file mode 100644 index 0000000..b69a898 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/194.png differ diff --git a/superpower19classifier-zjx/template/positive/198.png b/superpower19classifier-zjx/template/positive/198.png new file mode 100644 index 0000000..f24c29e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/198.png differ diff --git a/superpower19classifier-zjx/template/positive/20.png b/superpower19classifier-zjx/template/positive/20.png new file mode 100644 index 0000000..1db6f9a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/20.png differ diff --git a/superpower19classifier-zjx/template/positive/200.png b/superpower19classifier-zjx/template/positive/200.png new file mode 100644 index 0000000..08767d0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/200.png differ diff --git a/superpower19classifier-zjx/template/positive/2003.png b/superpower19classifier-zjx/template/positive/2003.png new file mode 100644 index 0000000..7656c44 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2003.png differ diff --git a/superpower19classifier-zjx/template/positive/201.png b/superpower19classifier-zjx/template/positive/201.png new file mode 100644 index 0000000..a27d803 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/201.png differ diff --git a/superpower19classifier-zjx/template/positive/2014.png b/superpower19classifier-zjx/template/positive/2014.png new file mode 100644 index 0000000..481c3dd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2014.png differ diff --git a/superpower19classifier-zjx/template/positive/205.png b/superpower19classifier-zjx/template/positive/205.png new file mode 100644 index 0000000..c991230 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/205.png differ diff --git a/superpower19classifier-zjx/template/positive/208.png b/superpower19classifier-zjx/template/positive/208.png new file mode 100644 index 0000000..eafb8c7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/208.png differ diff --git a/superpower19classifier-zjx/template/positive/210.png b/superpower19classifier-zjx/template/positive/210.png new file mode 100644 index 0000000..c64c43f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/210.png differ diff --git a/superpower19classifier-zjx/template/positive/2105.png b/superpower19classifier-zjx/template/positive/2105.png new file mode 100644 index 0000000..aa2aff7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2105.png differ diff --git a/superpower19classifier-zjx/template/positive/212.png b/superpower19classifier-zjx/template/positive/212.png new file mode 100644 index 0000000..fa379c3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/212.png differ diff --git a/superpower19classifier-zjx/template/positive/2120.png b/superpower19classifier-zjx/template/positive/2120.png new file mode 100644 index 0000000..738c98b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2120.png differ diff --git a/superpower19classifier-zjx/template/positive/2145.png b/superpower19classifier-zjx/template/positive/2145.png new file mode 100644 index 0000000..9cb7946 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2145.png differ diff --git a/superpower19classifier-zjx/template/positive/215.png b/superpower19classifier-zjx/template/positive/215.png new file mode 100644 index 0000000..ed13365 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/215.png differ diff --git a/superpower19classifier-zjx/template/positive/218.png b/superpower19classifier-zjx/template/positive/218.png new file mode 100644 index 0000000..cfda253 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/218.png differ diff --git a/superpower19classifier-zjx/template/positive/219.png b/superpower19classifier-zjx/template/positive/219.png new file mode 100644 index 0000000..408d315 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/219.png differ diff --git a/superpower19classifier-zjx/template/positive/220.png b/superpower19classifier-zjx/template/positive/220.png new file mode 100644 index 0000000..fc0a754 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/220.png differ diff --git a/superpower19classifier-zjx/template/positive/221.png b/superpower19classifier-zjx/template/positive/221.png new file mode 100644 index 0000000..e4d468f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/221.png differ diff --git a/superpower19classifier-zjx/template/positive/223.png b/superpower19classifier-zjx/template/positive/223.png new file mode 100644 index 0000000..36e7300 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/223.png differ diff --git a/superpower19classifier-zjx/template/positive/225.png b/superpower19classifier-zjx/template/positive/225.png new file mode 100644 index 0000000..17c3740 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/225.png differ diff --git a/superpower19classifier-zjx/template/positive/230.png b/superpower19classifier-zjx/template/positive/230.png new file mode 100644 index 0000000..b9ac86b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/230.png differ diff --git a/superpower19classifier-zjx/template/positive/234.png b/superpower19classifier-zjx/template/positive/234.png new file mode 100644 index 0000000..1d2de54 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/234.png differ diff --git a/superpower19classifier-zjx/template/positive/2340.png b/superpower19classifier-zjx/template/positive/2340.png new file mode 100644 index 0000000..c7474c4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2340.png differ diff --git "a/superpower19classifier-zjx/template/positive/2340\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/2340\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..c7474c4 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/2340\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/2345.png b/superpower19classifier-zjx/template/positive/2345.png new file mode 100644 index 0000000..37917fd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2345.png differ diff --git "a/superpower19classifier-zjx/template/positive/2345\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/2345\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..37917fd Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/2345\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/238.png b/superpower19classifier-zjx/template/positive/238.png new file mode 100644 index 0000000..854764b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/238.png differ diff --git a/superpower19classifier-zjx/template/positive/240.png b/superpower19classifier-zjx/template/positive/240.png new file mode 100644 index 0000000..3fbf23a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/240.png differ diff --git a/superpower19classifier-zjx/template/positive/241.png b/superpower19classifier-zjx/template/positive/241.png new file mode 100644 index 0000000..7b05cb3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/241.png differ diff --git a/superpower19classifier-zjx/template/positive/243.png b/superpower19classifier-zjx/template/positive/243.png new file mode 100644 index 0000000..188ea6f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/243.png differ diff --git a/superpower19classifier-zjx/template/positive/245.png b/superpower19classifier-zjx/template/positive/245.png new file mode 100644 index 0000000..51e3046 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/245.png differ diff --git a/superpower19classifier-zjx/template/positive/249.png b/superpower19classifier-zjx/template/positive/249.png new file mode 100644 index 0000000..ca6e35f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/249.png differ diff --git a/superpower19classifier-zjx/template/positive/25.png b/superpower19classifier-zjx/template/positive/25.png new file mode 100644 index 0000000..4fba43f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/25.png differ diff --git a/superpower19classifier-zjx/template/positive/250.png b/superpower19classifier-zjx/template/positive/250.png new file mode 100644 index 0000000..7af89a1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/250.png differ diff --git a/superpower19classifier-zjx/template/positive/2545.png b/superpower19classifier-zjx/template/positive/2545.png new file mode 100644 index 0000000..165a3db Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2545.png differ diff --git a/superpower19classifier-zjx/template/positive/2560.png b/superpower19classifier-zjx/template/positive/2560.png new file mode 100644 index 0000000..004a80b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2560.png differ diff --git a/superpower19classifier-zjx/template/positive/257.png b/superpower19classifier-zjx/template/positive/257.png new file mode 100644 index 0000000..b595c7f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/257.png differ diff --git a/superpower19classifier-zjx/template/positive/26.png b/superpower19classifier-zjx/template/positive/26.png new file mode 100644 index 0000000..275df76 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/26.png differ diff --git a/superpower19classifier-zjx/template/positive/260.png b/superpower19classifier-zjx/template/positive/260.png new file mode 100644 index 0000000..d8d8949 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/260.png differ diff --git a/superpower19classifier-zjx/template/positive/2605.png b/superpower19classifier-zjx/template/positive/2605.png new file mode 100644 index 0000000..77a49eb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2605.png differ diff --git a/superpower19classifier-zjx/template/positive/262.png b/superpower19classifier-zjx/template/positive/262.png new file mode 100644 index 0000000..972642d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/262.png differ diff --git a/superpower19classifier-zjx/template/positive/2640.png b/superpower19classifier-zjx/template/positive/2640.png new file mode 100644 index 0000000..5e86343 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2640.png differ diff --git a/superpower19classifier-zjx/template/positive/265.png b/superpower19classifier-zjx/template/positive/265.png new file mode 100644 index 0000000..c4485f4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/265.png differ diff --git a/superpower19classifier-zjx/template/positive/2675.png b/superpower19classifier-zjx/template/positive/2675.png new file mode 100644 index 0000000..f38ffe3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2675.png differ diff --git a/superpower19classifier-zjx/template/positive/2690.png b/superpower19classifier-zjx/template/positive/2690.png new file mode 100644 index 0000000..c0a0c48 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2690.png differ diff --git a/superpower19classifier-zjx/template/positive/270.png b/superpower19classifier-zjx/template/positive/270.png new file mode 100644 index 0000000..7ea658d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/270.png differ diff --git a/superpower19classifier-zjx/template/positive/273.png b/superpower19classifier-zjx/template/positive/273.png new file mode 100644 index 0000000..32a3084 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/273.png differ diff --git a/superpower19classifier-zjx/template/positive/277.png b/superpower19classifier-zjx/template/positive/277.png new file mode 100644 index 0000000..0bb593e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/277.png differ diff --git a/superpower19classifier-zjx/template/positive/278.png b/superpower19classifier-zjx/template/positive/278.png new file mode 100644 index 0000000..695f761 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/278.png differ diff --git a/superpower19classifier-zjx/template/positive/2790.png b/superpower19classifier-zjx/template/positive/2790.png new file mode 100644 index 0000000..1a260b1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/2790.png differ diff --git a/superpower19classifier-zjx/template/positive/28.png b/superpower19classifier-zjx/template/positive/28.png new file mode 100644 index 0000000..0a2d2d0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/28.png differ diff --git a/superpower19classifier-zjx/template/positive/283.png b/superpower19classifier-zjx/template/positive/283.png new file mode 100644 index 0000000..398d376 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/283.png differ diff --git a/superpower19classifier-zjx/template/positive/285.png b/superpower19classifier-zjx/template/positive/285.png new file mode 100644 index 0000000..e65fdbb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/285.png differ diff --git a/superpower19classifier-zjx/template/positive/287.png b/superpower19classifier-zjx/template/positive/287.png new file mode 100644 index 0000000..74e0e83 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/287.png differ diff --git a/superpower19classifier-zjx/template/positive/288.png b/superpower19classifier-zjx/template/positive/288.png new file mode 100644 index 0000000..80d8842 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/288.png differ diff --git a/superpower19classifier-zjx/template/positive/289.png b/superpower19classifier-zjx/template/positive/289.png new file mode 100644 index 0000000..c22af3f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/289.png differ diff --git a/superpower19classifier-zjx/template/positive/290.png b/superpower19classifier-zjx/template/positive/290.png new file mode 100644 index 0000000..eb9a4f3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/290.png differ diff --git a/superpower19classifier-zjx/template/positive/291.png b/superpower19classifier-zjx/template/positive/291.png new file mode 100644 index 0000000..3f6e722 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/291.png differ diff --git a/superpower19classifier-zjx/template/positive/292.png b/superpower19classifier-zjx/template/positive/292.png new file mode 100644 index 0000000..bd608ff Binary files /dev/null and b/superpower19classifier-zjx/template/positive/292.png differ diff --git a/superpower19classifier-zjx/template/positive/293.png b/superpower19classifier-zjx/template/positive/293.png new file mode 100644 index 0000000..b7bb1c0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/293.png differ diff --git a/superpower19classifier-zjx/template/positive/294.png b/superpower19classifier-zjx/template/positive/294.png new file mode 100644 index 0000000..9c17eb3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/294.png differ diff --git a/superpower19classifier-zjx/template/positive/295.png b/superpower19classifier-zjx/template/positive/295.png new file mode 100644 index 0000000..05e58bd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/295.png differ diff --git a/superpower19classifier-zjx/template/positive/296.png b/superpower19classifier-zjx/template/positive/296.png new file mode 100644 index 0000000..5400118 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/296.png differ diff --git a/superpower19classifier-zjx/template/positive/297.png b/superpower19classifier-zjx/template/positive/297.png new file mode 100644 index 0000000..b4380c5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/297.png differ diff --git a/superpower19classifier-zjx/template/positive/298.png b/superpower19classifier-zjx/template/positive/298.png new file mode 100644 index 0000000..91a08f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/298.png differ diff --git a/superpower19classifier-zjx/template/positive/299.png b/superpower19classifier-zjx/template/positive/299.png new file mode 100644 index 0000000..793f6b3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/299.png differ diff --git a/superpower19classifier-zjx/template/positive/30.png b/superpower19classifier-zjx/template/positive/30.png new file mode 100644 index 0000000..bccc02f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/30.png differ diff --git a/superpower19classifier-zjx/template/positive/300.png b/superpower19classifier-zjx/template/positive/300.png new file mode 100644 index 0000000..7fdea4d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/300.png differ diff --git a/superpower19classifier-zjx/template/positive/302.png b/superpower19classifier-zjx/template/positive/302.png new file mode 100644 index 0000000..e54c2e9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/302.png differ diff --git a/superpower19classifier-zjx/template/positive/305.png b/superpower19classifier-zjx/template/positive/305.png new file mode 100644 index 0000000..6b73c42 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/305.png differ diff --git a/superpower19classifier-zjx/template/positive/3050.png b/superpower19classifier-zjx/template/positive/3050.png new file mode 100644 index 0000000..56f8f32 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3050.png differ diff --git a/superpower19classifier-zjx/template/positive/3060.png b/superpower19classifier-zjx/template/positive/3060.png new file mode 100644 index 0000000..3a9d7e0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3060.png differ diff --git "a/superpower19classifier-zjx/template/positive/3060\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3060\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..3a9d7e0 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3060\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/3070.png b/superpower19classifier-zjx/template/positive/3070.png new file mode 100644 index 0000000..ca6151b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3070.png differ diff --git "a/superpower19classifier-zjx/template/positive/3070\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3070\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..ca6151b Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3070\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/308.png b/superpower19classifier-zjx/template/positive/308.png new file mode 100644 index 0000000..87c797a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/308.png differ diff --git a/superpower19classifier-zjx/template/positive/3080.png b/superpower19classifier-zjx/template/positive/3080.png new file mode 100644 index 0000000..bd1191e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3080.png differ diff --git "a/superpower19classifier-zjx/template/positive/3080\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3080\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..bd1191e Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3080\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/310.png b/superpower19classifier-zjx/template/positive/310.png new file mode 100644 index 0000000..d750d71 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/310.png differ diff --git a/superpower19classifier-zjx/template/positive/311.png b/superpower19classifier-zjx/template/positive/311.png new file mode 100644 index 0000000..d130690 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/311.png differ diff --git a/superpower19classifier-zjx/template/positive/3125.png b/superpower19classifier-zjx/template/positive/3125.png new file mode 100644 index 0000000..5a32878 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3125.png differ diff --git "a/superpower19classifier-zjx/template/positive/3125\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3125\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..5a32878 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3125\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/3145.png b/superpower19classifier-zjx/template/positive/3145.png new file mode 100644 index 0000000..82bf277 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3145.png differ diff --git "a/superpower19classifier-zjx/template/positive/3145\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3145\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..82bf277 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3145\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/315.png b/superpower19classifier-zjx/template/positive/315.png new file mode 100644 index 0000000..72344b2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/315.png differ diff --git a/superpower19classifier-zjx/template/positive/317.png b/superpower19classifier-zjx/template/positive/317.png new file mode 100644 index 0000000..7f73d8f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/317.png differ diff --git a/superpower19classifier-zjx/template/positive/319.png b/superpower19classifier-zjx/template/positive/319.png new file mode 100644 index 0000000..9417670 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/319.png differ diff --git a/superpower19classifier-zjx/template/positive/32.png b/superpower19classifier-zjx/template/positive/32.png new file mode 100644 index 0000000..c3c424a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/32.png differ diff --git a/superpower19classifier-zjx/template/positive/320.png b/superpower19classifier-zjx/template/positive/320.png new file mode 100644 index 0000000..fd6f708 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/320.png differ diff --git a/superpower19classifier-zjx/template/positive/322.png b/superpower19classifier-zjx/template/positive/322.png new file mode 100644 index 0000000..89d3a34 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/322.png differ diff --git a/superpower19classifier-zjx/template/positive/3248.png b/superpower19classifier-zjx/template/positive/3248.png new file mode 100644 index 0000000..831b1c7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3248.png differ diff --git a/superpower19classifier-zjx/template/positive/325.png b/superpower19classifier-zjx/template/positive/325.png new file mode 100644 index 0000000..290639a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/325.png differ diff --git a/superpower19classifier-zjx/template/positive/3251.png b/superpower19classifier-zjx/template/positive/3251.png new file mode 100644 index 0000000..258b217 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3251.png differ diff --git a/superpower19classifier-zjx/template/positive/3253.png b/superpower19classifier-zjx/template/positive/3253.png new file mode 100644 index 0000000..e1f4572 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3253.png differ diff --git a/superpower19classifier-zjx/template/positive/3256.png b/superpower19classifier-zjx/template/positive/3256.png new file mode 100644 index 0000000..4e9f82d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3256.png differ diff --git a/superpower19classifier-zjx/template/positive/3259.png b/superpower19classifier-zjx/template/positive/3259.png new file mode 100644 index 0000000..957660a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3259.png differ diff --git a/superpower19classifier-zjx/template/positive/326.png b/superpower19classifier-zjx/template/positive/326.png new file mode 100644 index 0000000..56580ef Binary files /dev/null and b/superpower19classifier-zjx/template/positive/326.png differ diff --git a/superpower19classifier-zjx/template/positive/3262.png b/superpower19classifier-zjx/template/positive/3262.png new file mode 100644 index 0000000..69fbd6f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3262.png differ diff --git a/superpower19classifier-zjx/template/positive/3265.png b/superpower19classifier-zjx/template/positive/3265.png new file mode 100644 index 0000000..3f0e97c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3265.png differ diff --git a/superpower19classifier-zjx/template/positive/3268.png b/superpower19classifier-zjx/template/positive/3268.png new file mode 100644 index 0000000..6e67160 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3268.png differ diff --git a/superpower19classifier-zjx/template/positive/3271.png b/superpower19classifier-zjx/template/positive/3271.png new file mode 100644 index 0000000..8b14720 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3271.png differ diff --git a/superpower19classifier-zjx/template/positive/3274.png b/superpower19classifier-zjx/template/positive/3274.png new file mode 100644 index 0000000..a661e66 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3274.png differ diff --git a/superpower19classifier-zjx/template/positive/3277.png b/superpower19classifier-zjx/template/positive/3277.png new file mode 100644 index 0000000..9b8ed06 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3277.png differ diff --git a/superpower19classifier-zjx/template/positive/328.png b/superpower19classifier-zjx/template/positive/328.png new file mode 100644 index 0000000..0b996f5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/328.png differ diff --git a/superpower19classifier-zjx/template/positive/3280.png b/superpower19classifier-zjx/template/positive/3280.png new file mode 100644 index 0000000..de475a2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3280.png differ diff --git a/superpower19classifier-zjx/template/positive/3282.png b/superpower19classifier-zjx/template/positive/3282.png new file mode 100644 index 0000000..6155de6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3282.png differ diff --git a/superpower19classifier-zjx/template/positive/3284.png b/superpower19classifier-zjx/template/positive/3284.png new file mode 100644 index 0000000..7a1660e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3284.png differ diff --git a/superpower19classifier-zjx/template/positive/3287.png b/superpower19classifier-zjx/template/positive/3287.png new file mode 100644 index 0000000..d1a32c9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3287.png differ diff --git a/superpower19classifier-zjx/template/positive/3290.png b/superpower19classifier-zjx/template/positive/3290.png new file mode 100644 index 0000000..5197567 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3290.png differ diff --git a/superpower19classifier-zjx/template/positive/3293.png b/superpower19classifier-zjx/template/positive/3293.png new file mode 100644 index 0000000..f8f1814 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3293.png differ diff --git a/superpower19classifier-zjx/template/positive/3296.png b/superpower19classifier-zjx/template/positive/3296.png new file mode 100644 index 0000000..9f6ae9e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3296.png differ diff --git a/superpower19classifier-zjx/template/positive/3299.png b/superpower19classifier-zjx/template/positive/3299.png new file mode 100644 index 0000000..7673ec2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3299.png differ diff --git a/superpower19classifier-zjx/template/positive/330.png b/superpower19classifier-zjx/template/positive/330.png new file mode 100644 index 0000000..370ac47 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/330.png differ diff --git a/superpower19classifier-zjx/template/positive/3302.png b/superpower19classifier-zjx/template/positive/3302.png new file mode 100644 index 0000000..e1129e0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3302.png differ diff --git a/superpower19classifier-zjx/template/positive/3305.png b/superpower19classifier-zjx/template/positive/3305.png new file mode 100644 index 0000000..055ad45 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3305.png differ diff --git a/superpower19classifier-zjx/template/positive/333.png b/superpower19classifier-zjx/template/positive/333.png new file mode 100644 index 0000000..18b4b93 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/333.png differ diff --git a/superpower19classifier-zjx/template/positive/337.png b/superpower19classifier-zjx/template/positive/337.png new file mode 100644 index 0000000..6babfb3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/337.png differ diff --git a/superpower19classifier-zjx/template/positive/34.png b/superpower19classifier-zjx/template/positive/34.png new file mode 100644 index 0000000..b117dbf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/34.png differ diff --git a/superpower19classifier-zjx/template/positive/340.png b/superpower19classifier-zjx/template/positive/340.png new file mode 100644 index 0000000..b072d77 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/340.png differ diff --git a/superpower19classifier-zjx/template/positive/3425.png b/superpower19classifier-zjx/template/positive/3425.png new file mode 100644 index 0000000..51becb3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3425.png differ diff --git a/superpower19classifier-zjx/template/positive/3430.png b/superpower19classifier-zjx/template/positive/3430.png new file mode 100644 index 0000000..47ac9cd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3430.png differ diff --git "a/superpower19classifier-zjx/template/positive/3430\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3430\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..47ac9cd Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3430\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/344.png b/superpower19classifier-zjx/template/positive/344.png new file mode 100644 index 0000000..33ce121 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/344.png differ diff --git a/superpower19classifier-zjx/template/positive/345.png b/superpower19classifier-zjx/template/positive/345.png new file mode 100644 index 0000000..73c2ea0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/345.png differ diff --git a/superpower19classifier-zjx/template/positive/3450.png b/superpower19classifier-zjx/template/positive/3450.png new file mode 100644 index 0000000..4aadd63 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3450.png differ diff --git "a/superpower19classifier-zjx/template/positive/3450\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3450\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..4aadd63 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3450\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/346.png b/superpower19classifier-zjx/template/positive/346.png new file mode 100644 index 0000000..15b7de3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/346.png differ diff --git a/superpower19classifier-zjx/template/positive/3465.png b/superpower19classifier-zjx/template/positive/3465.png new file mode 100644 index 0000000..d5efbf9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3465.png differ diff --git a/superpower19classifier-zjx/template/positive/347.png b/superpower19classifier-zjx/template/positive/347.png new file mode 100644 index 0000000..b8d4928 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/347.png differ diff --git a/superpower19classifier-zjx/template/positive/35.png b/superpower19classifier-zjx/template/positive/35.png new file mode 100644 index 0000000..3325284 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/35.png differ diff --git a/superpower19classifier-zjx/template/positive/350.png b/superpower19classifier-zjx/template/positive/350.png new file mode 100644 index 0000000..d081448 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/350.png differ diff --git a/superpower19classifier-zjx/template/positive/3525.png b/superpower19classifier-zjx/template/positive/3525.png new file mode 100644 index 0000000..72c0148 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3525.png differ diff --git "a/superpower19classifier-zjx/template/positive/3525\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3525\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..72c0148 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3525\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/354.png b/superpower19classifier-zjx/template/positive/354.png new file mode 100644 index 0000000..e0c1cdb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/354.png differ diff --git a/superpower19classifier-zjx/template/positive/3550.png b/superpower19classifier-zjx/template/positive/3550.png new file mode 100644 index 0000000..0afa81d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3550.png differ diff --git "a/superpower19classifier-zjx/template/positive/3550\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3550\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..0afa81d Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3550\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/356.png b/superpower19classifier-zjx/template/positive/356.png new file mode 100644 index 0000000..9738954 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/356.png differ diff --git a/superpower19classifier-zjx/template/positive/3560.png b/superpower19classifier-zjx/template/positive/3560.png new file mode 100644 index 0000000..a584695 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3560.png differ diff --git a/superpower19classifier-zjx/template/positive/3562.png b/superpower19classifier-zjx/template/positive/3562.png new file mode 100644 index 0000000..7d96995 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3562.png differ diff --git a/superpower19classifier-zjx/template/positive/3565.png b/superpower19classifier-zjx/template/positive/3565.png new file mode 100644 index 0000000..400cb2e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3565.png differ diff --git a/superpower19classifier-zjx/template/positive/3568.png b/superpower19classifier-zjx/template/positive/3568.png new file mode 100644 index 0000000..60e86b0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3568.png differ diff --git a/superpower19classifier-zjx/template/positive/3570.png b/superpower19classifier-zjx/template/positive/3570.png new file mode 100644 index 0000000..d66194b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3570.png differ diff --git a/superpower19classifier-zjx/template/positive/3573.png b/superpower19classifier-zjx/template/positive/3573.png new file mode 100644 index 0000000..edc9ff1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3573.png differ diff --git a/superpower19classifier-zjx/template/positive/3576.png b/superpower19classifier-zjx/template/positive/3576.png new file mode 100644 index 0000000..d794fb6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3576.png differ diff --git a/superpower19classifier-zjx/template/positive/3579.png b/superpower19classifier-zjx/template/positive/3579.png new file mode 100644 index 0000000..6cb90ef Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3579.png differ diff --git a/superpower19classifier-zjx/template/positive/358.png b/superpower19classifier-zjx/template/positive/358.png new file mode 100644 index 0000000..8e064d4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/358.png differ diff --git a/superpower19classifier-zjx/template/positive/3582.png b/superpower19classifier-zjx/template/positive/3582.png new file mode 100644 index 0000000..27a1b87 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3582.png differ diff --git a/superpower19classifier-zjx/template/positive/3585.png b/superpower19classifier-zjx/template/positive/3585.png new file mode 100644 index 0000000..3fe5aa9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3585.png differ diff --git a/superpower19classifier-zjx/template/positive/3588.png b/superpower19classifier-zjx/template/positive/3588.png new file mode 100644 index 0000000..e39016d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3588.png differ diff --git a/superpower19classifier-zjx/template/positive/3591.png b/superpower19classifier-zjx/template/positive/3591.png new file mode 100644 index 0000000..dee437d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3591.png differ diff --git a/superpower19classifier-zjx/template/positive/3594.png b/superpower19classifier-zjx/template/positive/3594.png new file mode 100644 index 0000000..740beae Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3594.png differ diff --git a/superpower19classifier-zjx/template/positive/3597.png b/superpower19classifier-zjx/template/positive/3597.png new file mode 100644 index 0000000..1518434 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3597.png differ diff --git a/superpower19classifier-zjx/template/positive/3599.png b/superpower19classifier-zjx/template/positive/3599.png new file mode 100644 index 0000000..91b3aa9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3599.png differ diff --git a/superpower19classifier-zjx/template/positive/360.png b/superpower19classifier-zjx/template/positive/360.png new file mode 100644 index 0000000..d088dc1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/360.png differ diff --git a/superpower19classifier-zjx/template/positive/362.png b/superpower19classifier-zjx/template/positive/362.png new file mode 100644 index 0000000..86e0dda Binary files /dev/null and b/superpower19classifier-zjx/template/positive/362.png differ diff --git a/superpower19classifier-zjx/template/positive/3630.png b/superpower19classifier-zjx/template/positive/3630.png new file mode 100644 index 0000000..5d47063 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3630.png differ diff --git "a/superpower19classifier-zjx/template/positive/3630\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3630\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..5d47063 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3630\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/364.png b/superpower19classifier-zjx/template/positive/364.png new file mode 100644 index 0000000..5497704 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/364.png differ diff --git a/superpower19classifier-zjx/template/positive/3645.png b/superpower19classifier-zjx/template/positive/3645.png new file mode 100644 index 0000000..44139b9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3645.png differ diff --git "a/superpower19classifier-zjx/template/positive/3645\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3645\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..44139b9 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3645\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/365.png b/superpower19classifier-zjx/template/positive/365.png new file mode 100644 index 0000000..7805365 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/365.png differ diff --git a/superpower19classifier-zjx/template/positive/366.png b/superpower19classifier-zjx/template/positive/366.png new file mode 100644 index 0000000..d1a77a3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/366.png differ diff --git a/superpower19classifier-zjx/template/positive/3660.png b/superpower19classifier-zjx/template/positive/3660.png new file mode 100644 index 0000000..ba39848 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3660.png differ diff --git "a/superpower19classifier-zjx/template/positive/3660\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/3660\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..ba39848 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/3660\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/369.png b/superpower19classifier-zjx/template/positive/369.png new file mode 100644 index 0000000..ce3c6cd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/369.png differ diff --git a/superpower19classifier-zjx/template/positive/37.png b/superpower19classifier-zjx/template/positive/37.png new file mode 100644 index 0000000..d4c9712 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/37.png differ diff --git a/superpower19classifier-zjx/template/positive/373.png b/superpower19classifier-zjx/template/positive/373.png new file mode 100644 index 0000000..a44534f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/373.png differ diff --git a/superpower19classifier-zjx/template/positive/3730.png b/superpower19classifier-zjx/template/positive/3730.png new file mode 100644 index 0000000..58c1923 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3730.png differ diff --git a/superpower19classifier-zjx/template/positive/3740.png b/superpower19classifier-zjx/template/positive/3740.png new file mode 100644 index 0000000..6df4393 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/3740.png differ diff --git a/superpower19classifier-zjx/template/positive/375.png b/superpower19classifier-zjx/template/positive/375.png new file mode 100644 index 0000000..2608e94 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/375.png differ diff --git a/superpower19classifier-zjx/template/positive/376.png b/superpower19classifier-zjx/template/positive/376.png new file mode 100644 index 0000000..c1fdc28 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/376.png differ diff --git a/superpower19classifier-zjx/template/positive/379.png b/superpower19classifier-zjx/template/positive/379.png new file mode 100644 index 0000000..5289b7f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/379.png differ diff --git a/superpower19classifier-zjx/template/positive/382.png b/superpower19classifier-zjx/template/positive/382.png new file mode 100644 index 0000000..5df12b8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/382.png differ diff --git a/superpower19classifier-zjx/template/positive/385.png b/superpower19classifier-zjx/template/positive/385.png new file mode 100644 index 0000000..745a1fc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/385.png differ diff --git a/superpower19classifier-zjx/template/positive/387.png b/superpower19classifier-zjx/template/positive/387.png new file mode 100644 index 0000000..5401a57 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/387.png differ diff --git a/superpower19classifier-zjx/template/positive/39.png b/superpower19classifier-zjx/template/positive/39.png new file mode 100644 index 0000000..1b5421d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/39.png differ diff --git a/superpower19classifier-zjx/template/positive/392.png b/superpower19classifier-zjx/template/positive/392.png new file mode 100644 index 0000000..5247997 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/392.png differ diff --git a/superpower19classifier-zjx/template/positive/395.png b/superpower19classifier-zjx/template/positive/395.png new file mode 100644 index 0000000..b3bd09c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/395.png differ diff --git a/superpower19classifier-zjx/template/positive/397.png b/superpower19classifier-zjx/template/positive/397.png new file mode 100644 index 0000000..13f801c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/397.png differ diff --git a/superpower19classifier-zjx/template/positive/399.png b/superpower19classifier-zjx/template/positive/399.png new file mode 100644 index 0000000..8aa26a3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/399.png differ diff --git a/superpower19classifier-zjx/template/positive/4-1.png b/superpower19classifier-zjx/template/positive/4-1.png new file mode 100644 index 0000000..45ea207 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-1.png differ diff --git a/superpower19classifier-zjx/template/positive/4-10.png b/superpower19classifier-zjx/template/positive/4-10.png new file mode 100644 index 0000000..5eaccf8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-10.png differ diff --git a/superpower19classifier-zjx/template/positive/4-100.png b/superpower19classifier-zjx/template/positive/4-100.png new file mode 100644 index 0000000..db5e0db Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-100.png differ diff --git a/superpower19classifier-zjx/template/positive/4-101.png b/superpower19classifier-zjx/template/positive/4-101.png new file mode 100644 index 0000000..df96a09 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-101.png differ diff --git a/superpower19classifier-zjx/template/positive/4-102.png b/superpower19classifier-zjx/template/positive/4-102.png new file mode 100644 index 0000000..17b959f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-102.png differ diff --git a/superpower19classifier-zjx/template/positive/4-103.png b/superpower19classifier-zjx/template/positive/4-103.png new file mode 100644 index 0000000..bf30604 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-103.png differ diff --git a/superpower19classifier-zjx/template/positive/4-104.png b/superpower19classifier-zjx/template/positive/4-104.png new file mode 100644 index 0000000..1e50959 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-104.png differ diff --git a/superpower19classifier-zjx/template/positive/4-105.png b/superpower19classifier-zjx/template/positive/4-105.png new file mode 100644 index 0000000..4308e88 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-105.png differ diff --git a/superpower19classifier-zjx/template/positive/4-109.png b/superpower19classifier-zjx/template/positive/4-109.png new file mode 100644 index 0000000..98b59b6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-109.png differ diff --git a/superpower19classifier-zjx/template/positive/4-11.png b/superpower19classifier-zjx/template/positive/4-11.png new file mode 100644 index 0000000..bbf39f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-11.png differ diff --git a/superpower19classifier-zjx/template/positive/4-110.png b/superpower19classifier-zjx/template/positive/4-110.png new file mode 100644 index 0000000..a48a5fe Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-110.png differ diff --git a/superpower19classifier-zjx/template/positive/4-111.png b/superpower19classifier-zjx/template/positive/4-111.png new file mode 100644 index 0000000..580d30f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-111.png differ diff --git a/superpower19classifier-zjx/template/positive/4-112.png b/superpower19classifier-zjx/template/positive/4-112.png new file mode 100644 index 0000000..5073070 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-112.png differ diff --git a/superpower19classifier-zjx/template/positive/4-115.png b/superpower19classifier-zjx/template/positive/4-115.png new file mode 100644 index 0000000..56240b3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-115.png differ diff --git a/superpower19classifier-zjx/template/positive/4-116.png b/superpower19classifier-zjx/template/positive/4-116.png new file mode 100644 index 0000000..8858db5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-116.png differ diff --git a/superpower19classifier-zjx/template/positive/4-117.png b/superpower19classifier-zjx/template/positive/4-117.png new file mode 100644 index 0000000..8c5dbf3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-117.png differ diff --git a/superpower19classifier-zjx/template/positive/4-118.png b/superpower19classifier-zjx/template/positive/4-118.png new file mode 100644 index 0000000..cf127dd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-118.png differ diff --git a/superpower19classifier-zjx/template/positive/4-12.png b/superpower19classifier-zjx/template/positive/4-12.png new file mode 100644 index 0000000..80c3755 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-12.png differ diff --git a/superpower19classifier-zjx/template/positive/4-120.png b/superpower19classifier-zjx/template/positive/4-120.png new file mode 100644 index 0000000..f4ac636 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-120.png differ diff --git a/superpower19classifier-zjx/template/positive/4-121.png b/superpower19classifier-zjx/template/positive/4-121.png new file mode 100644 index 0000000..f5efd54 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-121.png differ diff --git a/superpower19classifier-zjx/template/positive/4-122.png b/superpower19classifier-zjx/template/positive/4-122.png new file mode 100644 index 0000000..f54dbee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-122.png differ diff --git a/superpower19classifier-zjx/template/positive/4-123.png b/superpower19classifier-zjx/template/positive/4-123.png new file mode 100644 index 0000000..a4a330d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-123.png differ diff --git a/superpower19classifier-zjx/template/positive/4-125.png b/superpower19classifier-zjx/template/positive/4-125.png new file mode 100644 index 0000000..ad940b4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-125.png differ diff --git a/superpower19classifier-zjx/template/positive/4-128.png b/superpower19classifier-zjx/template/positive/4-128.png new file mode 100644 index 0000000..ee47519 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-128.png differ diff --git a/superpower19classifier-zjx/template/positive/4-129.png b/superpower19classifier-zjx/template/positive/4-129.png new file mode 100644 index 0000000..becbef7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-129.png differ diff --git a/superpower19classifier-zjx/template/positive/4-13.png b/superpower19classifier-zjx/template/positive/4-13.png new file mode 100644 index 0000000..70f29a1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-13.png differ diff --git a/superpower19classifier-zjx/template/positive/4-130.png b/superpower19classifier-zjx/template/positive/4-130.png new file mode 100644 index 0000000..174d8e3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-130.png differ diff --git a/superpower19classifier-zjx/template/positive/4-131.png b/superpower19classifier-zjx/template/positive/4-131.png new file mode 100644 index 0000000..c454512 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-131.png differ diff --git a/superpower19classifier-zjx/template/positive/4-133.png b/superpower19classifier-zjx/template/positive/4-133.png new file mode 100644 index 0000000..44e4688 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-133.png differ diff --git a/superpower19classifier-zjx/template/positive/4-135.png b/superpower19classifier-zjx/template/positive/4-135.png new file mode 100644 index 0000000..8df1cab Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-135.png differ diff --git a/superpower19classifier-zjx/template/positive/4-136.png b/superpower19classifier-zjx/template/positive/4-136.png new file mode 100644 index 0000000..c3400be Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-136.png differ diff --git a/superpower19classifier-zjx/template/positive/4-138.png b/superpower19classifier-zjx/template/positive/4-138.png new file mode 100644 index 0000000..afd8181 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-138.png differ diff --git a/superpower19classifier-zjx/template/positive/4-14.png b/superpower19classifier-zjx/template/positive/4-14.png new file mode 100644 index 0000000..77868e5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-14.png differ diff --git a/superpower19classifier-zjx/template/positive/4-140.png b/superpower19classifier-zjx/template/positive/4-140.png new file mode 100644 index 0000000..47d2e3f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-140.png differ diff --git a/superpower19classifier-zjx/template/positive/4-141.png b/superpower19classifier-zjx/template/positive/4-141.png new file mode 100644 index 0000000..bf79dd1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-141.png differ diff --git a/superpower19classifier-zjx/template/positive/4-142.png b/superpower19classifier-zjx/template/positive/4-142.png new file mode 100644 index 0000000..e4c7390 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-142.png differ diff --git a/superpower19classifier-zjx/template/positive/4-144.png b/superpower19classifier-zjx/template/positive/4-144.png new file mode 100644 index 0000000..83d52e2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-144.png differ diff --git a/superpower19classifier-zjx/template/positive/4-145.png b/superpower19classifier-zjx/template/positive/4-145.png new file mode 100644 index 0000000..1f1a007 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-145.png differ diff --git a/superpower19classifier-zjx/template/positive/4-146.png b/superpower19classifier-zjx/template/positive/4-146.png new file mode 100644 index 0000000..bf7da52 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-146.png differ diff --git a/superpower19classifier-zjx/template/positive/4-147.png b/superpower19classifier-zjx/template/positive/4-147.png new file mode 100644 index 0000000..9258ba0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-147.png differ diff --git a/superpower19classifier-zjx/template/positive/4-148.png b/superpower19classifier-zjx/template/positive/4-148.png new file mode 100644 index 0000000..068a5b0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-148.png differ diff --git a/superpower19classifier-zjx/template/positive/4-149.png b/superpower19classifier-zjx/template/positive/4-149.png new file mode 100644 index 0000000..35377fa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-149.png differ diff --git a/superpower19classifier-zjx/template/positive/4-15.png b/superpower19classifier-zjx/template/positive/4-15.png new file mode 100644 index 0000000..a963f9a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-15.png differ diff --git a/superpower19classifier-zjx/template/positive/4-150.png b/superpower19classifier-zjx/template/positive/4-150.png new file mode 100644 index 0000000..edca4d9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-150.png differ diff --git a/superpower19classifier-zjx/template/positive/4-152.png b/superpower19classifier-zjx/template/positive/4-152.png new file mode 100644 index 0000000..f9b80a7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-152.png differ diff --git a/superpower19classifier-zjx/template/positive/4-154.png b/superpower19classifier-zjx/template/positive/4-154.png new file mode 100644 index 0000000..56dd5a8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-154.png differ diff --git a/superpower19classifier-zjx/template/positive/4-156.png b/superpower19classifier-zjx/template/positive/4-156.png new file mode 100644 index 0000000..4576835 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-156.png differ diff --git a/superpower19classifier-zjx/template/positive/4-157.png b/superpower19classifier-zjx/template/positive/4-157.png new file mode 100644 index 0000000..33fdec2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-157.png differ diff --git a/superpower19classifier-zjx/template/positive/4-158.png b/superpower19classifier-zjx/template/positive/4-158.png new file mode 100644 index 0000000..c822bcb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-158.png differ diff --git a/superpower19classifier-zjx/template/positive/4-160.png b/superpower19classifier-zjx/template/positive/4-160.png new file mode 100644 index 0000000..be67183 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-160.png differ diff --git a/superpower19classifier-zjx/template/positive/4-162.png b/superpower19classifier-zjx/template/positive/4-162.png new file mode 100644 index 0000000..51a0b76 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-162.png differ diff --git a/superpower19classifier-zjx/template/positive/4-163.png b/superpower19classifier-zjx/template/positive/4-163.png new file mode 100644 index 0000000..472344e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-163.png differ diff --git a/superpower19classifier-zjx/template/positive/4-164.png b/superpower19classifier-zjx/template/positive/4-164.png new file mode 100644 index 0000000..4d094af Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-164.png differ diff --git a/superpower19classifier-zjx/template/positive/4-165.png b/superpower19classifier-zjx/template/positive/4-165.png new file mode 100644 index 0000000..9e7dfc7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-165.png differ diff --git a/superpower19classifier-zjx/template/positive/4-166.png b/superpower19classifier-zjx/template/positive/4-166.png new file mode 100644 index 0000000..b0aa222 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-166.png differ diff --git a/superpower19classifier-zjx/template/positive/4-167.png b/superpower19classifier-zjx/template/positive/4-167.png new file mode 100644 index 0000000..739741e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-167.png differ diff --git a/superpower19classifier-zjx/template/positive/4-168.png b/superpower19classifier-zjx/template/positive/4-168.png new file mode 100644 index 0000000..746d3e1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-168.png differ diff --git a/superpower19classifier-zjx/template/positive/4-169.png b/superpower19classifier-zjx/template/positive/4-169.png new file mode 100644 index 0000000..e468767 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-169.png differ diff --git a/superpower19classifier-zjx/template/positive/4-17.png b/superpower19classifier-zjx/template/positive/4-17.png new file mode 100644 index 0000000..86a3594 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-17.png differ diff --git a/superpower19classifier-zjx/template/positive/4-171.png b/superpower19classifier-zjx/template/positive/4-171.png new file mode 100644 index 0000000..46da0f5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-171.png differ diff --git a/superpower19classifier-zjx/template/positive/4-172.png b/superpower19classifier-zjx/template/positive/4-172.png new file mode 100644 index 0000000..4609a54 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-172.png differ diff --git a/superpower19classifier-zjx/template/positive/4-173.png b/superpower19classifier-zjx/template/positive/4-173.png new file mode 100644 index 0000000..3bfeb9c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-173.png differ diff --git a/superpower19classifier-zjx/template/positive/4-174.png b/superpower19classifier-zjx/template/positive/4-174.png new file mode 100644 index 0000000..1512a5d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-174.png differ diff --git a/superpower19classifier-zjx/template/positive/4-175.png b/superpower19classifier-zjx/template/positive/4-175.png new file mode 100644 index 0000000..170ab06 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-175.png differ diff --git a/superpower19classifier-zjx/template/positive/4-176.png b/superpower19classifier-zjx/template/positive/4-176.png new file mode 100644 index 0000000..df54faa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-176.png differ diff --git a/superpower19classifier-zjx/template/positive/4-178.png b/superpower19classifier-zjx/template/positive/4-178.png new file mode 100644 index 0000000..a6a9600 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-178.png differ diff --git a/superpower19classifier-zjx/template/positive/4-180.png b/superpower19classifier-zjx/template/positive/4-180.png new file mode 100644 index 0000000..4318fed Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-180.png differ diff --git a/superpower19classifier-zjx/template/positive/4-181.png b/superpower19classifier-zjx/template/positive/4-181.png new file mode 100644 index 0000000..598bf3d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-181.png differ diff --git a/superpower19classifier-zjx/template/positive/4-182.png b/superpower19classifier-zjx/template/positive/4-182.png new file mode 100644 index 0000000..2a2be1e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-182.png differ diff --git a/superpower19classifier-zjx/template/positive/4-184.png b/superpower19classifier-zjx/template/positive/4-184.png new file mode 100644 index 0000000..be9a909 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-184.png differ diff --git a/superpower19classifier-zjx/template/positive/4-185.png b/superpower19classifier-zjx/template/positive/4-185.png new file mode 100644 index 0000000..4d67f58 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-185.png differ diff --git a/superpower19classifier-zjx/template/positive/4-186.png b/superpower19classifier-zjx/template/positive/4-186.png new file mode 100644 index 0000000..b728921 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-186.png differ diff --git a/superpower19classifier-zjx/template/positive/4-187.png b/superpower19classifier-zjx/template/positive/4-187.png new file mode 100644 index 0000000..2213565 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-187.png differ diff --git a/superpower19classifier-zjx/template/positive/4-188.png b/superpower19classifier-zjx/template/positive/4-188.png new file mode 100644 index 0000000..a6230c2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-188.png differ diff --git a/superpower19classifier-zjx/template/positive/4-189.png b/superpower19classifier-zjx/template/positive/4-189.png new file mode 100644 index 0000000..3ad62cf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-189.png differ diff --git a/superpower19classifier-zjx/template/positive/4-190.png b/superpower19classifier-zjx/template/positive/4-190.png new file mode 100644 index 0000000..c995476 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-190.png differ diff --git a/superpower19classifier-zjx/template/positive/4-192.png b/superpower19classifier-zjx/template/positive/4-192.png new file mode 100644 index 0000000..77a0c3d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-192.png differ diff --git a/superpower19classifier-zjx/template/positive/4-194.png b/superpower19classifier-zjx/template/positive/4-194.png new file mode 100644 index 0000000..17eb5a7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-194.png differ diff --git a/superpower19classifier-zjx/template/positive/4-195.png b/superpower19classifier-zjx/template/positive/4-195.png new file mode 100644 index 0000000..ee53d7d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-195.png differ diff --git a/superpower19classifier-zjx/template/positive/4-196.png b/superpower19classifier-zjx/template/positive/4-196.png new file mode 100644 index 0000000..a229ce3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-196.png differ diff --git a/superpower19classifier-zjx/template/positive/4-197.png b/superpower19classifier-zjx/template/positive/4-197.png new file mode 100644 index 0000000..f4835ad Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-197.png differ diff --git a/superpower19classifier-zjx/template/positive/4-198.png b/superpower19classifier-zjx/template/positive/4-198.png new file mode 100644 index 0000000..1383b87 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-198.png differ diff --git a/superpower19classifier-zjx/template/positive/4-2.png b/superpower19classifier-zjx/template/positive/4-2.png new file mode 100644 index 0000000..dfdd6f3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-2.png differ diff --git a/superpower19classifier-zjx/template/positive/4-20.png b/superpower19classifier-zjx/template/positive/4-20.png new file mode 100644 index 0000000..f708200 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-20.png differ diff --git a/superpower19classifier-zjx/template/positive/4-200.png b/superpower19classifier-zjx/template/positive/4-200.png new file mode 100644 index 0000000..5a3e914 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-200.png differ diff --git a/superpower19classifier-zjx/template/positive/4-201.png b/superpower19classifier-zjx/template/positive/4-201.png new file mode 100644 index 0000000..ed497c0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-201.png differ diff --git a/superpower19classifier-zjx/template/positive/4-203.png b/superpower19classifier-zjx/template/positive/4-203.png new file mode 100644 index 0000000..995dc3a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-203.png differ diff --git a/superpower19classifier-zjx/template/positive/4-204.png b/superpower19classifier-zjx/template/positive/4-204.png new file mode 100644 index 0000000..cd98f28 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-204.png differ diff --git a/superpower19classifier-zjx/template/positive/4-205.png b/superpower19classifier-zjx/template/positive/4-205.png new file mode 100644 index 0000000..bcc1b3c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-205.png differ diff --git a/superpower19classifier-zjx/template/positive/4-207.png b/superpower19classifier-zjx/template/positive/4-207.png new file mode 100644 index 0000000..46144e7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-207.png differ diff --git a/superpower19classifier-zjx/template/positive/4-208.png b/superpower19classifier-zjx/template/positive/4-208.png new file mode 100644 index 0000000..3afe4e5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-208.png differ diff --git a/superpower19classifier-zjx/template/positive/4-209.png b/superpower19classifier-zjx/template/positive/4-209.png new file mode 100644 index 0000000..b74b668 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-209.png differ diff --git a/superpower19classifier-zjx/template/positive/4-21.png b/superpower19classifier-zjx/template/positive/4-21.png new file mode 100644 index 0000000..12b58dc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-21.png differ diff --git a/superpower19classifier-zjx/template/positive/4-210.png b/superpower19classifier-zjx/template/positive/4-210.png new file mode 100644 index 0000000..3044b74 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-210.png differ diff --git a/superpower19classifier-zjx/template/positive/4-212.png b/superpower19classifier-zjx/template/positive/4-212.png new file mode 100644 index 0000000..8cb4db7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-212.png differ diff --git a/superpower19classifier-zjx/template/positive/4-213.png b/superpower19classifier-zjx/template/positive/4-213.png new file mode 100644 index 0000000..b07b18d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-213.png differ diff --git a/superpower19classifier-zjx/template/positive/4-214.png b/superpower19classifier-zjx/template/positive/4-214.png new file mode 100644 index 0000000..7a5bd02 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-214.png differ diff --git a/superpower19classifier-zjx/template/positive/4-215.png b/superpower19classifier-zjx/template/positive/4-215.png new file mode 100644 index 0000000..df55832 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-215.png differ diff --git a/superpower19classifier-zjx/template/positive/4-216.png b/superpower19classifier-zjx/template/positive/4-216.png new file mode 100644 index 0000000..cbce1e6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-216.png differ diff --git a/superpower19classifier-zjx/template/positive/4-217.png b/superpower19classifier-zjx/template/positive/4-217.png new file mode 100644 index 0000000..fabdb91 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-217.png differ diff --git a/superpower19classifier-zjx/template/positive/4-219.png b/superpower19classifier-zjx/template/positive/4-219.png new file mode 100644 index 0000000..ce0dad8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-219.png differ diff --git a/superpower19classifier-zjx/template/positive/4-22.png b/superpower19classifier-zjx/template/positive/4-22.png new file mode 100644 index 0000000..41f30e4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-22.png differ diff --git a/superpower19classifier-zjx/template/positive/4-220.png b/superpower19classifier-zjx/template/positive/4-220.png new file mode 100644 index 0000000..f92af13 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-220.png differ diff --git a/superpower19classifier-zjx/template/positive/4-221.png b/superpower19classifier-zjx/template/positive/4-221.png new file mode 100644 index 0000000..ebf9245 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-221.png differ diff --git a/superpower19classifier-zjx/template/positive/4-224.png b/superpower19classifier-zjx/template/positive/4-224.png new file mode 100644 index 0000000..01f38eb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-224.png differ diff --git a/superpower19classifier-zjx/template/positive/4-225.png b/superpower19classifier-zjx/template/positive/4-225.png new file mode 100644 index 0000000..f9b82a5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-225.png differ diff --git a/superpower19classifier-zjx/template/positive/4-226.png b/superpower19classifier-zjx/template/positive/4-226.png new file mode 100644 index 0000000..8f6d84e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-226.png differ diff --git a/superpower19classifier-zjx/template/positive/4-227.png b/superpower19classifier-zjx/template/positive/4-227.png new file mode 100644 index 0000000..35b09c6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-227.png differ diff --git a/superpower19classifier-zjx/template/positive/4-228.png b/superpower19classifier-zjx/template/positive/4-228.png new file mode 100644 index 0000000..255c088 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-228.png differ diff --git a/superpower19classifier-zjx/template/positive/4-23.png b/superpower19classifier-zjx/template/positive/4-23.png new file mode 100644 index 0000000..88b6982 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-23.png differ diff --git a/superpower19classifier-zjx/template/positive/4-231.png b/superpower19classifier-zjx/template/positive/4-231.png new file mode 100644 index 0000000..6c69840 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-231.png differ diff --git a/superpower19classifier-zjx/template/positive/4-232.png b/superpower19classifier-zjx/template/positive/4-232.png new file mode 100644 index 0000000..96b0845 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-232.png differ diff --git a/superpower19classifier-zjx/template/positive/4-233.png b/superpower19classifier-zjx/template/positive/4-233.png new file mode 100644 index 0000000..74ee99c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-233.png differ diff --git a/superpower19classifier-zjx/template/positive/4-234.png b/superpower19classifier-zjx/template/positive/4-234.png new file mode 100644 index 0000000..483102b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-234.png differ diff --git a/superpower19classifier-zjx/template/positive/4-235.png b/superpower19classifier-zjx/template/positive/4-235.png new file mode 100644 index 0000000..c09564c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-235.png differ diff --git a/superpower19classifier-zjx/template/positive/4-236.png b/superpower19classifier-zjx/template/positive/4-236.png new file mode 100644 index 0000000..a9f69f8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-236.png differ diff --git a/superpower19classifier-zjx/template/positive/4-237.png b/superpower19classifier-zjx/template/positive/4-237.png new file mode 100644 index 0000000..41586ef Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-237.png differ diff --git a/superpower19classifier-zjx/template/positive/4-238.png b/superpower19classifier-zjx/template/positive/4-238.png new file mode 100644 index 0000000..67c76e2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-238.png differ diff --git a/superpower19classifier-zjx/template/positive/4-239.png b/superpower19classifier-zjx/template/positive/4-239.png new file mode 100644 index 0000000..9513695 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-239.png differ diff --git a/superpower19classifier-zjx/template/positive/4-24.png b/superpower19classifier-zjx/template/positive/4-24.png new file mode 100644 index 0000000..3c18eb2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-24.png differ diff --git a/superpower19classifier-zjx/template/positive/4-240.png b/superpower19classifier-zjx/template/positive/4-240.png new file mode 100644 index 0000000..9a60ce0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-240.png differ diff --git a/superpower19classifier-zjx/template/positive/4-241.png b/superpower19classifier-zjx/template/positive/4-241.png new file mode 100644 index 0000000..5f23568 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-241.png differ diff --git a/superpower19classifier-zjx/template/positive/4-242.png b/superpower19classifier-zjx/template/positive/4-242.png new file mode 100644 index 0000000..7c36bce Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-242.png differ diff --git a/superpower19classifier-zjx/template/positive/4-243.png b/superpower19classifier-zjx/template/positive/4-243.png new file mode 100644 index 0000000..2e09a6d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-243.png differ diff --git a/superpower19classifier-zjx/template/positive/4-244.png b/superpower19classifier-zjx/template/positive/4-244.png new file mode 100644 index 0000000..b13618a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-244.png differ diff --git a/superpower19classifier-zjx/template/positive/4-245.png b/superpower19classifier-zjx/template/positive/4-245.png new file mode 100644 index 0000000..756cfc3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-245.png differ diff --git a/superpower19classifier-zjx/template/positive/4-247.png b/superpower19classifier-zjx/template/positive/4-247.png new file mode 100644 index 0000000..e1fd042 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-247.png differ diff --git a/superpower19classifier-zjx/template/positive/4-249.png b/superpower19classifier-zjx/template/positive/4-249.png new file mode 100644 index 0000000..55ac986 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-249.png differ diff --git a/superpower19classifier-zjx/template/positive/4-25.png b/superpower19classifier-zjx/template/positive/4-25.png new file mode 100644 index 0000000..ec1a53d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-25.png differ diff --git a/superpower19classifier-zjx/template/positive/4-250.png b/superpower19classifier-zjx/template/positive/4-250.png new file mode 100644 index 0000000..78dc64b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-250.png differ diff --git a/superpower19classifier-zjx/template/positive/4-251.png b/superpower19classifier-zjx/template/positive/4-251.png new file mode 100644 index 0000000..81ba2d9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-251.png differ diff --git a/superpower19classifier-zjx/template/positive/4-252.png b/superpower19classifier-zjx/template/positive/4-252.png new file mode 100644 index 0000000..25b0d69 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-252.png differ diff --git a/superpower19classifier-zjx/template/positive/4-253.png b/superpower19classifier-zjx/template/positive/4-253.png new file mode 100644 index 0000000..94f3a98 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-253.png differ diff --git a/superpower19classifier-zjx/template/positive/4-254.png b/superpower19classifier-zjx/template/positive/4-254.png new file mode 100644 index 0000000..264fffb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-254.png differ diff --git a/superpower19classifier-zjx/template/positive/4-255.png b/superpower19classifier-zjx/template/positive/4-255.png new file mode 100644 index 0000000..63893d3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-255.png differ diff --git a/superpower19classifier-zjx/template/positive/4-258.png b/superpower19classifier-zjx/template/positive/4-258.png new file mode 100644 index 0000000..7fa2907 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-258.png differ diff --git a/superpower19classifier-zjx/template/positive/4-259.png b/superpower19classifier-zjx/template/positive/4-259.png new file mode 100644 index 0000000..a20d3eb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-259.png differ diff --git a/superpower19classifier-zjx/template/positive/4-26.png b/superpower19classifier-zjx/template/positive/4-26.png new file mode 100644 index 0000000..b315a95 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-26.png differ diff --git a/superpower19classifier-zjx/template/positive/4-261.png b/superpower19classifier-zjx/template/positive/4-261.png new file mode 100644 index 0000000..6e69fcb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-261.png differ diff --git a/superpower19classifier-zjx/template/positive/4-262.png b/superpower19classifier-zjx/template/positive/4-262.png new file mode 100644 index 0000000..5f52772 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-262.png differ diff --git a/superpower19classifier-zjx/template/positive/4-263.png b/superpower19classifier-zjx/template/positive/4-263.png new file mode 100644 index 0000000..7f157a4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-263.png differ diff --git a/superpower19classifier-zjx/template/positive/4-264.png b/superpower19classifier-zjx/template/positive/4-264.png new file mode 100644 index 0000000..eb03ec5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-264.png differ diff --git a/superpower19classifier-zjx/template/positive/4-265.png b/superpower19classifier-zjx/template/positive/4-265.png new file mode 100644 index 0000000..c15b268 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-265.png differ diff --git a/superpower19classifier-zjx/template/positive/4-266.png b/superpower19classifier-zjx/template/positive/4-266.png new file mode 100644 index 0000000..a0e075b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-266.png differ diff --git a/superpower19classifier-zjx/template/positive/4-267.png b/superpower19classifier-zjx/template/positive/4-267.png new file mode 100644 index 0000000..99d227f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-267.png differ diff --git a/superpower19classifier-zjx/template/positive/4-268.png b/superpower19classifier-zjx/template/positive/4-268.png new file mode 100644 index 0000000..2f1c528 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-268.png differ diff --git a/superpower19classifier-zjx/template/positive/4-269.png b/superpower19classifier-zjx/template/positive/4-269.png new file mode 100644 index 0000000..a1f905d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-269.png differ diff --git a/superpower19classifier-zjx/template/positive/4-27.png b/superpower19classifier-zjx/template/positive/4-27.png new file mode 100644 index 0000000..f427e07 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-27.png differ diff --git a/superpower19classifier-zjx/template/positive/4-270.png b/superpower19classifier-zjx/template/positive/4-270.png new file mode 100644 index 0000000..529798d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-270.png differ diff --git a/superpower19classifier-zjx/template/positive/4-271.png b/superpower19classifier-zjx/template/positive/4-271.png new file mode 100644 index 0000000..a8cc454 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-271.png differ diff --git a/superpower19classifier-zjx/template/positive/4-272.png b/superpower19classifier-zjx/template/positive/4-272.png new file mode 100644 index 0000000..f2deba6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-272.png differ diff --git a/superpower19classifier-zjx/template/positive/4-273.png b/superpower19classifier-zjx/template/positive/4-273.png new file mode 100644 index 0000000..3b233d3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-273.png differ diff --git a/superpower19classifier-zjx/template/positive/4-274.png b/superpower19classifier-zjx/template/positive/4-274.png new file mode 100644 index 0000000..afe59d1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-274.png differ diff --git a/superpower19classifier-zjx/template/positive/4-275.png b/superpower19classifier-zjx/template/positive/4-275.png new file mode 100644 index 0000000..9bdc2a3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-275.png differ diff --git a/superpower19classifier-zjx/template/positive/4-276.png b/superpower19classifier-zjx/template/positive/4-276.png new file mode 100644 index 0000000..e70f0ad Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-276.png differ diff --git a/superpower19classifier-zjx/template/positive/4-278.png b/superpower19classifier-zjx/template/positive/4-278.png new file mode 100644 index 0000000..4616b29 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-278.png differ diff --git a/superpower19classifier-zjx/template/positive/4-280.png b/superpower19classifier-zjx/template/positive/4-280.png new file mode 100644 index 0000000..aca0560 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-280.png differ diff --git a/superpower19classifier-zjx/template/positive/4-281.png b/superpower19classifier-zjx/template/positive/4-281.png new file mode 100644 index 0000000..40993ce Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-281.png differ diff --git a/superpower19classifier-zjx/template/positive/4-282.png b/superpower19classifier-zjx/template/positive/4-282.png new file mode 100644 index 0000000..57d141f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-282.png differ diff --git a/superpower19classifier-zjx/template/positive/4-283.png b/superpower19classifier-zjx/template/positive/4-283.png new file mode 100644 index 0000000..1348f63 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-283.png differ diff --git a/superpower19classifier-zjx/template/positive/4-284.png b/superpower19classifier-zjx/template/positive/4-284.png new file mode 100644 index 0000000..80ec786 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-284.png differ diff --git a/superpower19classifier-zjx/template/positive/4-285.png b/superpower19classifier-zjx/template/positive/4-285.png new file mode 100644 index 0000000..818919a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-285.png differ diff --git a/superpower19classifier-zjx/template/positive/4-286.png b/superpower19classifier-zjx/template/positive/4-286.png new file mode 100644 index 0000000..3ab9f08 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-286.png differ diff --git a/superpower19classifier-zjx/template/positive/4-287.png b/superpower19classifier-zjx/template/positive/4-287.png new file mode 100644 index 0000000..a7a70b8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-287.png differ diff --git a/superpower19classifier-zjx/template/positive/4-288.png b/superpower19classifier-zjx/template/positive/4-288.png new file mode 100644 index 0000000..5e273b6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-288.png differ diff --git a/superpower19classifier-zjx/template/positive/4-29.png b/superpower19classifier-zjx/template/positive/4-29.png new file mode 100644 index 0000000..a2993ee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-29.png differ diff --git a/superpower19classifier-zjx/template/positive/4-290.png b/superpower19classifier-zjx/template/positive/4-290.png new file mode 100644 index 0000000..ab19d8a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-290.png differ diff --git a/superpower19classifier-zjx/template/positive/4-291.png b/superpower19classifier-zjx/template/positive/4-291.png new file mode 100644 index 0000000..5b31d09 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-291.png differ diff --git a/superpower19classifier-zjx/template/positive/4-294.png b/superpower19classifier-zjx/template/positive/4-294.png new file mode 100644 index 0000000..bc8b384 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-294.png differ diff --git a/superpower19classifier-zjx/template/positive/4-296.png b/superpower19classifier-zjx/template/positive/4-296.png new file mode 100644 index 0000000..34aa794 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-296.png differ diff --git a/superpower19classifier-zjx/template/positive/4-297.png b/superpower19classifier-zjx/template/positive/4-297.png new file mode 100644 index 0000000..74b70c8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-297.png differ diff --git a/superpower19classifier-zjx/template/positive/4-298.png b/superpower19classifier-zjx/template/positive/4-298.png new file mode 100644 index 0000000..3bdc302 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-298.png differ diff --git a/superpower19classifier-zjx/template/positive/4-3.png b/superpower19classifier-zjx/template/positive/4-3.png new file mode 100644 index 0000000..507e064 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-3.png differ diff --git a/superpower19classifier-zjx/template/positive/4-30.png b/superpower19classifier-zjx/template/positive/4-30.png new file mode 100644 index 0000000..b9e74fb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-30.png differ diff --git a/superpower19classifier-zjx/template/positive/4-301.png b/superpower19classifier-zjx/template/positive/4-301.png new file mode 100644 index 0000000..40fb9ea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-301.png differ diff --git a/superpower19classifier-zjx/template/positive/4-302.png b/superpower19classifier-zjx/template/positive/4-302.png new file mode 100644 index 0000000..c50e728 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-302.png differ diff --git a/superpower19classifier-zjx/template/positive/4-303.png b/superpower19classifier-zjx/template/positive/4-303.png new file mode 100644 index 0000000..b468fad Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-303.png differ diff --git a/superpower19classifier-zjx/template/positive/4-304.png b/superpower19classifier-zjx/template/positive/4-304.png new file mode 100644 index 0000000..412a67a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-304.png differ diff --git a/superpower19classifier-zjx/template/positive/4-307.png b/superpower19classifier-zjx/template/positive/4-307.png new file mode 100644 index 0000000..3d45c58 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-307.png differ diff --git a/superpower19classifier-zjx/template/positive/4-308.png b/superpower19classifier-zjx/template/positive/4-308.png new file mode 100644 index 0000000..d3d7cd6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-308.png differ diff --git a/superpower19classifier-zjx/template/positive/4-309.png b/superpower19classifier-zjx/template/positive/4-309.png new file mode 100644 index 0000000..e093949 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-309.png differ diff --git a/superpower19classifier-zjx/template/positive/4-310.png b/superpower19classifier-zjx/template/positive/4-310.png new file mode 100644 index 0000000..d0fba3b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-310.png differ diff --git a/superpower19classifier-zjx/template/positive/4-311.png b/superpower19classifier-zjx/template/positive/4-311.png new file mode 100644 index 0000000..fb12d30 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-311.png differ diff --git a/superpower19classifier-zjx/template/positive/4-312.png b/superpower19classifier-zjx/template/positive/4-312.png new file mode 100644 index 0000000..90a8a10 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-312.png differ diff --git a/superpower19classifier-zjx/template/positive/4-313.png b/superpower19classifier-zjx/template/positive/4-313.png new file mode 100644 index 0000000..160352b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-313.png differ diff --git a/superpower19classifier-zjx/template/positive/4-314.png b/superpower19classifier-zjx/template/positive/4-314.png new file mode 100644 index 0000000..e2b13ae Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-314.png differ diff --git a/superpower19classifier-zjx/template/positive/4-315.png b/superpower19classifier-zjx/template/positive/4-315.png new file mode 100644 index 0000000..d22752c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-315.png differ diff --git a/superpower19classifier-zjx/template/positive/4-318.png b/superpower19classifier-zjx/template/positive/4-318.png new file mode 100644 index 0000000..762b36c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-318.png differ diff --git a/superpower19classifier-zjx/template/positive/4-32.png b/superpower19classifier-zjx/template/positive/4-32.png new file mode 100644 index 0000000..5530188 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-32.png differ diff --git a/superpower19classifier-zjx/template/positive/4-320.png b/superpower19classifier-zjx/template/positive/4-320.png new file mode 100644 index 0000000..305afc7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-320.png differ diff --git a/superpower19classifier-zjx/template/positive/4-321.png b/superpower19classifier-zjx/template/positive/4-321.png new file mode 100644 index 0000000..54e9370 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-321.png differ diff --git a/superpower19classifier-zjx/template/positive/4-322.png b/superpower19classifier-zjx/template/positive/4-322.png new file mode 100644 index 0000000..6a4ca3c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-322.png differ diff --git a/superpower19classifier-zjx/template/positive/4-323.png b/superpower19classifier-zjx/template/positive/4-323.png new file mode 100644 index 0000000..99ed676 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-323.png differ diff --git a/superpower19classifier-zjx/template/positive/4-324.png b/superpower19classifier-zjx/template/positive/4-324.png new file mode 100644 index 0000000..411facd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-324.png differ diff --git a/superpower19classifier-zjx/template/positive/4-325.png b/superpower19classifier-zjx/template/positive/4-325.png new file mode 100644 index 0000000..cd788a1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-325.png differ diff --git a/superpower19classifier-zjx/template/positive/4-326.png b/superpower19classifier-zjx/template/positive/4-326.png new file mode 100644 index 0000000..0b261e9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-326.png differ diff --git a/superpower19classifier-zjx/template/positive/4-327.png b/superpower19classifier-zjx/template/positive/4-327.png new file mode 100644 index 0000000..1ea6315 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-327.png differ diff --git a/superpower19classifier-zjx/template/positive/4-328.png b/superpower19classifier-zjx/template/positive/4-328.png new file mode 100644 index 0000000..823c0f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-328.png differ diff --git a/superpower19classifier-zjx/template/positive/4-329.png b/superpower19classifier-zjx/template/positive/4-329.png new file mode 100644 index 0000000..d12f865 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-329.png differ diff --git a/superpower19classifier-zjx/template/positive/4-332.png b/superpower19classifier-zjx/template/positive/4-332.png new file mode 100644 index 0000000..161d1f4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-332.png differ diff --git a/superpower19classifier-zjx/template/positive/4-334.png b/superpower19classifier-zjx/template/positive/4-334.png new file mode 100644 index 0000000..ef230ed Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-334.png differ diff --git a/superpower19classifier-zjx/template/positive/4-335.png b/superpower19classifier-zjx/template/positive/4-335.png new file mode 100644 index 0000000..f6c35ee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-335.png differ diff --git a/superpower19classifier-zjx/template/positive/4-336.png b/superpower19classifier-zjx/template/positive/4-336.png new file mode 100644 index 0000000..6ec7ee0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-336.png differ diff --git a/superpower19classifier-zjx/template/positive/4-337.png b/superpower19classifier-zjx/template/positive/4-337.png new file mode 100644 index 0000000..6affe16 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-337.png differ diff --git a/superpower19classifier-zjx/template/positive/4-338.png b/superpower19classifier-zjx/template/positive/4-338.png new file mode 100644 index 0000000..5dfba67 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-338.png differ diff --git a/superpower19classifier-zjx/template/positive/4-339.png b/superpower19classifier-zjx/template/positive/4-339.png new file mode 100644 index 0000000..51dad4d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-339.png differ diff --git a/superpower19classifier-zjx/template/positive/4-34.png b/superpower19classifier-zjx/template/positive/4-34.png new file mode 100644 index 0000000..d8e9e07 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-34.png differ diff --git a/superpower19classifier-zjx/template/positive/4-341.png b/superpower19classifier-zjx/template/positive/4-341.png new file mode 100644 index 0000000..e3357ac Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-341.png differ diff --git a/superpower19classifier-zjx/template/positive/4-343.png b/superpower19classifier-zjx/template/positive/4-343.png new file mode 100644 index 0000000..7dc6822 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-343.png differ diff --git a/superpower19classifier-zjx/template/positive/4-344.png b/superpower19classifier-zjx/template/positive/4-344.png new file mode 100644 index 0000000..75e0ad5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-344.png differ diff --git a/superpower19classifier-zjx/template/positive/4-345.png b/superpower19classifier-zjx/template/positive/4-345.png new file mode 100644 index 0000000..1057529 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-345.png differ diff --git a/superpower19classifier-zjx/template/positive/4-346.png b/superpower19classifier-zjx/template/positive/4-346.png new file mode 100644 index 0000000..52f17d0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-346.png differ diff --git a/superpower19classifier-zjx/template/positive/4-347.png b/superpower19classifier-zjx/template/positive/4-347.png new file mode 100644 index 0000000..5ac9ff8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-347.png differ diff --git a/superpower19classifier-zjx/template/positive/4-348.png b/superpower19classifier-zjx/template/positive/4-348.png new file mode 100644 index 0000000..ef67075 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-348.png differ diff --git a/superpower19classifier-zjx/template/positive/4-349.png b/superpower19classifier-zjx/template/positive/4-349.png new file mode 100644 index 0000000..5a5b91a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-349.png differ diff --git a/superpower19classifier-zjx/template/positive/4-350.png b/superpower19classifier-zjx/template/positive/4-350.png new file mode 100644 index 0000000..55a0046 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-350.png differ diff --git a/superpower19classifier-zjx/template/positive/4-351.png b/superpower19classifier-zjx/template/positive/4-351.png new file mode 100644 index 0000000..be75113 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-351.png differ diff --git a/superpower19classifier-zjx/template/positive/4-352.png b/superpower19classifier-zjx/template/positive/4-352.png new file mode 100644 index 0000000..dd2bb46 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-352.png differ diff --git a/superpower19classifier-zjx/template/positive/4-353.png b/superpower19classifier-zjx/template/positive/4-353.png new file mode 100644 index 0000000..1026138 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-353.png differ diff --git a/superpower19classifier-zjx/template/positive/4-354.png b/superpower19classifier-zjx/template/positive/4-354.png new file mode 100644 index 0000000..3178979 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-354.png differ diff --git a/superpower19classifier-zjx/template/positive/4-356.png b/superpower19classifier-zjx/template/positive/4-356.png new file mode 100644 index 0000000..b71ffdd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-356.png differ diff --git a/superpower19classifier-zjx/template/positive/4-357.png b/superpower19classifier-zjx/template/positive/4-357.png new file mode 100644 index 0000000..1ce0a8a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-357.png differ diff --git a/superpower19classifier-zjx/template/positive/4-358.png b/superpower19classifier-zjx/template/positive/4-358.png new file mode 100644 index 0000000..cca789d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-358.png differ diff --git a/superpower19classifier-zjx/template/positive/4-359.png b/superpower19classifier-zjx/template/positive/4-359.png new file mode 100644 index 0000000..54396cd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-359.png differ diff --git a/superpower19classifier-zjx/template/positive/4-36.png b/superpower19classifier-zjx/template/positive/4-36.png new file mode 100644 index 0000000..7111dc9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-36.png differ diff --git a/superpower19classifier-zjx/template/positive/4-360.png b/superpower19classifier-zjx/template/positive/4-360.png new file mode 100644 index 0000000..8452fee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-360.png differ diff --git a/superpower19classifier-zjx/template/positive/4-361.png b/superpower19classifier-zjx/template/positive/4-361.png new file mode 100644 index 0000000..fd2ad70 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-361.png differ diff --git a/superpower19classifier-zjx/template/positive/4-362.png b/superpower19classifier-zjx/template/positive/4-362.png new file mode 100644 index 0000000..d3e046e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-362.png differ diff --git a/superpower19classifier-zjx/template/positive/4-363.png b/superpower19classifier-zjx/template/positive/4-363.png new file mode 100644 index 0000000..6af67c7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-363.png differ diff --git a/superpower19classifier-zjx/template/positive/4-365.png b/superpower19classifier-zjx/template/positive/4-365.png new file mode 100644 index 0000000..ca75cba Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-365.png differ diff --git a/superpower19classifier-zjx/template/positive/4-366.png b/superpower19classifier-zjx/template/positive/4-366.png new file mode 100644 index 0000000..2df5148 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-366.png differ diff --git a/superpower19classifier-zjx/template/positive/4-367.png b/superpower19classifier-zjx/template/positive/4-367.png new file mode 100644 index 0000000..6b5d284 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-367.png differ diff --git a/superpower19classifier-zjx/template/positive/4-368.png b/superpower19classifier-zjx/template/positive/4-368.png new file mode 100644 index 0000000..7f01534 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-368.png differ diff --git a/superpower19classifier-zjx/template/positive/4-369.png b/superpower19classifier-zjx/template/positive/4-369.png new file mode 100644 index 0000000..d35b9ac Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-369.png differ diff --git a/superpower19classifier-zjx/template/positive/4-372.png b/superpower19classifier-zjx/template/positive/4-372.png new file mode 100644 index 0000000..21ca85c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-372.png differ diff --git a/superpower19classifier-zjx/template/positive/4-373.png b/superpower19classifier-zjx/template/positive/4-373.png new file mode 100644 index 0000000..56cf57f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-373.png differ diff --git a/superpower19classifier-zjx/template/positive/4-374.png b/superpower19classifier-zjx/template/positive/4-374.png new file mode 100644 index 0000000..b90891a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-374.png differ diff --git a/superpower19classifier-zjx/template/positive/4-375.png b/superpower19classifier-zjx/template/positive/4-375.png new file mode 100644 index 0000000..3a251f0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-375.png differ diff --git a/superpower19classifier-zjx/template/positive/4-376.png b/superpower19classifier-zjx/template/positive/4-376.png new file mode 100644 index 0000000..1ff4cc1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-376.png differ diff --git a/superpower19classifier-zjx/template/positive/4-378.png b/superpower19classifier-zjx/template/positive/4-378.png new file mode 100644 index 0000000..5f7a7cc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-378.png differ diff --git a/superpower19classifier-zjx/template/positive/4-379.png b/superpower19classifier-zjx/template/positive/4-379.png new file mode 100644 index 0000000..8bdb61a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-379.png differ diff --git a/superpower19classifier-zjx/template/positive/4-380.png b/superpower19classifier-zjx/template/positive/4-380.png new file mode 100644 index 0000000..8c402d3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-380.png differ diff --git a/superpower19classifier-zjx/template/positive/4-383.png b/superpower19classifier-zjx/template/positive/4-383.png new file mode 100644 index 0000000..f52d46b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-383.png differ diff --git a/superpower19classifier-zjx/template/positive/4-384.png b/superpower19classifier-zjx/template/positive/4-384.png new file mode 100644 index 0000000..4551699 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-384.png differ diff --git a/superpower19classifier-zjx/template/positive/4-385.png b/superpower19classifier-zjx/template/positive/4-385.png new file mode 100644 index 0000000..b769541 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-385.png differ diff --git a/superpower19classifier-zjx/template/positive/4-388.png b/superpower19classifier-zjx/template/positive/4-388.png new file mode 100644 index 0000000..3939829 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-388.png differ diff --git a/superpower19classifier-zjx/template/positive/4-39.png b/superpower19classifier-zjx/template/positive/4-39.png new file mode 100644 index 0000000..0e3521c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-39.png differ diff --git a/superpower19classifier-zjx/template/positive/4-391.png b/superpower19classifier-zjx/template/positive/4-391.png new file mode 100644 index 0000000..42dc2f5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-391.png differ diff --git a/superpower19classifier-zjx/template/positive/4-392.png b/superpower19classifier-zjx/template/positive/4-392.png new file mode 100644 index 0000000..938ea81 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-392.png differ diff --git a/superpower19classifier-zjx/template/positive/4-393.png b/superpower19classifier-zjx/template/positive/4-393.png new file mode 100644 index 0000000..88e255d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-393.png differ diff --git a/superpower19classifier-zjx/template/positive/4-394.png b/superpower19classifier-zjx/template/positive/4-394.png new file mode 100644 index 0000000..8ccef36 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-394.png differ diff --git a/superpower19classifier-zjx/template/positive/4-395.png b/superpower19classifier-zjx/template/positive/4-395.png new file mode 100644 index 0000000..b578f56 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-395.png differ diff --git a/superpower19classifier-zjx/template/positive/4-397.png b/superpower19classifier-zjx/template/positive/4-397.png new file mode 100644 index 0000000..07d1b09 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-397.png differ diff --git a/superpower19classifier-zjx/template/positive/4-398.png b/superpower19classifier-zjx/template/positive/4-398.png new file mode 100644 index 0000000..dc4c96b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-398.png differ diff --git a/superpower19classifier-zjx/template/positive/4-4.png b/superpower19classifier-zjx/template/positive/4-4.png new file mode 100644 index 0000000..d3548f1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-4.png differ diff --git a/superpower19classifier-zjx/template/positive/4-40.png b/superpower19classifier-zjx/template/positive/4-40.png new file mode 100644 index 0000000..e254b9e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-40.png differ diff --git a/superpower19classifier-zjx/template/positive/4-400.png b/superpower19classifier-zjx/template/positive/4-400.png new file mode 100644 index 0000000..fbdd506 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-400.png differ diff --git a/superpower19classifier-zjx/template/positive/4-403.png b/superpower19classifier-zjx/template/positive/4-403.png new file mode 100644 index 0000000..9cf09a9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-403.png differ diff --git a/superpower19classifier-zjx/template/positive/4-405.png b/superpower19classifier-zjx/template/positive/4-405.png new file mode 100644 index 0000000..873c902 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-405.png differ diff --git a/superpower19classifier-zjx/template/positive/4-406.png b/superpower19classifier-zjx/template/positive/4-406.png new file mode 100644 index 0000000..9a92bac Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-406.png differ diff --git a/superpower19classifier-zjx/template/positive/4-407.png b/superpower19classifier-zjx/template/positive/4-407.png new file mode 100644 index 0000000..f960f9e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-407.png differ diff --git a/superpower19classifier-zjx/template/positive/4-408.png b/superpower19classifier-zjx/template/positive/4-408.png new file mode 100644 index 0000000..bc7583d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-408.png differ diff --git a/superpower19classifier-zjx/template/positive/4-409.png b/superpower19classifier-zjx/template/positive/4-409.png new file mode 100644 index 0000000..30cb158 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-409.png differ diff --git a/superpower19classifier-zjx/template/positive/4-41.png b/superpower19classifier-zjx/template/positive/4-41.png new file mode 100644 index 0000000..74790ca Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-41.png differ diff --git a/superpower19classifier-zjx/template/positive/4-411.png b/superpower19classifier-zjx/template/positive/4-411.png new file mode 100644 index 0000000..7f745f3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-411.png differ diff --git a/superpower19classifier-zjx/template/positive/4-412.png b/superpower19classifier-zjx/template/positive/4-412.png new file mode 100644 index 0000000..8546772 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-412.png differ diff --git a/superpower19classifier-zjx/template/positive/4-413.png b/superpower19classifier-zjx/template/positive/4-413.png new file mode 100644 index 0000000..0f691c3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-413.png differ diff --git a/superpower19classifier-zjx/template/positive/4-414.png b/superpower19classifier-zjx/template/positive/4-414.png new file mode 100644 index 0000000..c7f8058 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-414.png differ diff --git a/superpower19classifier-zjx/template/positive/4-417.png b/superpower19classifier-zjx/template/positive/4-417.png new file mode 100644 index 0000000..8578787 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-417.png differ diff --git a/superpower19classifier-zjx/template/positive/4-418.png b/superpower19classifier-zjx/template/positive/4-418.png new file mode 100644 index 0000000..ccfbf0d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-418.png differ diff --git a/superpower19classifier-zjx/template/positive/4-419.png b/superpower19classifier-zjx/template/positive/4-419.png new file mode 100644 index 0000000..768e88e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-419.png differ diff --git a/superpower19classifier-zjx/template/positive/4-42.png b/superpower19classifier-zjx/template/positive/4-42.png new file mode 100644 index 0000000..2c2347e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-42.png differ diff --git a/superpower19classifier-zjx/template/positive/4-424.png b/superpower19classifier-zjx/template/positive/4-424.png new file mode 100644 index 0000000..1634aec Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-424.png differ diff --git a/superpower19classifier-zjx/template/positive/4-425.png b/superpower19classifier-zjx/template/positive/4-425.png new file mode 100644 index 0000000..a85c929 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-425.png differ diff --git a/superpower19classifier-zjx/template/positive/4-426.png b/superpower19classifier-zjx/template/positive/4-426.png new file mode 100644 index 0000000..3a72e3e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-426.png differ diff --git a/superpower19classifier-zjx/template/positive/4-427.png b/superpower19classifier-zjx/template/positive/4-427.png new file mode 100644 index 0000000..779a6ee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-427.png differ diff --git a/superpower19classifier-zjx/template/positive/4-428.png b/superpower19classifier-zjx/template/positive/4-428.png new file mode 100644 index 0000000..0f29fc8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-428.png differ diff --git a/superpower19classifier-zjx/template/positive/4-43.png b/superpower19classifier-zjx/template/positive/4-43.png new file mode 100644 index 0000000..b9de266 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-43.png differ diff --git a/superpower19classifier-zjx/template/positive/4-430.png b/superpower19classifier-zjx/template/positive/4-430.png new file mode 100644 index 0000000..2455568 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-430.png differ diff --git a/superpower19classifier-zjx/template/positive/4-431.png b/superpower19classifier-zjx/template/positive/4-431.png new file mode 100644 index 0000000..9c73907 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-431.png differ diff --git a/superpower19classifier-zjx/template/positive/4-434.png b/superpower19classifier-zjx/template/positive/4-434.png new file mode 100644 index 0000000..d2e85bf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-434.png differ diff --git a/superpower19classifier-zjx/template/positive/4-435.png b/superpower19classifier-zjx/template/positive/4-435.png new file mode 100644 index 0000000..c52b475 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-435.png differ diff --git a/superpower19classifier-zjx/template/positive/4-436.png b/superpower19classifier-zjx/template/positive/4-436.png new file mode 100644 index 0000000..a7d52e7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-436.png differ diff --git a/superpower19classifier-zjx/template/positive/4-437.png b/superpower19classifier-zjx/template/positive/4-437.png new file mode 100644 index 0000000..3315c97 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-437.png differ diff --git a/superpower19classifier-zjx/template/positive/4-44.png b/superpower19classifier-zjx/template/positive/4-44.png new file mode 100644 index 0000000..0a961eb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-44.png differ diff --git a/superpower19classifier-zjx/template/positive/4-440.png b/superpower19classifier-zjx/template/positive/4-440.png new file mode 100644 index 0000000..3bd5a67 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-440.png differ diff --git a/superpower19classifier-zjx/template/positive/4-442.png b/superpower19classifier-zjx/template/positive/4-442.png new file mode 100644 index 0000000..97e8b28 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-442.png differ diff --git a/superpower19classifier-zjx/template/positive/4-443.png b/superpower19classifier-zjx/template/positive/4-443.png new file mode 100644 index 0000000..e4f5a89 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-443.png differ diff --git a/superpower19classifier-zjx/template/positive/4-444.png b/superpower19classifier-zjx/template/positive/4-444.png new file mode 100644 index 0000000..5232e8f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-444.png differ diff --git a/superpower19classifier-zjx/template/positive/4-445.png b/superpower19classifier-zjx/template/positive/4-445.png new file mode 100644 index 0000000..76627e2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-445.png differ diff --git a/superpower19classifier-zjx/template/positive/4-447.png b/superpower19classifier-zjx/template/positive/4-447.png new file mode 100644 index 0000000..bd930e7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-447.png differ diff --git a/superpower19classifier-zjx/template/positive/4-449.png b/superpower19classifier-zjx/template/positive/4-449.png new file mode 100644 index 0000000..4e51d56 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-449.png differ diff --git a/superpower19classifier-zjx/template/positive/4-45.png b/superpower19classifier-zjx/template/positive/4-45.png new file mode 100644 index 0000000..f7e9c22 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-45.png differ diff --git a/superpower19classifier-zjx/template/positive/4-450.png b/superpower19classifier-zjx/template/positive/4-450.png new file mode 100644 index 0000000..418c7c9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-450.png differ diff --git a/superpower19classifier-zjx/template/positive/4-451.png b/superpower19classifier-zjx/template/positive/4-451.png new file mode 100644 index 0000000..b06b485 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-451.png differ diff --git a/superpower19classifier-zjx/template/positive/4-453.png b/superpower19classifier-zjx/template/positive/4-453.png new file mode 100644 index 0000000..b4a2da7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-453.png differ diff --git a/superpower19classifier-zjx/template/positive/4-454.png b/superpower19classifier-zjx/template/positive/4-454.png new file mode 100644 index 0000000..c01d312 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-454.png differ diff --git a/superpower19classifier-zjx/template/positive/4-455.png b/superpower19classifier-zjx/template/positive/4-455.png new file mode 100644 index 0000000..b594a50 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-455.png differ diff --git a/superpower19classifier-zjx/template/positive/4-456.png b/superpower19classifier-zjx/template/positive/4-456.png new file mode 100644 index 0000000..d788b8d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-456.png differ diff --git a/superpower19classifier-zjx/template/positive/4-457.png b/superpower19classifier-zjx/template/positive/4-457.png new file mode 100644 index 0000000..cf055f9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-457.png differ diff --git a/superpower19classifier-zjx/template/positive/4-46.png b/superpower19classifier-zjx/template/positive/4-46.png new file mode 100644 index 0000000..9c32147 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-46.png differ diff --git a/superpower19classifier-zjx/template/positive/4-460.png b/superpower19classifier-zjx/template/positive/4-460.png new file mode 100644 index 0000000..b09a37d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-460.png differ diff --git a/superpower19classifier-zjx/template/positive/4-461.png b/superpower19classifier-zjx/template/positive/4-461.png new file mode 100644 index 0000000..4ea502b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-461.png differ diff --git a/superpower19classifier-zjx/template/positive/4-462.png b/superpower19classifier-zjx/template/positive/4-462.png new file mode 100644 index 0000000..881c1e4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-462.png differ diff --git a/superpower19classifier-zjx/template/positive/4-463.png b/superpower19classifier-zjx/template/positive/4-463.png new file mode 100644 index 0000000..201cae3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-463.png differ diff --git a/superpower19classifier-zjx/template/positive/4-464.png b/superpower19classifier-zjx/template/positive/4-464.png new file mode 100644 index 0000000..d3ae9fd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-464.png differ diff --git a/superpower19classifier-zjx/template/positive/4-465.png b/superpower19classifier-zjx/template/positive/4-465.png new file mode 100644 index 0000000..ae1234c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-465.png differ diff --git a/superpower19classifier-zjx/template/positive/4-466.png b/superpower19classifier-zjx/template/positive/4-466.png new file mode 100644 index 0000000..51050f2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-466.png differ diff --git a/superpower19classifier-zjx/template/positive/4-467.png b/superpower19classifier-zjx/template/positive/4-467.png new file mode 100644 index 0000000..24d4141 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-467.png differ diff --git a/superpower19classifier-zjx/template/positive/4-468.png b/superpower19classifier-zjx/template/positive/4-468.png new file mode 100644 index 0000000..599d41f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-468.png differ diff --git a/superpower19classifier-zjx/template/positive/4-469.png b/superpower19classifier-zjx/template/positive/4-469.png new file mode 100644 index 0000000..3d0b3e8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-469.png differ diff --git a/superpower19classifier-zjx/template/positive/4-470.png b/superpower19classifier-zjx/template/positive/4-470.png new file mode 100644 index 0000000..3317ede Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-470.png differ diff --git a/superpower19classifier-zjx/template/positive/4-471.png b/superpower19classifier-zjx/template/positive/4-471.png new file mode 100644 index 0000000..574d21b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-471.png differ diff --git a/superpower19classifier-zjx/template/positive/4-472.png b/superpower19classifier-zjx/template/positive/4-472.png new file mode 100644 index 0000000..4bfe6ef Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-472.png differ diff --git a/superpower19classifier-zjx/template/positive/4-473.png b/superpower19classifier-zjx/template/positive/4-473.png new file mode 100644 index 0000000..9dcdc2a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-473.png differ diff --git a/superpower19classifier-zjx/template/positive/4-474.png b/superpower19classifier-zjx/template/positive/4-474.png new file mode 100644 index 0000000..442ee91 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-474.png differ diff --git a/superpower19classifier-zjx/template/positive/4-475.png b/superpower19classifier-zjx/template/positive/4-475.png new file mode 100644 index 0000000..a196ccd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-475.png differ diff --git a/superpower19classifier-zjx/template/positive/4-477.png b/superpower19classifier-zjx/template/positive/4-477.png new file mode 100644 index 0000000..25f9c05 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-477.png differ diff --git a/superpower19classifier-zjx/template/positive/4-479.png b/superpower19classifier-zjx/template/positive/4-479.png new file mode 100644 index 0000000..91c1b1f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-479.png differ diff --git a/superpower19classifier-zjx/template/positive/4-49.png b/superpower19classifier-zjx/template/positive/4-49.png new file mode 100644 index 0000000..bc55815 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-49.png differ diff --git a/superpower19classifier-zjx/template/positive/4-50.png b/superpower19classifier-zjx/template/positive/4-50.png new file mode 100644 index 0000000..a9e5c52 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-50.png differ diff --git a/superpower19classifier-zjx/template/positive/4-51.png b/superpower19classifier-zjx/template/positive/4-51.png new file mode 100644 index 0000000..749047b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-51.png differ diff --git a/superpower19classifier-zjx/template/positive/4-52.png b/superpower19classifier-zjx/template/positive/4-52.png new file mode 100644 index 0000000..2a7fe5f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-52.png differ diff --git a/superpower19classifier-zjx/template/positive/4-53.png b/superpower19classifier-zjx/template/positive/4-53.png new file mode 100644 index 0000000..44b24d5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-53.png differ diff --git a/superpower19classifier-zjx/template/positive/4-54.png b/superpower19classifier-zjx/template/positive/4-54.png new file mode 100644 index 0000000..9ba5b33 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-54.png differ diff --git a/superpower19classifier-zjx/template/positive/4-56.png b/superpower19classifier-zjx/template/positive/4-56.png new file mode 100644 index 0000000..7355828 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-56.png differ diff --git a/superpower19classifier-zjx/template/positive/4-57.png b/superpower19classifier-zjx/template/positive/4-57.png new file mode 100644 index 0000000..a7fa6e1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-57.png differ diff --git a/superpower19classifier-zjx/template/positive/4-58.png b/superpower19classifier-zjx/template/positive/4-58.png new file mode 100644 index 0000000..49d93cc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-58.png differ diff --git a/superpower19classifier-zjx/template/positive/4-59.png b/superpower19classifier-zjx/template/positive/4-59.png new file mode 100644 index 0000000..42612ba Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-59.png differ diff --git a/superpower19classifier-zjx/template/positive/4-60.png b/superpower19classifier-zjx/template/positive/4-60.png new file mode 100644 index 0000000..f417606 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-60.png differ diff --git a/superpower19classifier-zjx/template/positive/4-61.png b/superpower19classifier-zjx/template/positive/4-61.png new file mode 100644 index 0000000..f1526f7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-61.png differ diff --git a/superpower19classifier-zjx/template/positive/4-64.png b/superpower19classifier-zjx/template/positive/4-64.png new file mode 100644 index 0000000..6081372 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-64.png differ diff --git a/superpower19classifier-zjx/template/positive/4-65.png b/superpower19classifier-zjx/template/positive/4-65.png new file mode 100644 index 0000000..9bcc831 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-65.png differ diff --git a/superpower19classifier-zjx/template/positive/4-66.png b/superpower19classifier-zjx/template/positive/4-66.png new file mode 100644 index 0000000..270e5af Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-66.png differ diff --git a/superpower19classifier-zjx/template/positive/4-67.png b/superpower19classifier-zjx/template/positive/4-67.png new file mode 100644 index 0000000..c3f386a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-67.png differ diff --git a/superpower19classifier-zjx/template/positive/4-7.png b/superpower19classifier-zjx/template/positive/4-7.png new file mode 100644 index 0000000..1946333 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-7.png differ diff --git a/superpower19classifier-zjx/template/positive/4-70.png b/superpower19classifier-zjx/template/positive/4-70.png new file mode 100644 index 0000000..42ed55e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-70.png differ diff --git a/superpower19classifier-zjx/template/positive/4-71.png b/superpower19classifier-zjx/template/positive/4-71.png new file mode 100644 index 0000000..4e7c743 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-71.png differ diff --git a/superpower19classifier-zjx/template/positive/4-72.png b/superpower19classifier-zjx/template/positive/4-72.png new file mode 100644 index 0000000..6bb90b1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-72.png differ diff --git a/superpower19classifier-zjx/template/positive/4-73.png b/superpower19classifier-zjx/template/positive/4-73.png new file mode 100644 index 0000000..b3f5b53 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-73.png differ diff --git a/superpower19classifier-zjx/template/positive/4-75.png b/superpower19classifier-zjx/template/positive/4-75.png new file mode 100644 index 0000000..f7aecf6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-75.png differ diff --git a/superpower19classifier-zjx/template/positive/4-76.png b/superpower19classifier-zjx/template/positive/4-76.png new file mode 100644 index 0000000..1172ed3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-76.png differ diff --git a/superpower19classifier-zjx/template/positive/4-77.png b/superpower19classifier-zjx/template/positive/4-77.png new file mode 100644 index 0000000..5839536 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-77.png differ diff --git a/superpower19classifier-zjx/template/positive/4-79.png b/superpower19classifier-zjx/template/positive/4-79.png new file mode 100644 index 0000000..082f3d5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-79.png differ diff --git a/superpower19classifier-zjx/template/positive/4-8.png b/superpower19classifier-zjx/template/positive/4-8.png new file mode 100644 index 0000000..91f4602 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-8.png differ diff --git a/superpower19classifier-zjx/template/positive/4-80.png b/superpower19classifier-zjx/template/positive/4-80.png new file mode 100644 index 0000000..9256e45 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-80.png differ diff --git a/superpower19classifier-zjx/template/positive/4-81.png b/superpower19classifier-zjx/template/positive/4-81.png new file mode 100644 index 0000000..5b91326 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-81.png differ diff --git a/superpower19classifier-zjx/template/positive/4-82.png b/superpower19classifier-zjx/template/positive/4-82.png new file mode 100644 index 0000000..15de237 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-82.png differ diff --git a/superpower19classifier-zjx/template/positive/4-83.png b/superpower19classifier-zjx/template/positive/4-83.png new file mode 100644 index 0000000..2d98fc0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-83.png differ diff --git a/superpower19classifier-zjx/template/positive/4-84.png b/superpower19classifier-zjx/template/positive/4-84.png new file mode 100644 index 0000000..e243379 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-84.png differ diff --git a/superpower19classifier-zjx/template/positive/4-85.png b/superpower19classifier-zjx/template/positive/4-85.png new file mode 100644 index 0000000..96b8ced Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-85.png differ diff --git a/superpower19classifier-zjx/template/positive/4-86.png b/superpower19classifier-zjx/template/positive/4-86.png new file mode 100644 index 0000000..8343be1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-86.png differ diff --git a/superpower19classifier-zjx/template/positive/4-87.png b/superpower19classifier-zjx/template/positive/4-87.png new file mode 100644 index 0000000..840c274 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-87.png differ diff --git a/superpower19classifier-zjx/template/positive/4-88.png b/superpower19classifier-zjx/template/positive/4-88.png new file mode 100644 index 0000000..6066287 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-88.png differ diff --git a/superpower19classifier-zjx/template/positive/4-9.png b/superpower19classifier-zjx/template/positive/4-9.png new file mode 100644 index 0000000..44e5cba Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-9.png differ diff --git a/superpower19classifier-zjx/template/positive/4-91.png b/superpower19classifier-zjx/template/positive/4-91.png new file mode 100644 index 0000000..a2e8520 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-91.png differ diff --git a/superpower19classifier-zjx/template/positive/4-93.png b/superpower19classifier-zjx/template/positive/4-93.png new file mode 100644 index 0000000..995fd24 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-93.png differ diff --git a/superpower19classifier-zjx/template/positive/4-95.png b/superpower19classifier-zjx/template/positive/4-95.png new file mode 100644 index 0000000..e61b316 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-95.png differ diff --git a/superpower19classifier-zjx/template/positive/4-96.png b/superpower19classifier-zjx/template/positive/4-96.png new file mode 100644 index 0000000..57a2d17 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-96.png differ diff --git a/superpower19classifier-zjx/template/positive/4-97.png b/superpower19classifier-zjx/template/positive/4-97.png new file mode 100644 index 0000000..fcfa26f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4-97.png differ diff --git a/superpower19classifier-zjx/template/positive/400.png b/superpower19classifier-zjx/template/positive/400.png new file mode 100644 index 0000000..7623408 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/400.png differ diff --git a/superpower19classifier-zjx/template/positive/404.png b/superpower19classifier-zjx/template/positive/404.png new file mode 100644 index 0000000..bbffbff Binary files /dev/null and b/superpower19classifier-zjx/template/positive/404.png differ diff --git a/superpower19classifier-zjx/template/positive/406.png b/superpower19classifier-zjx/template/positive/406.png new file mode 100644 index 0000000..ab696fc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/406.png differ diff --git a/superpower19classifier-zjx/template/positive/4095.png b/superpower19classifier-zjx/template/positive/4095.png new file mode 100644 index 0000000..8482154 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4095.png differ diff --git "a/superpower19classifier-zjx/template/positive/4095\347\232\204\345\211\257\346\234\254.png" "b/superpower19classifier-zjx/template/positive/4095\347\232\204\345\211\257\346\234\254.png" new file mode 100644 index 0000000..8482154 Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/4095\347\232\204\345\211\257\346\234\254.png" differ diff --git a/superpower19classifier-zjx/template/positive/410.png b/superpower19classifier-zjx/template/positive/410.png new file mode 100644 index 0000000..11b1efe Binary files /dev/null and b/superpower19classifier-zjx/template/positive/410.png differ diff --git a/superpower19classifier-zjx/template/positive/4100.png b/superpower19classifier-zjx/template/positive/4100.png new file mode 100644 index 0000000..d3950a4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4100.png differ diff --git a/superpower19classifier-zjx/template/positive/415.png b/superpower19classifier-zjx/template/positive/415.png new file mode 100644 index 0000000..94ab508 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/415.png differ diff --git a/superpower19classifier-zjx/template/positive/4165.png b/superpower19classifier-zjx/template/positive/4165.png new file mode 100644 index 0000000..3912114 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4165.png differ diff --git a/superpower19classifier-zjx/template/positive/4180.png b/superpower19classifier-zjx/template/positive/4180.png new file mode 100644 index 0000000..118a6ff Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4180.png differ diff --git "a/superpower19classifier-zjx/template/positive/4180\347\232\204\345\211\257\346\234\254 2.png" "b/superpower19classifier-zjx/template/positive/4180\347\232\204\345\211\257\346\234\254 2.png" new file mode 100644 index 0000000..118a6ff Binary files /dev/null and "b/superpower19classifier-zjx/template/positive/4180\347\232\204\345\211\257\346\234\254 2.png" differ diff --git a/superpower19classifier-zjx/template/positive/4195.png b/superpower19classifier-zjx/template/positive/4195.png new file mode 100644 index 0000000..fba73ba Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4195.png differ diff --git a/superpower19classifier-zjx/template/positive/4225.png b/superpower19classifier-zjx/template/positive/4225.png new file mode 100644 index 0000000..2c2cef5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4225.png differ diff --git a/superpower19classifier-zjx/template/positive/423.png b/superpower19classifier-zjx/template/positive/423.png new file mode 100644 index 0000000..0e46e81 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/423.png differ diff --git a/superpower19classifier-zjx/template/positive/4240.png b/superpower19classifier-zjx/template/positive/4240.png new file mode 100644 index 0000000..59e0b3a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4240.png differ diff --git a/superpower19classifier-zjx/template/positive/4255.png b/superpower19classifier-zjx/template/positive/4255.png new file mode 100644 index 0000000..b1b41ad Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4255.png differ diff --git a/superpower19classifier-zjx/template/positive/426.png b/superpower19classifier-zjx/template/positive/426.png new file mode 100644 index 0000000..3e1e9f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/426.png differ diff --git a/superpower19classifier-zjx/template/positive/4270.png b/superpower19classifier-zjx/template/positive/4270.png new file mode 100644 index 0000000..7530fb3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4270.png differ diff --git a/superpower19classifier-zjx/template/positive/428.png b/superpower19classifier-zjx/template/positive/428.png new file mode 100644 index 0000000..74aa65c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/428.png differ diff --git a/superpower19classifier-zjx/template/positive/4295.png b/superpower19classifier-zjx/template/positive/4295.png new file mode 100644 index 0000000..c19848a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4295.png differ diff --git a/superpower19classifier-zjx/template/positive/430.png b/superpower19classifier-zjx/template/positive/430.png new file mode 100644 index 0000000..2d3f755 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/430.png differ diff --git a/superpower19classifier-zjx/template/positive/4300.png b/superpower19classifier-zjx/template/positive/4300.png new file mode 100644 index 0000000..832c2fb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4300.png differ diff --git a/superpower19classifier-zjx/template/positive/44.png b/superpower19classifier-zjx/template/positive/44.png new file mode 100644 index 0000000..8904395 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/44.png differ diff --git a/superpower19classifier-zjx/template/positive/440.png b/superpower19classifier-zjx/template/positive/440.png new file mode 100644 index 0000000..c2ddefe Binary files /dev/null and b/superpower19classifier-zjx/template/positive/440.png differ diff --git a/superpower19classifier-zjx/template/positive/441.png b/superpower19classifier-zjx/template/positive/441.png new file mode 100644 index 0000000..a2cf52a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/441.png differ diff --git a/superpower19classifier-zjx/template/positive/4430.png b/superpower19classifier-zjx/template/positive/4430.png new file mode 100644 index 0000000..bd8bf89 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/4430.png differ diff --git a/superpower19classifier-zjx/template/positive/445.png b/superpower19classifier-zjx/template/positive/445.png new file mode 100644 index 0000000..76dc30f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/445.png differ diff --git a/superpower19classifier-zjx/template/positive/448.png b/superpower19classifier-zjx/template/positive/448.png new file mode 100644 index 0000000..138e50d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/448.png differ diff --git a/superpower19classifier-zjx/template/positive/450.png b/superpower19classifier-zjx/template/positive/450.png new file mode 100644 index 0000000..a55dae5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/450.png differ diff --git a/superpower19classifier-zjx/template/positive/451.png b/superpower19classifier-zjx/template/positive/451.png new file mode 100644 index 0000000..28a4e9a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/451.png differ diff --git a/superpower19classifier-zjx/template/positive/452.png b/superpower19classifier-zjx/template/positive/452.png new file mode 100644 index 0000000..227f770 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/452.png differ diff --git a/superpower19classifier-zjx/template/positive/454.png b/superpower19classifier-zjx/template/positive/454.png new file mode 100644 index 0000000..f185eeb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/454.png differ diff --git a/superpower19classifier-zjx/template/positive/457.png b/superpower19classifier-zjx/template/positive/457.png new file mode 100644 index 0000000..9bac23f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/457.png differ diff --git a/superpower19classifier-zjx/template/positive/460.png b/superpower19classifier-zjx/template/positive/460.png new file mode 100644 index 0000000..c1cd3b8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/460.png differ diff --git a/superpower19classifier-zjx/template/positive/463.png b/superpower19classifier-zjx/template/positive/463.png new file mode 100644 index 0000000..38c5415 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/463.png differ diff --git a/superpower19classifier-zjx/template/positive/467.png b/superpower19classifier-zjx/template/positive/467.png new file mode 100644 index 0000000..8b32531 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/467.png differ diff --git a/superpower19classifier-zjx/template/positive/469.png b/superpower19classifier-zjx/template/positive/469.png new file mode 100644 index 0000000..d1d7f0a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/469.png differ diff --git a/superpower19classifier-zjx/template/positive/47.png b/superpower19classifier-zjx/template/positive/47.png new file mode 100644 index 0000000..91b4b57 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/47.png differ diff --git a/superpower19classifier-zjx/template/positive/470.png b/superpower19classifier-zjx/template/positive/470.png new file mode 100644 index 0000000..9a70b86 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/470.png differ diff --git a/superpower19classifier-zjx/template/positive/472.png b/superpower19classifier-zjx/template/positive/472.png new file mode 100644 index 0000000..35520f4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/472.png differ diff --git a/superpower19classifier-zjx/template/positive/475.png b/superpower19classifier-zjx/template/positive/475.png new file mode 100644 index 0000000..e5735b2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/475.png differ diff --git a/superpower19classifier-zjx/template/positive/478.png b/superpower19classifier-zjx/template/positive/478.png new file mode 100644 index 0000000..720501d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/478.png differ diff --git a/superpower19classifier-zjx/template/positive/480.png b/superpower19classifier-zjx/template/positive/480.png new file mode 100644 index 0000000..4f35240 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/480.png differ diff --git a/superpower19classifier-zjx/template/positive/481.png b/superpower19classifier-zjx/template/positive/481.png new file mode 100644 index 0000000..c2b0759 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/481.png differ diff --git a/superpower19classifier-zjx/template/positive/483.png b/superpower19classifier-zjx/template/positive/483.png new file mode 100644 index 0000000..d624e0f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/483.png differ diff --git a/superpower19classifier-zjx/template/positive/485.png b/superpower19classifier-zjx/template/positive/485.png new file mode 100644 index 0000000..e6b6f11 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/485.png differ diff --git a/superpower19classifier-zjx/template/positive/489.png b/superpower19classifier-zjx/template/positive/489.png new file mode 100644 index 0000000..5258cea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/489.png differ diff --git a/superpower19classifier-zjx/template/positive/490.png b/superpower19classifier-zjx/template/positive/490.png new file mode 100644 index 0000000..d3a8a96 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/490.png differ diff --git a/superpower19classifier-zjx/template/positive/491.png b/superpower19classifier-zjx/template/positive/491.png new file mode 100644 index 0000000..e7fb59c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/491.png differ diff --git a/superpower19classifier-zjx/template/positive/492.png b/superpower19classifier-zjx/template/positive/492.png new file mode 100644 index 0000000..fc7e824 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/492.png differ diff --git a/superpower19classifier-zjx/template/positive/494.png b/superpower19classifier-zjx/template/positive/494.png new file mode 100644 index 0000000..364e983 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/494.png differ diff --git a/superpower19classifier-zjx/template/positive/496.png b/superpower19classifier-zjx/template/positive/496.png new file mode 100644 index 0000000..ece1cc2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/496.png differ diff --git a/superpower19classifier-zjx/template/positive/5-0.png b/superpower19classifier-zjx/template/positive/5-0.png new file mode 100644 index 0000000..50716fe Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-0.png differ diff --git a/superpower19classifier-zjx/template/positive/5-1.png b/superpower19classifier-zjx/template/positive/5-1.png new file mode 100644 index 0000000..d7300f4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-1.png differ diff --git a/superpower19classifier-zjx/template/positive/5-10.png b/superpower19classifier-zjx/template/positive/5-10.png new file mode 100644 index 0000000..9c97dd6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-10.png differ diff --git a/superpower19classifier-zjx/template/positive/5-100.png b/superpower19classifier-zjx/template/positive/5-100.png new file mode 100644 index 0000000..fb9c72c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-100.png differ diff --git a/superpower19classifier-zjx/template/positive/5-101.png b/superpower19classifier-zjx/template/positive/5-101.png new file mode 100644 index 0000000..9749b20 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-101.png differ diff --git a/superpower19classifier-zjx/template/positive/5-102.png b/superpower19classifier-zjx/template/positive/5-102.png new file mode 100644 index 0000000..42b4f81 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-102.png differ diff --git a/superpower19classifier-zjx/template/positive/5-103.png b/superpower19classifier-zjx/template/positive/5-103.png new file mode 100644 index 0000000..8c12702 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-103.png differ diff --git a/superpower19classifier-zjx/template/positive/5-104.png b/superpower19classifier-zjx/template/positive/5-104.png new file mode 100644 index 0000000..dec06c5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-104.png differ diff --git a/superpower19classifier-zjx/template/positive/5-105.png b/superpower19classifier-zjx/template/positive/5-105.png new file mode 100644 index 0000000..9a8be85 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-105.png differ diff --git a/superpower19classifier-zjx/template/positive/5-106.png b/superpower19classifier-zjx/template/positive/5-106.png new file mode 100644 index 0000000..5ca6ef4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-106.png differ diff --git a/superpower19classifier-zjx/template/positive/5-107.png b/superpower19classifier-zjx/template/positive/5-107.png new file mode 100644 index 0000000..c73d231 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-107.png differ diff --git a/superpower19classifier-zjx/template/positive/5-108.png b/superpower19classifier-zjx/template/positive/5-108.png new file mode 100644 index 0000000..c1dbe1a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-108.png differ diff --git a/superpower19classifier-zjx/template/positive/5-109.png b/superpower19classifier-zjx/template/positive/5-109.png new file mode 100644 index 0000000..0d0f539 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-109.png differ diff --git a/superpower19classifier-zjx/template/positive/5-11.png b/superpower19classifier-zjx/template/positive/5-11.png new file mode 100644 index 0000000..d9a25e2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-11.png differ diff --git a/superpower19classifier-zjx/template/positive/5-110.png b/superpower19classifier-zjx/template/positive/5-110.png new file mode 100644 index 0000000..89dd3b6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-110.png differ diff --git a/superpower19classifier-zjx/template/positive/5-111.png b/superpower19classifier-zjx/template/positive/5-111.png new file mode 100644 index 0000000..e3150b0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-111.png differ diff --git a/superpower19classifier-zjx/template/positive/5-112.png b/superpower19classifier-zjx/template/positive/5-112.png new file mode 100644 index 0000000..dc644b4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-112.png differ diff --git a/superpower19classifier-zjx/template/positive/5-113.png b/superpower19classifier-zjx/template/positive/5-113.png new file mode 100644 index 0000000..5a37cce Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-113.png differ diff --git a/superpower19classifier-zjx/template/positive/5-114.png b/superpower19classifier-zjx/template/positive/5-114.png new file mode 100644 index 0000000..6001326 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-114.png differ diff --git a/superpower19classifier-zjx/template/positive/5-115.png b/superpower19classifier-zjx/template/positive/5-115.png new file mode 100644 index 0000000..9899cee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-115.png differ diff --git a/superpower19classifier-zjx/template/positive/5-116.png b/superpower19classifier-zjx/template/positive/5-116.png new file mode 100644 index 0000000..5968ad4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-116.png differ diff --git a/superpower19classifier-zjx/template/positive/5-117.png b/superpower19classifier-zjx/template/positive/5-117.png new file mode 100644 index 0000000..b51f8d2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-117.png differ diff --git a/superpower19classifier-zjx/template/positive/5-118.png b/superpower19classifier-zjx/template/positive/5-118.png new file mode 100644 index 0000000..38d6267 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-118.png differ diff --git a/superpower19classifier-zjx/template/positive/5-119.png b/superpower19classifier-zjx/template/positive/5-119.png new file mode 100644 index 0000000..390366e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-119.png differ diff --git a/superpower19classifier-zjx/template/positive/5-12.png b/superpower19classifier-zjx/template/positive/5-12.png new file mode 100644 index 0000000..5a5047a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-12.png differ diff --git a/superpower19classifier-zjx/template/positive/5-120.png b/superpower19classifier-zjx/template/positive/5-120.png new file mode 100644 index 0000000..104ea9f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-120.png differ diff --git a/superpower19classifier-zjx/template/positive/5-121.png b/superpower19classifier-zjx/template/positive/5-121.png new file mode 100644 index 0000000..73f59ad Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-121.png differ diff --git a/superpower19classifier-zjx/template/positive/5-122.png b/superpower19classifier-zjx/template/positive/5-122.png new file mode 100644 index 0000000..8b6441a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-122.png differ diff --git a/superpower19classifier-zjx/template/positive/5-123.png b/superpower19classifier-zjx/template/positive/5-123.png new file mode 100644 index 0000000..c425758 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-123.png differ diff --git a/superpower19classifier-zjx/template/positive/5-124.png b/superpower19classifier-zjx/template/positive/5-124.png new file mode 100644 index 0000000..7f415d5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-124.png differ diff --git a/superpower19classifier-zjx/template/positive/5-125.png b/superpower19classifier-zjx/template/positive/5-125.png new file mode 100644 index 0000000..021d807 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-125.png differ diff --git a/superpower19classifier-zjx/template/positive/5-126.png b/superpower19classifier-zjx/template/positive/5-126.png new file mode 100644 index 0000000..5fd5b0c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-126.png differ diff --git a/superpower19classifier-zjx/template/positive/5-127.png b/superpower19classifier-zjx/template/positive/5-127.png new file mode 100644 index 0000000..a160b4f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-127.png differ diff --git a/superpower19classifier-zjx/template/positive/5-128.png b/superpower19classifier-zjx/template/positive/5-128.png new file mode 100644 index 0000000..d2159ad Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-128.png differ diff --git a/superpower19classifier-zjx/template/positive/5-129.png b/superpower19classifier-zjx/template/positive/5-129.png new file mode 100644 index 0000000..837de90 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-129.png differ diff --git a/superpower19classifier-zjx/template/positive/5-13.png b/superpower19classifier-zjx/template/positive/5-13.png new file mode 100644 index 0000000..d2bd7d9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-13.png differ diff --git a/superpower19classifier-zjx/template/positive/5-130.png b/superpower19classifier-zjx/template/positive/5-130.png new file mode 100644 index 0000000..1a36189 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-130.png differ diff --git a/superpower19classifier-zjx/template/positive/5-131.png b/superpower19classifier-zjx/template/positive/5-131.png new file mode 100644 index 0000000..094cf6c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-131.png differ diff --git a/superpower19classifier-zjx/template/positive/5-132.png b/superpower19classifier-zjx/template/positive/5-132.png new file mode 100644 index 0000000..0940897 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-132.png differ diff --git a/superpower19classifier-zjx/template/positive/5-133.png b/superpower19classifier-zjx/template/positive/5-133.png new file mode 100644 index 0000000..7349437 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-133.png differ diff --git a/superpower19classifier-zjx/template/positive/5-134.png b/superpower19classifier-zjx/template/positive/5-134.png new file mode 100644 index 0000000..e13f464 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-134.png differ diff --git a/superpower19classifier-zjx/template/positive/5-135.png b/superpower19classifier-zjx/template/positive/5-135.png new file mode 100644 index 0000000..2008a68 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-135.png differ diff --git a/superpower19classifier-zjx/template/positive/5-136.png b/superpower19classifier-zjx/template/positive/5-136.png new file mode 100644 index 0000000..94a204c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-136.png differ diff --git a/superpower19classifier-zjx/template/positive/5-137.png b/superpower19classifier-zjx/template/positive/5-137.png new file mode 100644 index 0000000..0ffba9b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-137.png differ diff --git a/superpower19classifier-zjx/template/positive/5-138.png b/superpower19classifier-zjx/template/positive/5-138.png new file mode 100644 index 0000000..398f685 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-138.png differ diff --git a/superpower19classifier-zjx/template/positive/5-139.png b/superpower19classifier-zjx/template/positive/5-139.png new file mode 100644 index 0000000..81ae099 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-139.png differ diff --git a/superpower19classifier-zjx/template/positive/5-14.png b/superpower19classifier-zjx/template/positive/5-14.png new file mode 100644 index 0000000..c8c8f7a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-14.png differ diff --git a/superpower19classifier-zjx/template/positive/5-140.png b/superpower19classifier-zjx/template/positive/5-140.png new file mode 100644 index 0000000..2ca2bf7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-140.png differ diff --git a/superpower19classifier-zjx/template/positive/5-141.png b/superpower19classifier-zjx/template/positive/5-141.png new file mode 100644 index 0000000..39ad56a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-141.png differ diff --git a/superpower19classifier-zjx/template/positive/5-142.png b/superpower19classifier-zjx/template/positive/5-142.png new file mode 100644 index 0000000..589adea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-142.png differ diff --git a/superpower19classifier-zjx/template/positive/5-143.png b/superpower19classifier-zjx/template/positive/5-143.png new file mode 100644 index 0000000..b89dbef Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-143.png differ diff --git a/superpower19classifier-zjx/template/positive/5-144.png b/superpower19classifier-zjx/template/positive/5-144.png new file mode 100644 index 0000000..3ce8ebf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-144.png differ diff --git a/superpower19classifier-zjx/template/positive/5-145.png b/superpower19classifier-zjx/template/positive/5-145.png new file mode 100644 index 0000000..7dd7334 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-145.png differ diff --git a/superpower19classifier-zjx/template/positive/5-146.png b/superpower19classifier-zjx/template/positive/5-146.png new file mode 100644 index 0000000..392b29e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-146.png differ diff --git a/superpower19classifier-zjx/template/positive/5-147.png b/superpower19classifier-zjx/template/positive/5-147.png new file mode 100644 index 0000000..fe91efa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-147.png differ diff --git a/superpower19classifier-zjx/template/positive/5-148.png b/superpower19classifier-zjx/template/positive/5-148.png new file mode 100644 index 0000000..0ce6df9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-148.png differ diff --git a/superpower19classifier-zjx/template/positive/5-149.png b/superpower19classifier-zjx/template/positive/5-149.png new file mode 100644 index 0000000..9d916b7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-149.png differ diff --git a/superpower19classifier-zjx/template/positive/5-15.png b/superpower19classifier-zjx/template/positive/5-15.png new file mode 100644 index 0000000..cd468c9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-15.png differ diff --git a/superpower19classifier-zjx/template/positive/5-150.png b/superpower19classifier-zjx/template/positive/5-150.png new file mode 100644 index 0000000..5bb1d33 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-150.png differ diff --git a/superpower19classifier-zjx/template/positive/5-151.png b/superpower19classifier-zjx/template/positive/5-151.png new file mode 100644 index 0000000..77288ef Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-151.png differ diff --git a/superpower19classifier-zjx/template/positive/5-152.png b/superpower19classifier-zjx/template/positive/5-152.png new file mode 100644 index 0000000..22e27fb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-152.png differ diff --git a/superpower19classifier-zjx/template/positive/5-153.png b/superpower19classifier-zjx/template/positive/5-153.png new file mode 100644 index 0000000..f6ebf25 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-153.png differ diff --git a/superpower19classifier-zjx/template/positive/5-154.png b/superpower19classifier-zjx/template/positive/5-154.png new file mode 100644 index 0000000..3c5c6d0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-154.png differ diff --git a/superpower19classifier-zjx/template/positive/5-155.png b/superpower19classifier-zjx/template/positive/5-155.png new file mode 100644 index 0000000..63efa1d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-155.png differ diff --git a/superpower19classifier-zjx/template/positive/5-16.png b/superpower19classifier-zjx/template/positive/5-16.png new file mode 100644 index 0000000..7993985 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-16.png differ diff --git a/superpower19classifier-zjx/template/positive/5-17.png b/superpower19classifier-zjx/template/positive/5-17.png new file mode 100644 index 0000000..add1747 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-17.png differ diff --git a/superpower19classifier-zjx/template/positive/5-18.png b/superpower19classifier-zjx/template/positive/5-18.png new file mode 100644 index 0000000..8c9786d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-18.png differ diff --git a/superpower19classifier-zjx/template/positive/5-2.png b/superpower19classifier-zjx/template/positive/5-2.png new file mode 100644 index 0000000..cb2087e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-2.png differ diff --git a/superpower19classifier-zjx/template/positive/5-20.png b/superpower19classifier-zjx/template/positive/5-20.png new file mode 100644 index 0000000..fffb494 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-20.png differ diff --git a/superpower19classifier-zjx/template/positive/5-21.png b/superpower19classifier-zjx/template/positive/5-21.png new file mode 100644 index 0000000..ec1568c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-21.png differ diff --git a/superpower19classifier-zjx/template/positive/5-22.png b/superpower19classifier-zjx/template/positive/5-22.png new file mode 100644 index 0000000..7448659 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-22.png differ diff --git a/superpower19classifier-zjx/template/positive/5-23.png b/superpower19classifier-zjx/template/positive/5-23.png new file mode 100644 index 0000000..611ed9a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-23.png differ diff --git a/superpower19classifier-zjx/template/positive/5-24.png b/superpower19classifier-zjx/template/positive/5-24.png new file mode 100644 index 0000000..b5d74f3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-24.png differ diff --git a/superpower19classifier-zjx/template/positive/5-25.png b/superpower19classifier-zjx/template/positive/5-25.png new file mode 100644 index 0000000..219b5fe Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-25.png differ diff --git a/superpower19classifier-zjx/template/positive/5-26.png b/superpower19classifier-zjx/template/positive/5-26.png new file mode 100644 index 0000000..9c7f2d9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-26.png differ diff --git a/superpower19classifier-zjx/template/positive/5-27.png b/superpower19classifier-zjx/template/positive/5-27.png new file mode 100644 index 0000000..3a093cb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-27.png differ diff --git a/superpower19classifier-zjx/template/positive/5-28.png b/superpower19classifier-zjx/template/positive/5-28.png new file mode 100644 index 0000000..269de0f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-28.png differ diff --git a/superpower19classifier-zjx/template/positive/5-29.png b/superpower19classifier-zjx/template/positive/5-29.png new file mode 100644 index 0000000..1ab3cb5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-29.png differ diff --git a/superpower19classifier-zjx/template/positive/5-3.png b/superpower19classifier-zjx/template/positive/5-3.png new file mode 100644 index 0000000..6de81fb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-3.png differ diff --git a/superpower19classifier-zjx/template/positive/5-30.png b/superpower19classifier-zjx/template/positive/5-30.png new file mode 100644 index 0000000..bba2ffb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-30.png differ diff --git a/superpower19classifier-zjx/template/positive/5-31.png b/superpower19classifier-zjx/template/positive/5-31.png new file mode 100644 index 0000000..f093dce Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-31.png differ diff --git a/superpower19classifier-zjx/template/positive/5-32.png b/superpower19classifier-zjx/template/positive/5-32.png new file mode 100644 index 0000000..e261a46 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-32.png differ diff --git a/superpower19classifier-zjx/template/positive/5-33.png b/superpower19classifier-zjx/template/positive/5-33.png new file mode 100644 index 0000000..4d64ed2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-33.png differ diff --git a/superpower19classifier-zjx/template/positive/5-34.png b/superpower19classifier-zjx/template/positive/5-34.png new file mode 100644 index 0000000..7ba1a30 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-34.png differ diff --git a/superpower19classifier-zjx/template/positive/5-35.png b/superpower19classifier-zjx/template/positive/5-35.png new file mode 100644 index 0000000..4a7b797 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-35.png differ diff --git a/superpower19classifier-zjx/template/positive/5-36.png b/superpower19classifier-zjx/template/positive/5-36.png new file mode 100644 index 0000000..bed55b9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-36.png differ diff --git a/superpower19classifier-zjx/template/positive/5-37.png b/superpower19classifier-zjx/template/positive/5-37.png new file mode 100644 index 0000000..5d2faea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-37.png differ diff --git a/superpower19classifier-zjx/template/positive/5-38.png b/superpower19classifier-zjx/template/positive/5-38.png new file mode 100644 index 0000000..f83062c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-38.png differ diff --git a/superpower19classifier-zjx/template/positive/5-39.png b/superpower19classifier-zjx/template/positive/5-39.png new file mode 100644 index 0000000..14a0c3a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-39.png differ diff --git a/superpower19classifier-zjx/template/positive/5-4.png b/superpower19classifier-zjx/template/positive/5-4.png new file mode 100644 index 0000000..3118ac3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-4.png differ diff --git a/superpower19classifier-zjx/template/positive/5-40.png b/superpower19classifier-zjx/template/positive/5-40.png new file mode 100644 index 0000000..4a16c21 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-40.png differ diff --git a/superpower19classifier-zjx/template/positive/5-41.png b/superpower19classifier-zjx/template/positive/5-41.png new file mode 100644 index 0000000..9cb92c7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-41.png differ diff --git a/superpower19classifier-zjx/template/positive/5-42.png b/superpower19classifier-zjx/template/positive/5-42.png new file mode 100644 index 0000000..03b923a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-42.png differ diff --git a/superpower19classifier-zjx/template/positive/5-43.png b/superpower19classifier-zjx/template/positive/5-43.png new file mode 100644 index 0000000..01f3041 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-43.png differ diff --git a/superpower19classifier-zjx/template/positive/5-44.png b/superpower19classifier-zjx/template/positive/5-44.png new file mode 100644 index 0000000..89f507b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-44.png differ diff --git a/superpower19classifier-zjx/template/positive/5-45.png b/superpower19classifier-zjx/template/positive/5-45.png new file mode 100644 index 0000000..e592229 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-45.png differ diff --git a/superpower19classifier-zjx/template/positive/5-46.png b/superpower19classifier-zjx/template/positive/5-46.png new file mode 100644 index 0000000..3d31ae8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-46.png differ diff --git a/superpower19classifier-zjx/template/positive/5-47.png b/superpower19classifier-zjx/template/positive/5-47.png new file mode 100644 index 0000000..2b4bca1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-47.png differ diff --git a/superpower19classifier-zjx/template/positive/5-48.png b/superpower19classifier-zjx/template/positive/5-48.png new file mode 100644 index 0000000..c7caedf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-48.png differ diff --git a/superpower19classifier-zjx/template/positive/5-49.png b/superpower19classifier-zjx/template/positive/5-49.png new file mode 100644 index 0000000..b94f9b8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-49.png differ diff --git a/superpower19classifier-zjx/template/positive/5-5.png b/superpower19classifier-zjx/template/positive/5-5.png new file mode 100644 index 0000000..ceec7bf Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-5.png differ diff --git a/superpower19classifier-zjx/template/positive/5-50.png b/superpower19classifier-zjx/template/positive/5-50.png new file mode 100644 index 0000000..c7da5e5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-50.png differ diff --git a/superpower19classifier-zjx/template/positive/5-51.png b/superpower19classifier-zjx/template/positive/5-51.png new file mode 100644 index 0000000..1443807 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-51.png differ diff --git a/superpower19classifier-zjx/template/positive/5-52.png b/superpower19classifier-zjx/template/positive/5-52.png new file mode 100644 index 0000000..e73fef8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-52.png differ diff --git a/superpower19classifier-zjx/template/positive/5-53.png b/superpower19classifier-zjx/template/positive/5-53.png new file mode 100644 index 0000000..1ce06f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-53.png differ diff --git a/superpower19classifier-zjx/template/positive/5-54.png b/superpower19classifier-zjx/template/positive/5-54.png new file mode 100644 index 0000000..5718551 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-54.png differ diff --git a/superpower19classifier-zjx/template/positive/5-55.png b/superpower19classifier-zjx/template/positive/5-55.png new file mode 100644 index 0000000..5a1abdd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-55.png differ diff --git a/superpower19classifier-zjx/template/positive/5-56.png b/superpower19classifier-zjx/template/positive/5-56.png new file mode 100644 index 0000000..f88dd60 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-56.png differ diff --git a/superpower19classifier-zjx/template/positive/5-57.png b/superpower19classifier-zjx/template/positive/5-57.png new file mode 100644 index 0000000..7405ec4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-57.png differ diff --git a/superpower19classifier-zjx/template/positive/5-58.png b/superpower19classifier-zjx/template/positive/5-58.png new file mode 100644 index 0000000..90f1922 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-58.png differ diff --git a/superpower19classifier-zjx/template/positive/5-59.png b/superpower19classifier-zjx/template/positive/5-59.png new file mode 100644 index 0000000..681449b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-59.png differ diff --git a/superpower19classifier-zjx/template/positive/5-6.png b/superpower19classifier-zjx/template/positive/5-6.png new file mode 100644 index 0000000..1a6e5b8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-6.png differ diff --git a/superpower19classifier-zjx/template/positive/5-60.png b/superpower19classifier-zjx/template/positive/5-60.png new file mode 100644 index 0000000..c892818 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-60.png differ diff --git a/superpower19classifier-zjx/template/positive/5-61.png b/superpower19classifier-zjx/template/positive/5-61.png new file mode 100644 index 0000000..0f7a4aa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-61.png differ diff --git a/superpower19classifier-zjx/template/positive/5-62.png b/superpower19classifier-zjx/template/positive/5-62.png new file mode 100644 index 0000000..c491b35 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-62.png differ diff --git a/superpower19classifier-zjx/template/positive/5-63.png b/superpower19classifier-zjx/template/positive/5-63.png new file mode 100644 index 0000000..0e61666 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-63.png differ diff --git a/superpower19classifier-zjx/template/positive/5-64.png b/superpower19classifier-zjx/template/positive/5-64.png new file mode 100644 index 0000000..1e3eae3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-64.png differ diff --git a/superpower19classifier-zjx/template/positive/5-65.png b/superpower19classifier-zjx/template/positive/5-65.png new file mode 100644 index 0000000..c5e273b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-65.png differ diff --git a/superpower19classifier-zjx/template/positive/5-66.png b/superpower19classifier-zjx/template/positive/5-66.png new file mode 100644 index 0000000..3ada384 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-66.png differ diff --git a/superpower19classifier-zjx/template/positive/5-67.png b/superpower19classifier-zjx/template/positive/5-67.png new file mode 100644 index 0000000..f5d7979 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-67.png differ diff --git a/superpower19classifier-zjx/template/positive/5-68.png b/superpower19classifier-zjx/template/positive/5-68.png new file mode 100644 index 0000000..4334825 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-68.png differ diff --git a/superpower19classifier-zjx/template/positive/5-69.png b/superpower19classifier-zjx/template/positive/5-69.png new file mode 100644 index 0000000..e4509af Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-69.png differ diff --git a/superpower19classifier-zjx/template/positive/5-7.png b/superpower19classifier-zjx/template/positive/5-7.png new file mode 100644 index 0000000..f9db62c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-7.png differ diff --git a/superpower19classifier-zjx/template/positive/5-70.png b/superpower19classifier-zjx/template/positive/5-70.png new file mode 100644 index 0000000..6b9ff4c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-70.png differ diff --git a/superpower19classifier-zjx/template/positive/5-71.png b/superpower19classifier-zjx/template/positive/5-71.png new file mode 100644 index 0000000..30d1dd6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-71.png differ diff --git a/superpower19classifier-zjx/template/positive/5-72.png b/superpower19classifier-zjx/template/positive/5-72.png new file mode 100644 index 0000000..2ea45ee Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-72.png differ diff --git a/superpower19classifier-zjx/template/positive/5-73.png b/superpower19classifier-zjx/template/positive/5-73.png new file mode 100644 index 0000000..a71ec8f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-73.png differ diff --git a/superpower19classifier-zjx/template/positive/5-74.png b/superpower19classifier-zjx/template/positive/5-74.png new file mode 100644 index 0000000..3b4ae8b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-74.png differ diff --git a/superpower19classifier-zjx/template/positive/5-75.png b/superpower19classifier-zjx/template/positive/5-75.png new file mode 100644 index 0000000..1256156 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-75.png differ diff --git a/superpower19classifier-zjx/template/positive/5-76.png b/superpower19classifier-zjx/template/positive/5-76.png new file mode 100644 index 0000000..2d44b2c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-76.png differ diff --git a/superpower19classifier-zjx/template/positive/5-77.png b/superpower19classifier-zjx/template/positive/5-77.png new file mode 100644 index 0000000..1fff065 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-77.png differ diff --git a/superpower19classifier-zjx/template/positive/5-78.png b/superpower19classifier-zjx/template/positive/5-78.png new file mode 100644 index 0000000..53ce804 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-78.png differ diff --git a/superpower19classifier-zjx/template/positive/5-79.png b/superpower19classifier-zjx/template/positive/5-79.png new file mode 100644 index 0000000..4a2c7e2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-79.png differ diff --git a/superpower19classifier-zjx/template/positive/5-8.png b/superpower19classifier-zjx/template/positive/5-8.png new file mode 100644 index 0000000..5101da2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-8.png differ diff --git a/superpower19classifier-zjx/template/positive/5-80.png b/superpower19classifier-zjx/template/positive/5-80.png new file mode 100644 index 0000000..da6f915 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-80.png differ diff --git a/superpower19classifier-zjx/template/positive/5-81.png b/superpower19classifier-zjx/template/positive/5-81.png new file mode 100644 index 0000000..40d6e3f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-81.png differ diff --git a/superpower19classifier-zjx/template/positive/5-82.png b/superpower19classifier-zjx/template/positive/5-82.png new file mode 100644 index 0000000..1251ede Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-82.png differ diff --git a/superpower19classifier-zjx/template/positive/5-83.png b/superpower19classifier-zjx/template/positive/5-83.png new file mode 100644 index 0000000..6dc2bf4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-83.png differ diff --git a/superpower19classifier-zjx/template/positive/5-84.png b/superpower19classifier-zjx/template/positive/5-84.png new file mode 100644 index 0000000..6780a94 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-84.png differ diff --git a/superpower19classifier-zjx/template/positive/5-85.png b/superpower19classifier-zjx/template/positive/5-85.png new file mode 100644 index 0000000..a83c3f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-85.png differ diff --git a/superpower19classifier-zjx/template/positive/5-86.png b/superpower19classifier-zjx/template/positive/5-86.png new file mode 100644 index 0000000..c241923 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-86.png differ diff --git a/superpower19classifier-zjx/template/positive/5-87.png b/superpower19classifier-zjx/template/positive/5-87.png new file mode 100644 index 0000000..f8319c4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-87.png differ diff --git a/superpower19classifier-zjx/template/positive/5-88.png b/superpower19classifier-zjx/template/positive/5-88.png new file mode 100644 index 0000000..5284321 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-88.png differ diff --git a/superpower19classifier-zjx/template/positive/5-89.png b/superpower19classifier-zjx/template/positive/5-89.png new file mode 100644 index 0000000..cccf2d2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-89.png differ diff --git a/superpower19classifier-zjx/template/positive/5-9.png b/superpower19classifier-zjx/template/positive/5-9.png new file mode 100644 index 0000000..930db8a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-9.png differ diff --git a/superpower19classifier-zjx/template/positive/5-90.png b/superpower19classifier-zjx/template/positive/5-90.png new file mode 100644 index 0000000..8479687 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-90.png differ diff --git a/superpower19classifier-zjx/template/positive/5-91.png b/superpower19classifier-zjx/template/positive/5-91.png new file mode 100644 index 0000000..5b69cf6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-91.png differ diff --git a/superpower19classifier-zjx/template/positive/5-92.png b/superpower19classifier-zjx/template/positive/5-92.png new file mode 100644 index 0000000..8929479 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-92.png differ diff --git a/superpower19classifier-zjx/template/positive/5-93.png b/superpower19classifier-zjx/template/positive/5-93.png new file mode 100644 index 0000000..696fc88 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-93.png differ diff --git a/superpower19classifier-zjx/template/positive/5-94.png b/superpower19classifier-zjx/template/positive/5-94.png new file mode 100644 index 0000000..d189b2f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-94.png differ diff --git a/superpower19classifier-zjx/template/positive/5-95.png b/superpower19classifier-zjx/template/positive/5-95.png new file mode 100644 index 0000000..ff2ae70 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-95.png differ diff --git a/superpower19classifier-zjx/template/positive/5-96.png b/superpower19classifier-zjx/template/positive/5-96.png new file mode 100644 index 0000000..0e3251e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-96.png differ diff --git a/superpower19classifier-zjx/template/positive/5-97.png b/superpower19classifier-zjx/template/positive/5-97.png new file mode 100644 index 0000000..8305701 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-97.png differ diff --git a/superpower19classifier-zjx/template/positive/5-98.png b/superpower19classifier-zjx/template/positive/5-98.png new file mode 100644 index 0000000..8ed6f47 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-98.png differ diff --git a/superpower19classifier-zjx/template/positive/5-99.png b/superpower19classifier-zjx/template/positive/5-99.png new file mode 100644 index 0000000..14cbf45 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5-99.png differ diff --git a/superpower19classifier-zjx/template/positive/5.png b/superpower19classifier-zjx/template/positive/5.png new file mode 100644 index 0000000..753b733 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5.png differ diff --git a/superpower19classifier-zjx/template/positive/50.png b/superpower19classifier-zjx/template/positive/50.png new file mode 100644 index 0000000..5a6115e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/50.png differ diff --git a/superpower19classifier-zjx/template/positive/500.png b/superpower19classifier-zjx/template/positive/500.png new file mode 100644 index 0000000..2feb15c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/500.png differ diff --git a/superpower19classifier-zjx/template/positive/503.png b/superpower19classifier-zjx/template/positive/503.png new file mode 100644 index 0000000..5522856 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/503.png differ diff --git a/superpower19classifier-zjx/template/positive/5035.png b/superpower19classifier-zjx/template/positive/5035.png new file mode 100644 index 0000000..1958eac Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5035.png differ diff --git a/superpower19classifier-zjx/template/positive/505.png b/superpower19classifier-zjx/template/positive/505.png new file mode 100644 index 0000000..254d318 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/505.png differ diff --git a/superpower19classifier-zjx/template/positive/507.png b/superpower19classifier-zjx/template/positive/507.png new file mode 100644 index 0000000..7c2fffa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/507.png differ diff --git a/superpower19classifier-zjx/template/positive/509.png b/superpower19classifier-zjx/template/positive/509.png new file mode 100644 index 0000000..c36c84d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/509.png differ diff --git a/superpower19classifier-zjx/template/positive/51.png b/superpower19classifier-zjx/template/positive/51.png new file mode 100644 index 0000000..a7b6e50 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/51.png differ diff --git a/superpower19classifier-zjx/template/positive/510.png b/superpower19classifier-zjx/template/positive/510.png new file mode 100644 index 0000000..79689ba Binary files /dev/null and b/superpower19classifier-zjx/template/positive/510.png differ diff --git a/superpower19classifier-zjx/template/positive/511.png b/superpower19classifier-zjx/template/positive/511.png new file mode 100644 index 0000000..749d1a3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/511.png differ diff --git a/superpower19classifier-zjx/template/positive/5110.png b/superpower19classifier-zjx/template/positive/5110.png new file mode 100644 index 0000000..e68f16c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5110.png differ diff --git a/superpower19classifier-zjx/template/positive/513.png b/superpower19classifier-zjx/template/positive/513.png new file mode 100644 index 0000000..f8da9fe Binary files /dev/null and b/superpower19classifier-zjx/template/positive/513.png differ diff --git a/superpower19classifier-zjx/template/positive/5135.png b/superpower19classifier-zjx/template/positive/5135.png new file mode 100644 index 0000000..e2560e2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5135.png differ diff --git a/superpower19classifier-zjx/template/positive/5145.png b/superpower19classifier-zjx/template/positive/5145.png new file mode 100644 index 0000000..9bf5346 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5145.png differ diff --git a/superpower19classifier-zjx/template/positive/5169.png b/superpower19classifier-zjx/template/positive/5169.png new file mode 100644 index 0000000..38edcd3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5169.png differ diff --git a/superpower19classifier-zjx/template/positive/5173.png b/superpower19classifier-zjx/template/positive/5173.png new file mode 100644 index 0000000..8a381b6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5173.png differ diff --git a/superpower19classifier-zjx/template/positive/5175.png b/superpower19classifier-zjx/template/positive/5175.png new file mode 100644 index 0000000..6a06c98 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5175.png differ diff --git a/superpower19classifier-zjx/template/positive/5177.png b/superpower19classifier-zjx/template/positive/5177.png new file mode 100644 index 0000000..bc4eac2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5177.png differ diff --git a/superpower19classifier-zjx/template/positive/5181.png b/superpower19classifier-zjx/template/positive/5181.png new file mode 100644 index 0000000..f755201 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5181.png differ diff --git a/superpower19classifier-zjx/template/positive/5183.png b/superpower19classifier-zjx/template/positive/5183.png new file mode 100644 index 0000000..2025f2e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5183.png differ diff --git a/superpower19classifier-zjx/template/positive/5185.png b/superpower19classifier-zjx/template/positive/5185.png new file mode 100644 index 0000000..cd8cf49 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5185.png differ diff --git a/superpower19classifier-zjx/template/positive/5187.png b/superpower19classifier-zjx/template/positive/5187.png new file mode 100644 index 0000000..b8ce526 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5187.png differ diff --git a/superpower19classifier-zjx/template/positive/5189.png b/superpower19classifier-zjx/template/positive/5189.png new file mode 100644 index 0000000..ed1c9fd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5189.png differ diff --git a/superpower19classifier-zjx/template/positive/5191.png b/superpower19classifier-zjx/template/positive/5191.png new file mode 100644 index 0000000..c5dc195 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5191.png differ diff --git a/superpower19classifier-zjx/template/positive/5193.png b/superpower19classifier-zjx/template/positive/5193.png new file mode 100644 index 0000000..0ae6968 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5193.png differ diff --git a/superpower19classifier-zjx/template/positive/5195.png b/superpower19classifier-zjx/template/positive/5195.png new file mode 100644 index 0000000..48b8281 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5195.png differ diff --git a/superpower19classifier-zjx/template/positive/5197.png b/superpower19classifier-zjx/template/positive/5197.png new file mode 100644 index 0000000..ef223f3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5197.png differ diff --git a/superpower19classifier-zjx/template/positive/5199.png b/superpower19classifier-zjx/template/positive/5199.png new file mode 100644 index 0000000..4608da9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5199.png differ diff --git a/superpower19classifier-zjx/template/positive/520.png b/superpower19classifier-zjx/template/positive/520.png new file mode 100644 index 0000000..512c764 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/520.png differ diff --git a/superpower19classifier-zjx/template/positive/5201.png b/superpower19classifier-zjx/template/positive/5201.png new file mode 100644 index 0000000..585587d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5201.png differ diff --git a/superpower19classifier-zjx/template/positive/5203.png b/superpower19classifier-zjx/template/positive/5203.png new file mode 100644 index 0000000..024eef6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5203.png differ diff --git a/superpower19classifier-zjx/template/positive/5205.png b/superpower19classifier-zjx/template/positive/5205.png new file mode 100644 index 0000000..5339ede Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5205.png differ diff --git a/superpower19classifier-zjx/template/positive/5207.png b/superpower19classifier-zjx/template/positive/5207.png new file mode 100644 index 0000000..da93042 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5207.png differ diff --git a/superpower19classifier-zjx/template/positive/5209.png b/superpower19classifier-zjx/template/positive/5209.png new file mode 100644 index 0000000..97ded6f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5209.png differ diff --git a/superpower19classifier-zjx/template/positive/5211.png b/superpower19classifier-zjx/template/positive/5211.png new file mode 100644 index 0000000..cc93067 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5211.png differ diff --git a/superpower19classifier-zjx/template/positive/5213.png b/superpower19classifier-zjx/template/positive/5213.png new file mode 100644 index 0000000..5885684 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5213.png differ diff --git a/superpower19classifier-zjx/template/positive/5215.png b/superpower19classifier-zjx/template/positive/5215.png new file mode 100644 index 0000000..6edad26 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5215.png differ diff --git a/superpower19classifier-zjx/template/positive/5216.png b/superpower19classifier-zjx/template/positive/5216.png new file mode 100644 index 0000000..53f51d9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5216.png differ diff --git a/superpower19classifier-zjx/template/positive/5218.png b/superpower19classifier-zjx/template/positive/5218.png new file mode 100644 index 0000000..a74dec4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5218.png differ diff --git a/superpower19classifier-zjx/template/positive/5220.png b/superpower19classifier-zjx/template/positive/5220.png new file mode 100644 index 0000000..3676579 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5220.png differ diff --git a/superpower19classifier-zjx/template/positive/5221.png b/superpower19classifier-zjx/template/positive/5221.png new file mode 100644 index 0000000..b82e0f6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5221.png differ diff --git a/superpower19classifier-zjx/template/positive/5223.png b/superpower19classifier-zjx/template/positive/5223.png new file mode 100644 index 0000000..bc838ed Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5223.png differ diff --git a/superpower19classifier-zjx/template/positive/5224.png b/superpower19classifier-zjx/template/positive/5224.png new file mode 100644 index 0000000..eaaadec Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5224.png differ diff --git a/superpower19classifier-zjx/template/positive/5226.png b/superpower19classifier-zjx/template/positive/5226.png new file mode 100644 index 0000000..b4a572f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5226.png differ diff --git a/superpower19classifier-zjx/template/positive/5228.png b/superpower19classifier-zjx/template/positive/5228.png new file mode 100644 index 0000000..c047c00 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5228.png differ diff --git a/superpower19classifier-zjx/template/positive/5230.png b/superpower19classifier-zjx/template/positive/5230.png new file mode 100644 index 0000000..7604429 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5230.png differ diff --git a/superpower19classifier-zjx/template/positive/5232.png b/superpower19classifier-zjx/template/positive/5232.png new file mode 100644 index 0000000..2ca80f7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5232.png differ diff --git a/superpower19classifier-zjx/template/positive/530.png b/superpower19classifier-zjx/template/positive/530.png new file mode 100644 index 0000000..f165d4c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/530.png differ diff --git a/superpower19classifier-zjx/template/positive/540.png b/superpower19classifier-zjx/template/positive/540.png new file mode 100644 index 0000000..34aac68 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/540.png differ diff --git a/superpower19classifier-zjx/template/positive/55.png b/superpower19classifier-zjx/template/positive/55.png new file mode 100644 index 0000000..e607707 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/55.png differ diff --git a/superpower19classifier-zjx/template/positive/550.png b/superpower19classifier-zjx/template/positive/550.png new file mode 100644 index 0000000..6c8d3a5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/550.png differ diff --git a/superpower19classifier-zjx/template/positive/565.png b/superpower19classifier-zjx/template/positive/565.png new file mode 100644 index 0000000..c7b1946 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/565.png differ diff --git a/superpower19classifier-zjx/template/positive/57.png b/superpower19classifier-zjx/template/positive/57.png new file mode 100644 index 0000000..f9be980 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/57.png differ diff --git a/superpower19classifier-zjx/template/positive/570.png b/superpower19classifier-zjx/template/positive/570.png new file mode 100644 index 0000000..cd5ab5b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/570.png differ diff --git a/superpower19classifier-zjx/template/positive/5703.png b/superpower19classifier-zjx/template/positive/5703.png new file mode 100644 index 0000000..4da749a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5703.png differ diff --git a/superpower19classifier-zjx/template/positive/5705.png b/superpower19classifier-zjx/template/positive/5705.png new file mode 100644 index 0000000..aafa8e6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5705.png differ diff --git a/superpower19classifier-zjx/template/positive/5708.png b/superpower19classifier-zjx/template/positive/5708.png new file mode 100644 index 0000000..e891826 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5708.png differ diff --git a/superpower19classifier-zjx/template/positive/5711.png b/superpower19classifier-zjx/template/positive/5711.png new file mode 100644 index 0000000..d7ff264 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5711.png differ diff --git a/superpower19classifier-zjx/template/positive/5713.png b/superpower19classifier-zjx/template/positive/5713.png new file mode 100644 index 0000000..f8f1ef8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5713.png differ diff --git a/superpower19classifier-zjx/template/positive/5716.png b/superpower19classifier-zjx/template/positive/5716.png new file mode 100644 index 0000000..106bf66 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5716.png differ diff --git a/superpower19classifier-zjx/template/positive/5719.png b/superpower19classifier-zjx/template/positive/5719.png new file mode 100644 index 0000000..a639f71 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5719.png differ diff --git a/superpower19classifier-zjx/template/positive/5722.png b/superpower19classifier-zjx/template/positive/5722.png new file mode 100644 index 0000000..a9cff46 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5722.png differ diff --git a/superpower19classifier-zjx/template/positive/5725.png b/superpower19classifier-zjx/template/positive/5725.png new file mode 100644 index 0000000..06950dc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5725.png differ diff --git a/superpower19classifier-zjx/template/positive/5727.png b/superpower19classifier-zjx/template/positive/5727.png new file mode 100644 index 0000000..a0b8442 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5727.png differ diff --git a/superpower19classifier-zjx/template/positive/5729.png b/superpower19classifier-zjx/template/positive/5729.png new file mode 100644 index 0000000..15d5862 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5729.png differ diff --git a/superpower19classifier-zjx/template/positive/5731.png b/superpower19classifier-zjx/template/positive/5731.png new file mode 100644 index 0000000..b21a013 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5731.png differ diff --git a/superpower19classifier-zjx/template/positive/5734.png b/superpower19classifier-zjx/template/positive/5734.png new file mode 100644 index 0000000..2a30806 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5734.png differ diff --git a/superpower19classifier-zjx/template/positive/5740.png b/superpower19classifier-zjx/template/positive/5740.png new file mode 100644 index 0000000..fcf0afd Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5740.png differ diff --git a/superpower19classifier-zjx/template/positive/5743.png b/superpower19classifier-zjx/template/positive/5743.png new file mode 100644 index 0000000..a0a688f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5743.png differ diff --git a/superpower19classifier-zjx/template/positive/5745.png b/superpower19classifier-zjx/template/positive/5745.png new file mode 100644 index 0000000..e15370e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5745.png differ diff --git a/superpower19classifier-zjx/template/positive/580.png b/superpower19classifier-zjx/template/positive/580.png new file mode 100644 index 0000000..3a5a16e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/580.png differ diff --git a/superpower19classifier-zjx/template/positive/5889.png b/superpower19classifier-zjx/template/positive/5889.png new file mode 100644 index 0000000..1da6d2a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5889.png differ diff --git a/superpower19classifier-zjx/template/positive/5890.png b/superpower19classifier-zjx/template/positive/5890.png new file mode 100644 index 0000000..183b9f2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5890.png differ diff --git a/superpower19classifier-zjx/template/positive/5892.png b/superpower19classifier-zjx/template/positive/5892.png new file mode 100644 index 0000000..d71b50f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5892.png differ diff --git a/superpower19classifier-zjx/template/positive/5894.png b/superpower19classifier-zjx/template/positive/5894.png new file mode 100644 index 0000000..7586743 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5894.png differ diff --git a/superpower19classifier-zjx/template/positive/5896.png b/superpower19classifier-zjx/template/positive/5896.png new file mode 100644 index 0000000..b299419 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5896.png differ diff --git a/superpower19classifier-zjx/template/positive/5898.png b/superpower19classifier-zjx/template/positive/5898.png new file mode 100644 index 0000000..701cb42 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5898.png differ diff --git a/superpower19classifier-zjx/template/positive/59.png b/superpower19classifier-zjx/template/positive/59.png new file mode 100644 index 0000000..9b14e76 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/59.png differ diff --git a/superpower19classifier-zjx/template/positive/590.png b/superpower19classifier-zjx/template/positive/590.png new file mode 100644 index 0000000..dd71c7e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/590.png differ diff --git a/superpower19classifier-zjx/template/positive/5900.png b/superpower19classifier-zjx/template/positive/5900.png new file mode 100644 index 0000000..6808eab Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5900.png differ diff --git a/superpower19classifier-zjx/template/positive/5901.png b/superpower19classifier-zjx/template/positive/5901.png new file mode 100644 index 0000000..abd1f8c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5901.png differ diff --git a/superpower19classifier-zjx/template/positive/5903.png b/superpower19classifier-zjx/template/positive/5903.png new file mode 100644 index 0000000..f21417c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5903.png differ diff --git a/superpower19classifier-zjx/template/positive/5905.png b/superpower19classifier-zjx/template/positive/5905.png new file mode 100644 index 0000000..e5efd1a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5905.png differ diff --git a/superpower19classifier-zjx/template/positive/5906.png b/superpower19classifier-zjx/template/positive/5906.png new file mode 100644 index 0000000..28578ba Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5906.png differ diff --git a/superpower19classifier-zjx/template/positive/5908.png b/superpower19classifier-zjx/template/positive/5908.png new file mode 100644 index 0000000..196dd78 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5908.png differ diff --git a/superpower19classifier-zjx/template/positive/5910.png b/superpower19classifier-zjx/template/positive/5910.png new file mode 100644 index 0000000..dbc088d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5910.png differ diff --git a/superpower19classifier-zjx/template/positive/5912.png b/superpower19classifier-zjx/template/positive/5912.png new file mode 100644 index 0000000..a84ddbb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5912.png differ diff --git a/superpower19classifier-zjx/template/positive/5913.png b/superpower19classifier-zjx/template/positive/5913.png new file mode 100644 index 0000000..bef8b66 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5913.png differ diff --git a/superpower19classifier-zjx/template/positive/5914.png b/superpower19classifier-zjx/template/positive/5914.png new file mode 100644 index 0000000..e93d086 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5914.png differ diff --git a/superpower19classifier-zjx/template/positive/5915.png b/superpower19classifier-zjx/template/positive/5915.png new file mode 100644 index 0000000..8df3bae Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5915.png differ diff --git a/superpower19classifier-zjx/template/positive/5916.png b/superpower19classifier-zjx/template/positive/5916.png new file mode 100644 index 0000000..bd2079d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5916.png differ diff --git a/superpower19classifier-zjx/template/positive/5918.png b/superpower19classifier-zjx/template/positive/5918.png new file mode 100644 index 0000000..2b553d3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5918.png differ diff --git a/superpower19classifier-zjx/template/positive/5919.png b/superpower19classifier-zjx/template/positive/5919.png new file mode 100644 index 0000000..ca0629d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5919.png differ diff --git a/superpower19classifier-zjx/template/positive/5921.png b/superpower19classifier-zjx/template/positive/5921.png new file mode 100644 index 0000000..1acbc4d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5921.png differ diff --git a/superpower19classifier-zjx/template/positive/5923.png b/superpower19classifier-zjx/template/positive/5923.png new file mode 100644 index 0000000..decc4f0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5923.png differ diff --git a/superpower19classifier-zjx/template/positive/5924.png b/superpower19classifier-zjx/template/positive/5924.png new file mode 100644 index 0000000..6ca00ea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5924.png differ diff --git a/superpower19classifier-zjx/template/positive/5925.png b/superpower19classifier-zjx/template/positive/5925.png new file mode 100644 index 0000000..e382e6f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5925.png differ diff --git a/superpower19classifier-zjx/template/positive/5926.png b/superpower19classifier-zjx/template/positive/5926.png new file mode 100644 index 0000000..594332b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5926.png differ diff --git a/superpower19classifier-zjx/template/positive/5927.png b/superpower19classifier-zjx/template/positive/5927.png new file mode 100644 index 0000000..dfa174e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5927.png differ diff --git a/superpower19classifier-zjx/template/positive/5928.png b/superpower19classifier-zjx/template/positive/5928.png new file mode 100644 index 0000000..39ba68c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5928.png differ diff --git a/superpower19classifier-zjx/template/positive/5931.png b/superpower19classifier-zjx/template/positive/5931.png new file mode 100644 index 0000000..77ae117 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5931.png differ diff --git a/superpower19classifier-zjx/template/positive/5933.png b/superpower19classifier-zjx/template/positive/5933.png new file mode 100644 index 0000000..6958a29 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5933.png differ diff --git a/superpower19classifier-zjx/template/positive/5934.png b/superpower19classifier-zjx/template/positive/5934.png new file mode 100644 index 0000000..ea6f9fa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5934.png differ diff --git a/superpower19classifier-zjx/template/positive/5937.png b/superpower19classifier-zjx/template/positive/5937.png new file mode 100644 index 0000000..d6ed295 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5937.png differ diff --git a/superpower19classifier-zjx/template/positive/5938.png b/superpower19classifier-zjx/template/positive/5938.png new file mode 100644 index 0000000..5c2e538 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5938.png differ diff --git a/superpower19classifier-zjx/template/positive/5939.png b/superpower19classifier-zjx/template/positive/5939.png new file mode 100644 index 0000000..8095bb3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5939.png differ diff --git a/superpower19classifier-zjx/template/positive/5940.png b/superpower19classifier-zjx/template/positive/5940.png new file mode 100644 index 0000000..756137f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5940.png differ diff --git a/superpower19classifier-zjx/template/positive/5942.png b/superpower19classifier-zjx/template/positive/5942.png new file mode 100644 index 0000000..781c6eb Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5942.png differ diff --git a/superpower19classifier-zjx/template/positive/5943.png b/superpower19classifier-zjx/template/positive/5943.png new file mode 100644 index 0000000..52bb624 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5943.png differ diff --git a/superpower19classifier-zjx/template/positive/5944.png b/superpower19classifier-zjx/template/positive/5944.png new file mode 100644 index 0000000..79b10de Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5944.png differ diff --git a/superpower19classifier-zjx/template/positive/5946.png b/superpower19classifier-zjx/template/positive/5946.png new file mode 100644 index 0000000..dca9b03 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5946.png differ diff --git a/superpower19classifier-zjx/template/positive/5947.png b/superpower19classifier-zjx/template/positive/5947.png new file mode 100644 index 0000000..d64aaf9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5947.png differ diff --git a/superpower19classifier-zjx/template/positive/5948.png b/superpower19classifier-zjx/template/positive/5948.png new file mode 100644 index 0000000..17e1fa1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5948.png differ diff --git a/superpower19classifier-zjx/template/positive/5949.png b/superpower19classifier-zjx/template/positive/5949.png new file mode 100644 index 0000000..ab065bc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5949.png differ diff --git a/superpower19classifier-zjx/template/positive/5950.png b/superpower19classifier-zjx/template/positive/5950.png new file mode 100644 index 0000000..96616fa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5950.png differ diff --git a/superpower19classifier-zjx/template/positive/5951.png b/superpower19classifier-zjx/template/positive/5951.png new file mode 100644 index 0000000..e107394 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5951.png differ diff --git a/superpower19classifier-zjx/template/positive/5952.png b/superpower19classifier-zjx/template/positive/5952.png new file mode 100644 index 0000000..f8ab30c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5952.png differ diff --git a/superpower19classifier-zjx/template/positive/5953.png b/superpower19classifier-zjx/template/positive/5953.png new file mode 100644 index 0000000..9568c4c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5953.png differ diff --git a/superpower19classifier-zjx/template/positive/5955.png b/superpower19classifier-zjx/template/positive/5955.png new file mode 100644 index 0000000..83922f7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5955.png differ diff --git a/superpower19classifier-zjx/template/positive/5956.png b/superpower19classifier-zjx/template/positive/5956.png new file mode 100644 index 0000000..34a1392 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5956.png differ diff --git a/superpower19classifier-zjx/template/positive/5957.png b/superpower19classifier-zjx/template/positive/5957.png new file mode 100644 index 0000000..3064323 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5957.png differ diff --git a/superpower19classifier-zjx/template/positive/5959.png b/superpower19classifier-zjx/template/positive/5959.png new file mode 100644 index 0000000..b330c4d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5959.png differ diff --git a/superpower19classifier-zjx/template/positive/5960.png b/superpower19classifier-zjx/template/positive/5960.png new file mode 100644 index 0000000..0536bde Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5960.png differ diff --git a/superpower19classifier-zjx/template/positive/5963.png b/superpower19classifier-zjx/template/positive/5963.png new file mode 100644 index 0000000..5e70dca Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5963.png differ diff --git a/superpower19classifier-zjx/template/positive/5966.png b/superpower19classifier-zjx/template/positive/5966.png new file mode 100644 index 0000000..8e669aa Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5966.png differ diff --git a/superpower19classifier-zjx/template/positive/5968.png b/superpower19classifier-zjx/template/positive/5968.png new file mode 100644 index 0000000..c969b0e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5968.png differ diff --git a/superpower19classifier-zjx/template/positive/5970.png b/superpower19classifier-zjx/template/positive/5970.png new file mode 100644 index 0000000..5c73d73 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5970.png differ diff --git a/superpower19classifier-zjx/template/positive/5971.png b/superpower19classifier-zjx/template/positive/5971.png new file mode 100644 index 0000000..d44ba25 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5971.png differ diff --git a/superpower19classifier-zjx/template/positive/5972.png b/superpower19classifier-zjx/template/positive/5972.png new file mode 100644 index 0000000..e0a5768 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5972.png differ diff --git a/superpower19classifier-zjx/template/positive/5973.png b/superpower19classifier-zjx/template/positive/5973.png new file mode 100644 index 0000000..839bb87 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/5973.png differ diff --git a/superpower19classifier-zjx/template/positive/60.png b/superpower19classifier-zjx/template/positive/60.png new file mode 100644 index 0000000..41a6923 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/60.png differ diff --git a/superpower19classifier-zjx/template/positive/600.png b/superpower19classifier-zjx/template/positive/600.png new file mode 100644 index 0000000..f799aa5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/600.png differ diff --git a/superpower19classifier-zjx/template/positive/6023.png b/superpower19classifier-zjx/template/positive/6023.png new file mode 100644 index 0000000..be8ddd5 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6023.png differ diff --git a/superpower19classifier-zjx/template/positive/6024.png b/superpower19classifier-zjx/template/positive/6024.png new file mode 100644 index 0000000..0acb851 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6024.png differ diff --git a/superpower19classifier-zjx/template/positive/6026.png b/superpower19classifier-zjx/template/positive/6026.png new file mode 100644 index 0000000..c41321c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6026.png differ diff --git a/superpower19classifier-zjx/template/positive/6028.png b/superpower19classifier-zjx/template/positive/6028.png new file mode 100644 index 0000000..53f1456 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6028.png differ diff --git a/superpower19classifier-zjx/template/positive/6030.png b/superpower19classifier-zjx/template/positive/6030.png new file mode 100644 index 0000000..c5ed2ae Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6030.png differ diff --git a/superpower19classifier-zjx/template/positive/6031.png b/superpower19classifier-zjx/template/positive/6031.png new file mode 100644 index 0000000..c907566 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6031.png differ diff --git a/superpower19classifier-zjx/template/positive/6032.png b/superpower19classifier-zjx/template/positive/6032.png new file mode 100644 index 0000000..3842252 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6032.png differ diff --git a/superpower19classifier-zjx/template/positive/6033.png b/superpower19classifier-zjx/template/positive/6033.png new file mode 100644 index 0000000..4c342f4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6033.png differ diff --git a/superpower19classifier-zjx/template/positive/610.png b/superpower19classifier-zjx/template/positive/610.png new file mode 100644 index 0000000..fb4d95a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/610.png differ diff --git a/superpower19classifier-zjx/template/positive/6182.png b/superpower19classifier-zjx/template/positive/6182.png new file mode 100644 index 0000000..685b5d1 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6182.png differ diff --git a/superpower19classifier-zjx/template/positive/6184.png b/superpower19classifier-zjx/template/positive/6184.png new file mode 100644 index 0000000..87b8ad9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6184.png differ diff --git a/superpower19classifier-zjx/template/positive/6186.png b/superpower19classifier-zjx/template/positive/6186.png new file mode 100644 index 0000000..4fb01f3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6186.png differ diff --git a/superpower19classifier-zjx/template/positive/6189.png b/superpower19classifier-zjx/template/positive/6189.png new file mode 100644 index 0000000..a06f287 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6189.png differ diff --git a/superpower19classifier-zjx/template/positive/6192.png b/superpower19classifier-zjx/template/positive/6192.png new file mode 100644 index 0000000..8f7df05 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6192.png differ diff --git a/superpower19classifier-zjx/template/positive/6197.png b/superpower19classifier-zjx/template/positive/6197.png new file mode 100644 index 0000000..b9bd510 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6197.png differ diff --git a/superpower19classifier-zjx/template/positive/620.png b/superpower19classifier-zjx/template/positive/620.png new file mode 100644 index 0000000..6c4e37a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/620.png differ diff --git a/superpower19classifier-zjx/template/positive/6200.png b/superpower19classifier-zjx/template/positive/6200.png new file mode 100644 index 0000000..8c8506a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6200.png differ diff --git a/superpower19classifier-zjx/template/positive/6205.png b/superpower19classifier-zjx/template/positive/6205.png new file mode 100644 index 0000000..d0a0c56 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6205.png differ diff --git a/superpower19classifier-zjx/template/positive/6208.png b/superpower19classifier-zjx/template/positive/6208.png new file mode 100644 index 0000000..8182c51 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6208.png differ diff --git a/superpower19classifier-zjx/template/positive/63.png b/superpower19classifier-zjx/template/positive/63.png new file mode 100644 index 0000000..fd1218d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/63.png differ diff --git a/superpower19classifier-zjx/template/positive/630.png b/superpower19classifier-zjx/template/positive/630.png new file mode 100644 index 0000000..17f486e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/630.png differ diff --git a/superpower19classifier-zjx/template/positive/6346.png b/superpower19classifier-zjx/template/positive/6346.png new file mode 100644 index 0000000..955f939 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6346.png differ diff --git a/superpower19classifier-zjx/template/positive/6350.png b/superpower19classifier-zjx/template/positive/6350.png new file mode 100644 index 0000000..b9df161 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6350.png differ diff --git a/superpower19classifier-zjx/template/positive/6370.png b/superpower19classifier-zjx/template/positive/6370.png new file mode 100644 index 0000000..0b933a6 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6370.png differ diff --git a/superpower19classifier-zjx/template/positive/6374.png b/superpower19classifier-zjx/template/positive/6374.png new file mode 100644 index 0000000..338927c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6374.png differ diff --git a/superpower19classifier-zjx/template/positive/6390.png b/superpower19classifier-zjx/template/positive/6390.png new file mode 100644 index 0000000..cdd1db9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6390.png differ diff --git a/superpower19classifier-zjx/template/positive/64.png b/superpower19classifier-zjx/template/positive/64.png new file mode 100644 index 0000000..8df7bc2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/64.png differ diff --git a/superpower19classifier-zjx/template/positive/640.png b/superpower19classifier-zjx/template/positive/640.png new file mode 100644 index 0000000..ea8e5a7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/640.png differ diff --git a/superpower19classifier-zjx/template/positive/6423.png b/superpower19classifier-zjx/template/positive/6423.png new file mode 100644 index 0000000..f8efc51 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6423.png differ diff --git a/superpower19classifier-zjx/template/positive/6428.png b/superpower19classifier-zjx/template/positive/6428.png new file mode 100644 index 0000000..e4fa047 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6428.png differ diff --git a/superpower19classifier-zjx/template/positive/6435.png b/superpower19classifier-zjx/template/positive/6435.png new file mode 100644 index 0000000..edf0cf0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/6435.png differ diff --git a/superpower19classifier-zjx/template/positive/65.png b/superpower19classifier-zjx/template/positive/65.png new file mode 100644 index 0000000..5a40ef4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/65.png differ diff --git a/superpower19classifier-zjx/template/positive/650.png b/superpower19classifier-zjx/template/positive/650.png new file mode 100644 index 0000000..2ac7ad7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/650.png differ diff --git a/superpower19classifier-zjx/template/positive/66.png b/superpower19classifier-zjx/template/positive/66.png new file mode 100644 index 0000000..7691774 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/66.png differ diff --git a/superpower19classifier-zjx/template/positive/660.png b/superpower19classifier-zjx/template/positive/660.png new file mode 100644 index 0000000..e70c19c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/660.png differ diff --git a/superpower19classifier-zjx/template/positive/67.png b/superpower19classifier-zjx/template/positive/67.png new file mode 100644 index 0000000..ce920b8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/67.png differ diff --git a/superpower19classifier-zjx/template/positive/670.png b/superpower19classifier-zjx/template/positive/670.png new file mode 100644 index 0000000..b3086d8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/670.png differ diff --git a/superpower19classifier-zjx/template/positive/680.png b/superpower19classifier-zjx/template/positive/680.png new file mode 100644 index 0000000..d0a0514 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/680.png differ diff --git a/superpower19classifier-zjx/template/positive/690.png b/superpower19classifier-zjx/template/positive/690.png new file mode 100644 index 0000000..9227fd7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/690.png differ diff --git a/superpower19classifier-zjx/template/positive/700.png b/superpower19classifier-zjx/template/positive/700.png new file mode 100644 index 0000000..4d0060e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/700.png differ diff --git a/superpower19classifier-zjx/template/positive/710.png b/superpower19classifier-zjx/template/positive/710.png new file mode 100644 index 0000000..47fd11b Binary files /dev/null and b/superpower19classifier-zjx/template/positive/710.png differ diff --git a/superpower19classifier-zjx/template/positive/720.png b/superpower19classifier-zjx/template/positive/720.png new file mode 100644 index 0000000..e1d762a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/720.png differ diff --git a/superpower19classifier-zjx/template/positive/725.png b/superpower19classifier-zjx/template/positive/725.png new file mode 100644 index 0000000..d82f2a4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/725.png differ diff --git a/superpower19classifier-zjx/template/positive/73.png b/superpower19classifier-zjx/template/positive/73.png new file mode 100644 index 0000000..b96a40f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/73.png differ diff --git a/superpower19classifier-zjx/template/positive/730.png b/superpower19classifier-zjx/template/positive/730.png new file mode 100644 index 0000000..5b2a617 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/730.png differ diff --git a/superpower19classifier-zjx/template/positive/735.png b/superpower19classifier-zjx/template/positive/735.png new file mode 100644 index 0000000..df29a22 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/735.png differ diff --git a/superpower19classifier-zjx/template/positive/74.png b/superpower19classifier-zjx/template/positive/74.png new file mode 100644 index 0000000..13763d2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/74.png differ diff --git a/superpower19classifier-zjx/template/positive/745.png b/superpower19classifier-zjx/template/positive/745.png new file mode 100644 index 0000000..cb186e9 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/745.png differ diff --git a/superpower19classifier-zjx/template/positive/75.png b/superpower19classifier-zjx/template/positive/75.png new file mode 100644 index 0000000..50a8fdc Binary files /dev/null and b/superpower19classifier-zjx/template/positive/75.png differ diff --git a/superpower19classifier-zjx/template/positive/755.png b/superpower19classifier-zjx/template/positive/755.png new file mode 100644 index 0000000..57f08ea Binary files /dev/null and b/superpower19classifier-zjx/template/positive/755.png differ diff --git a/superpower19classifier-zjx/template/positive/760.png b/superpower19classifier-zjx/template/positive/760.png new file mode 100644 index 0000000..bb9e0d3 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/760.png differ diff --git a/superpower19classifier-zjx/template/positive/765.png b/superpower19classifier-zjx/template/positive/765.png new file mode 100644 index 0000000..57b715a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/765.png differ diff --git a/superpower19classifier-zjx/template/positive/770.png b/superpower19classifier-zjx/template/positive/770.png new file mode 100644 index 0000000..c45454f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/770.png differ diff --git a/superpower19classifier-zjx/template/positive/775.png b/superpower19classifier-zjx/template/positive/775.png new file mode 100644 index 0000000..066cf54 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/775.png differ diff --git a/superpower19classifier-zjx/template/positive/78.png b/superpower19classifier-zjx/template/positive/78.png new file mode 100644 index 0000000..290cd24 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/78.png differ diff --git a/superpower19classifier-zjx/template/positive/785.png b/superpower19classifier-zjx/template/positive/785.png new file mode 100644 index 0000000..6d111ed Binary files /dev/null and b/superpower19classifier-zjx/template/positive/785.png differ diff --git a/superpower19classifier-zjx/template/positive/79.png b/superpower19classifier-zjx/template/positive/79.png new file mode 100644 index 0000000..bdb253f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/79.png differ diff --git a/superpower19classifier-zjx/template/positive/795.png b/superpower19classifier-zjx/template/positive/795.png new file mode 100644 index 0000000..086dfda Binary files /dev/null and b/superpower19classifier-zjx/template/positive/795.png differ diff --git a/superpower19classifier-zjx/template/positive/8.png b/superpower19classifier-zjx/template/positive/8.png new file mode 100644 index 0000000..3fda448 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/8.png differ diff --git a/superpower19classifier-zjx/template/positive/80.png b/superpower19classifier-zjx/template/positive/80.png new file mode 100644 index 0000000..b6ae2ae Binary files /dev/null and b/superpower19classifier-zjx/template/positive/80.png differ diff --git a/superpower19classifier-zjx/template/positive/800.png b/superpower19classifier-zjx/template/positive/800.png new file mode 100644 index 0000000..23c5c75 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/800.png differ diff --git a/superpower19classifier-zjx/template/positive/805.png b/superpower19classifier-zjx/template/positive/805.png new file mode 100644 index 0000000..d995197 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/805.png differ diff --git a/superpower19classifier-zjx/template/positive/810.png b/superpower19classifier-zjx/template/positive/810.png new file mode 100644 index 0000000..1619f26 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/810.png differ diff --git a/superpower19classifier-zjx/template/positive/815.png b/superpower19classifier-zjx/template/positive/815.png new file mode 100644 index 0000000..4aa68c0 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/815.png differ diff --git a/superpower19classifier-zjx/template/positive/82.png b/superpower19classifier-zjx/template/positive/82.png new file mode 100644 index 0000000..62a8220 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/82.png differ diff --git a/superpower19classifier-zjx/template/positive/830.png b/superpower19classifier-zjx/template/positive/830.png new file mode 100644 index 0000000..637689d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/830.png differ diff --git a/superpower19classifier-zjx/template/positive/835.png b/superpower19classifier-zjx/template/positive/835.png new file mode 100644 index 0000000..0537538 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/835.png differ diff --git a/superpower19classifier-zjx/template/positive/85.png b/superpower19classifier-zjx/template/positive/85.png new file mode 100644 index 0000000..f0577c2 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/85.png differ diff --git a/superpower19classifier-zjx/template/positive/850.png b/superpower19classifier-zjx/template/positive/850.png new file mode 100644 index 0000000..814c4f7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/850.png differ diff --git a/superpower19classifier-zjx/template/positive/855.png b/superpower19classifier-zjx/template/positive/855.png new file mode 100644 index 0000000..61c139c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/855.png differ diff --git a/superpower19classifier-zjx/template/positive/860.png b/superpower19classifier-zjx/template/positive/860.png new file mode 100644 index 0000000..5f7228e Binary files /dev/null and b/superpower19classifier-zjx/template/positive/860.png differ diff --git a/superpower19classifier-zjx/template/positive/870.png b/superpower19classifier-zjx/template/positive/870.png new file mode 100644 index 0000000..18b5470 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/870.png differ diff --git a/superpower19classifier-zjx/template/positive/880.png b/superpower19classifier-zjx/template/positive/880.png new file mode 100644 index 0000000..4e32b73 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/880.png differ diff --git a/superpower19classifier-zjx/template/positive/89.png b/superpower19classifier-zjx/template/positive/89.png new file mode 100644 index 0000000..926cc05 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/89.png differ diff --git a/superpower19classifier-zjx/template/positive/890.png b/superpower19classifier-zjx/template/positive/890.png new file mode 100644 index 0000000..d3b65f7 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/890.png differ diff --git a/superpower19classifier-zjx/template/positive/9.png b/superpower19classifier-zjx/template/positive/9.png new file mode 100644 index 0000000..b96ea99 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/9.png differ diff --git a/superpower19classifier-zjx/template/positive/90.png b/superpower19classifier-zjx/template/positive/90.png new file mode 100644 index 0000000..c2ad5de Binary files /dev/null and b/superpower19classifier-zjx/template/positive/90.png differ diff --git a/superpower19classifier-zjx/template/positive/905.png b/superpower19classifier-zjx/template/positive/905.png new file mode 100644 index 0000000..9133253 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/905.png differ diff --git a/superpower19classifier-zjx/template/positive/910.png b/superpower19classifier-zjx/template/positive/910.png new file mode 100644 index 0000000..8655e0c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/910.png differ diff --git a/superpower19classifier-zjx/template/positive/915.png b/superpower19classifier-zjx/template/positive/915.png new file mode 100644 index 0000000..56db905 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/915.png differ diff --git a/superpower19classifier-zjx/template/positive/93.png b/superpower19classifier-zjx/template/positive/93.png new file mode 100644 index 0000000..70d895d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/93.png differ diff --git a/superpower19classifier-zjx/template/positive/935.png b/superpower19classifier-zjx/template/positive/935.png new file mode 100644 index 0000000..1dd1196 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/935.png differ diff --git a/superpower19classifier-zjx/template/positive/94.png b/superpower19classifier-zjx/template/positive/94.png new file mode 100644 index 0000000..cf0b00c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/94.png differ diff --git a/superpower19classifier-zjx/template/positive/95.png b/superpower19classifier-zjx/template/positive/95.png new file mode 100644 index 0000000..0291f25 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/95.png differ diff --git a/superpower19classifier-zjx/template/positive/950.png b/superpower19classifier-zjx/template/positive/950.png new file mode 100644 index 0000000..5e765c4 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/950.png differ diff --git a/superpower19classifier-zjx/template/positive/96.png b/superpower19classifier-zjx/template/positive/96.png new file mode 100644 index 0000000..38ede9d Binary files /dev/null and b/superpower19classifier-zjx/template/positive/96.png differ diff --git a/superpower19classifier-zjx/template/positive/965.png b/superpower19classifier-zjx/template/positive/965.png new file mode 100644 index 0000000..021a55c Binary files /dev/null and b/superpower19classifier-zjx/template/positive/965.png differ diff --git a/superpower19classifier-zjx/template/positive/97.png b/superpower19classifier-zjx/template/positive/97.png new file mode 100644 index 0000000..4eeabff Binary files /dev/null and b/superpower19classifier-zjx/template/positive/97.png differ diff --git a/superpower19classifier-zjx/template/positive/980.png b/superpower19classifier-zjx/template/positive/980.png new file mode 100644 index 0000000..ed2379a Binary files /dev/null and b/superpower19classifier-zjx/template/positive/980.png differ diff --git a/superpower19classifier-zjx/template/positive/99.png b/superpower19classifier-zjx/template/positive/99.png new file mode 100644 index 0000000..8b7f55f Binary files /dev/null and b/superpower19classifier-zjx/template/positive/99.png differ diff --git a/superpower19classifier-zjx/template/positive/995.png b/superpower19classifier-zjx/template/positive/995.png new file mode 100644 index 0000000..c8b64e8 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/995.png differ diff --git a/superpower19classifier-zjx/template/positive/POS4.png b/superpower19classifier-zjx/template/positive/POS4.png new file mode 100755 index 0000000..e9b1a54 Binary files /dev/null and b/superpower19classifier-zjx/template/positive/POS4.png differ diff --git a/superpower19classifier-zjx/test.cpp b/superpower19classifier-zjx/test.cpp new file mode 100644 index 0000000..47ecbc5 --- /dev/null +++ b/superpower19classifier-zjx/test.cpp @@ -0,0 +1,63 @@ +#include +#include // Use std::async => MultiThreading + +#include "classifier.hpp" + +class timer +{ +public: + using clk_t = std::chrono::high_resolution_clock; + timer() : t(clk_t::now()) {} + void reset(){ t = clk_t::now(); } + + double milli_cnt() const + { + return std::chrono::duration(clk_t::now() - t).count(); + } + +private: + clk_t::time_point t; +}; // class timer + +std::vector get_test_src(const std::string& where) +{ + std::vector ret; + DIR* dir_ptr = opendir(where.c_str()); + dirent* dptr; + while((dptr = readdir(dir_ptr)) != NULL) + { + if(dptr->d_name[0] == '.') + continue; + ret.push_back(cv::imread(where+'/'+dptr->d_name, cv::IMREAD_GRAYSCALE)); + } + return ret; +} + + +int main() +{ + sp::classifier classifier("../armor"); + // classifier.debug_prepared_show(cv::imread("../armor/positive/T2.png", cv::IMREAD_GRAYSCALE)); + // cv::waitKey(); + auto goods = get_test_src("../data/positive"); + auto bads = get_test_src("../data/negative"); + + int total = goods.size() + bads.size(); + int goods_right = 0; + int bads_right = 0; + + // @@@ test time. + timer t; + + for(auto&& x : goods) + goods_right += classifier.boolean_forward(x); + for(auto&& x : bads ) + bads_right += !classifier.boolean_forward(x); + + std::cout << "Average bench time: " << t.milli_cnt() / total << " ms\n"; + + std::cout << "goods right: " << goods_right << " / " << goods.size() << " ~ " << static_cast(goods_right) / goods.size() * 100 << " %\n"; + std::cout << "bads right: " << bads_right << " / " << bads.size() << " ~ " << static_cast(bads_right ) / bads.size() * 100<< " %\n"; + std::cout << "Total accuracy: " << static_cast(goods_right + bads_right) / total * 100 << " %\n"; + +} \ No newline at end of file diff --git a/superpower19classifier-zjx/test.o b/superpower19classifier-zjx/test.o new file mode 100755 index 0000000..bdb7b7c Binary files /dev/null and b/superpower19classifier-zjx/test.o differ diff --git a/zhoujiaxuan.md b/zhoujiaxuan.md new file mode 100644 index 0000000..503945d --- /dev/null +++ b/zhoujiaxuan.md @@ -0,0 +1,129 @@ +仔细看了图像质点位置计算与ROI感兴趣位置计算两篇链接文章,运行了相关代码,代码量不是很大,计算图像质点的方法与高数课上的积分求物体质心一样,感觉ROI选取感兴趣区域和物体追踪相关,对于代码中出现的各种opencv函数不是很了解,于是又去看了看opencv3入门书上的部分相关内容,书上内容也不多(没看完)。在网上搜索了ROI等相关内容,发现大多与物体的质心追踪法有关,通过ROI等知识圈定物体矩形区域,通过对区域计算质点并以质点来标记物体的位置,由于在比赛运动中可能出现被追踪物体部分被遮挡,这样通过部分来预测整体所在矩形区域并计算质点可以有标识物体,追踪物体。感觉这些算法代码中全是opencv的内部函数,啥也不会,还有不少物体追踪方面知识需要学习,由于只看了很少的一部分,这只是我非常浅的了解。 + +以下是求质点的代码与ROI拉取感兴趣区域代码: + + + +\#include + +\#include + +\#include + +\#include + + + +using namespace cv; + +using namespace std; + + + + + +int main() + +{ + +String img_path = "1.jpg"; + +Mat src, gray, thr; + +src = imread(img_path); + + + +// convert image to grayscale 获取灰度图 + +cvtColor(src, gray, COLOR_BGR2GRAY); + + + +// convert grayscale to binary image 二值化 + +threshold(gray, thr, 0, 255, THRESH_OTSU); + + + +// find moments of the image 提取二值图像矩,true表示图像二值化了 + +Moments m = moments(thr, true); + +Point p(m.m10 / m.m00, m.m01 / m.m00); + + + +// coordinates of centroid 质心坐标 + +cout << Mat(p) << endl; + + + +// show the image with a point mark at the centroid 画出质心 + +circle(src, p, 5, Scalar(128, 0, 0), -1); + +imshow("show", src); + +waitKey(0); + +return 0; + +} + + + + + +\#include + +// selectROI is part of tracking API + +\#include + + + +using namespace std; + +using namespace cv; + + + + + +int main (int argc, char **arv) + +{ + +​ // Read image + +​ Mat im = imread("1.jpg"); + +​ + +​ // Select ROI + +bool showCrosshair = false; + +bool fromCenter = false; + +Rect2d r = selectROI("Image", im, fromCenter, showCrosshair); + +​ // Crop image + +​ Mat imCrop = im(r); + +​ // Display Cropped Image + +​ imshow("Image", imCrop); + +​ waitKey(0); + +​ + +​ return 0; + +} + + \ No newline at end of file