├── AboutWindow.cpp
├── AboutWindow.h
├── CMakeLists.txt
├── COPYING.txt
├── InterfaceWindow.cpp
├── InterfaceWindow.h
├── PlayCap.rc
├── PlaybackWindow.cpp
├── PlaybackWindow.h
├── README.txt
├── Signal11-small.ico
├── Signal11.ico
├── famfamfam
├── build
├── cross-orig.png
├── cross-orig.png.h
├── cross-transparent.png
├── cross-transparent.png.h
├── cross.png
└── cross.png.h
├── main.cpp
├── signal11-logo.h
├── signal11-smallicon.h
├── signal11icon.h
└── tango
├── build
├── document-open.png
├── document-open.png.h
├── edit-find-48.png
├── edit-find-48.png.h
├── edit-find-advanced.png
├── edit-find-advanced.png.h
├── edit-find-advanced.xcf
├── edit-find.png
├── edit-find.png.h
├── edit-redo-original.png
├── edit-redo-original.png.h
├── edit-redo.png
├── edit-redo.png.h
├── format-indent-less.png
├── format-indent-less.png.h
├── format-indent-more.png
├── format-indent-more.png.h
├── format-justify-fill.png
├── format-justify-fill.png.h
├── media-floppy.png
├── media-floppy.png.h
├── media-playback-pause.png
├── media-playback-pause.png.h
├── media-playback-start.png
├── media-playback-start.png.h
├── media-playback-stop.png
├── media-playback-stop.png.h
├── media-skip-backward.png
├── media-skip-backward.png.h
├── network-transmit-receive-48.png
├── network-transmit-receive-48.png.h
├── network-transmit-receive.png
├── network-transmit-receive.png.h
├── process-stop.png
└── process-stop.png.h
/AboutWindow.cpp:
--------------------------------------------------------------------------------
1 | /**************************************************************************
2 | About Window
3 | Copyright 2009 Alan Ott, Signal 11 Software
4 | 2007
5 |
6 | This program is free software: you can redistribute it and/or modify
7 | it under the terms of the GNU General Public License as published by
8 | the Free Software Foundation, either version 3 of the License, or
9 | (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 |
19 | ***************************************************************************/
20 |
21 |
22 | #include "AboutWindow.h"
23 |
24 | #include
25 | using std::cout;
26 | using std::endl;
27 |
28 | #include "FXPNGIcon.h"
29 |
30 | #include "signal11-logo.h"
31 |
32 | FXDEFMAP(AboutWindow) AboutWindowMap[] = {
33 | FXMAPFUNC( SEL_COMMAND, AboutWindow::ID_OK_BUTTON, AboutWindow::onOk)
34 | };
35 |
36 | FXIMPLEMENT(AboutWindow, FXDialogBox, AboutWindowMap, ARRAYNUMBER(AboutWindowMap))
37 |
38 |
39 |
40 | AboutWindow::AboutWindow(FXWindow *parent)
41 | : FXDialogBox(parent, "About", DECOR_CLOSE|DECOR_TITLE|DECOR_BORDER)
42 | {
43 |
44 | FXVerticalFrame *vf = new FXVerticalFrame(this);
45 |
46 | ico = new FXPNGIcon(getApp(), signal11_logo);
47 | ico->blend(vf->getBackColor());
48 |
49 | new FXLabel(vf, "", ico);
50 |
51 | new FXSeparator(vf);
52 | new FXWindow(vf);
53 |
54 | const char *text =
55 | "This is PlayCap, the libpcap playback tool, version 0.1.1\n"
56 | "Copyright 2006-2009 Alan Ott, Signal 11 Software, LLC\n"
57 | "Licensed under the GNU General Public License, version 3\n"
58 | "www.signal11.us\n"
59 | "407-222-6975"
60 | "\n";
61 | const char *text3 =
62 | "Uses Fox-Toolkit (www.fox-toolkit.org)\n"
63 | "Uses WinPCAP (www.winpcap.org)\n"
64 | "Uses PThreads-Win32 (sourceware.org/pthreads-win32/)\n"
65 | "Uses libpng (www.libpng.org)\n"
66 | "Uses zlib (www.zlib.net)\n"
67 | "Uses Tango Icons (tango.freedesktop.org)\n"
68 | "Uses FamFamFam Icons (www.famfamfam.com)";
69 |
70 |
71 | new FXLabel(vf, text, NULL, JUSTIFY_CENTER_X|LABEL_NORMAL|LAYOUT_CENTER_X);
72 | new FXLabel(vf, text3, NULL, JUSTIFY_LEFT|LABEL_NORMAL|LAYOUT_CENTER_X);
73 |
74 | new FXHorizontalFrame(vf,0, 0,0,0,20);
75 | new FXButton(vf, "Close", NULL, this, ID_ACCEPT, BUTTON_NORMAL|FRAME_RAISED|FRAME_THICK|LAYOUT_CENTER_X|LAYOUT_CENTER_Y, 0,0,200,200, 20,20,5,5);
76 | }
77 |
78 | long
79 | AboutWindow::onOk(FXObject*, FXSelector, void*)
80 | {
81 | return 1;
82 | }
83 |
84 | AboutWindow::~AboutWindow()
85 | {
86 | delete ico;
87 | }
88 |
89 |
90 |
--------------------------------------------------------------------------------
/AboutWindow.h:
--------------------------------------------------------------------------------
1 | /**************************************************************************
2 | About Window
3 | Copyright 2009 Alan Ott, Signal 11 Software
4 | 2007
5 |
6 | This program is free software: you can redistribute it and/or modify
7 | it under the terms of the GNU General Public License as published by
8 | the Free Software Foundation, either version 3 of the License, or
9 | (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 |
19 | ***************************************************************************/
20 |
21 |
22 | #ifndef ABOUTWINDOW_H__
23 | #define ABOUTWINDOW_H__
24 |
25 | #include
26 |
27 |
28 | class AboutWindow : public FXDialogBox
29 | {
30 | FXDECLARE(AboutWindow)
31 |
32 | public:
33 | enum {
34 | ID_FIRST = FXDialogBox::ID_LAST,
35 | ID_OK_BUTTON,
36 | ID_LAST,
37 | };
38 |
39 | private:
40 | FXIcon *ico;
41 | protected:
42 | AboutWindow() {};
43 | public:
44 | AboutWindow(FXWindow *parent);
45 | ~AboutWindow();
46 |
47 | long onOk(FXObject *sender, FXSelector sel, void *ptr);
48 | };
49 |
50 | #endif // ABOUTWINDOW_H__
51 |
--------------------------------------------------------------------------------
/CMakeLists.txt:
--------------------------------------------------------------------------------
1 | #############################################################################
2 | #
3 | # Copyright 2009 Alan Ott, Signal 11 Software
4 | #
5 | # This program is free software: you can redistribute it and/or modify
6 | # it under the terms of the GNU General Public License as published by
7 | # the Free Software Foundation, either version 3 of the License, or
8 | # (at your option) any later version.
9 | #
10 | # This program is distributed in the hope that it will be useful,
11 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | # GNU General Public License for more details.
14 | #
15 | # You should have received a copy of the GNU General Public License
16 | # along with this program. If not, see .
17 | #
18 | #############################################################################
19 |
20 | cmake_minimum_required(VERSION 2.4)
21 | if(COMMAND cmake_policy)
22 | cmake_policy(SET CMP0003 NEW)
23 | endif(COMMAND cmake_policy)
24 |
25 | project(PlayCapProject)
26 |
27 | #### Find Fox-Toolkit ####
28 |
29 | IF(WIN32)
30 |
31 | # FOX-Toolkit
32 | SET(FOX_INCLUDE "${CMAKE_SOURCE_DIR}/../PlayCap-Externals/fox/include" CACHE PATH "Path to FOX Include Path")
33 | SET(FOX_LIBRARY "${CMAKE_SOURCE_DIR}/../PlayCap-Externals/fox/lib/fox-1.6.lib" CACHE FILEPATH "FOX Library")
34 |
35 | # PThreads-Win32
36 | SET(PTHREADS_WIN32_INCLUDE "${CMAKE_SOURCE_DIR}/../PlayCap-Externals/pthreads-win32/include" CACHE PATH "Path to pthread-win32 includes" )
37 | SET(PTHREADS_WIN32_LIBRARY "${CMAKE_SOURCE_DIR}/../PlayCap-Externals/pthreads-win32/lib/pthreadVC2.lib" CACHE FILEPATH "Pthread-Win32 Library")
38 |
39 | # WinPcap
40 | SET(WINPCAP_INCLUDE "${CMAKE_SOURCE_DIR}/../PlayCap-Externals/WpdPack/Include" CACHE PATH "Path to WinPcap includes" )
41 | SET(WINPCAP_LIBRARY "${CMAKE_SOURCE_DIR}/../PlayCap-Externals/WpdPack/Lib/wpcap.lib" CACHE FILEPATH "WinPcap Library")
42 |
43 | # LibPNG
44 | SET(LIBPNG_INCLUDE "${CMAKE_SOURCE_DIR}/../PlayCap-Externals/libpng/include" CACHE PATH "Path to libPNG includes" )
45 | SET(LIBPNG_LIBRARY "${CMAKE_SOURCE_DIR}/../PlayCap-Externals/libpng/lib/libpng.lib" CACHE FILEPATH "LibPNG Library")
46 |
47 | # DLLs (For Installer)
48 | SET(DLL_PATH "${CMAKE_SOURCE_DIR}/../PlayCap-Externals" CACHE PATH "Path to DLLs to Install" )
49 |
50 |
51 | ELSE(WIN32)
52 |
53 | FIND_PROGRAM(CMAKE_FOX_CONFIG fox-config)
54 | IF(CMAKE_FOX_CONFIG)
55 | # Set CMAKE_FOX_CXX_FLAGS to those required to link to FOX
56 | exec_program(
57 | ${CMAKE_FOX_CONFIG}
58 | ARGS --cflags
59 | OUTPUT_VARIABLE CMAKE_FOX_CXX_FLAGS)
60 | # Set FOX_LIBRARIES to those required to link to FOX
61 | exec_program(
62 | ${CMAKE_FOX_CONFIG}
63 | ARGS --libs
64 | OUTPUT_VARIABLE FOX_LIBRARIES)
65 |
66 | #SET(CMAKE_FOX_CXX_FLAGS "`${CMAKE_FOX_CONFIG} --cflags`")
67 | #SET(FOX_LIBRARIES "`${CMAKE_FOX_CONFIG} --libs`")
68 | ENDIF(CMAKE_FOX_CONFIG)
69 |
70 | ENDIF(WIN32)
71 |
72 | if(FOX_LIBRARIES)
73 | if(CMAKE_FOX_CXX_FLAGS)
74 | set(FOX_FOUND 1)
75 | endif(CMAKE_FOX_CXX_FLAGS)
76 | endif(FOX_LIBRARIES)
77 | #### End find Fox-Toolkit ####
78 |
79 | if (WIN32)
80 | list(APPEND libs ${FOX_LIBRARY}
81 | ${PTHREADS_WIN32_LIBRARY}
82 | ${WINPCAP_LIBRARY}
83 | ${LIBPNG_LIBRARY})
84 | list(APPEND libs winmm ws2_32)
85 |
86 | else (WIN32)
87 | list(APPEND libs pcap pthread)
88 | endif (WIN32)
89 |
90 |
91 | set(SOURCES
92 | AboutWindow.cpp
93 | InterfaceWindow.cpp
94 | main.cpp
95 | PlaybackWindow.cpp)
96 |
97 | if (WIN32)
98 | list(APPEND SOURCES PlayCap.rc)
99 | endif(WIN32)
100 |
101 |
102 | add_definitions(${CMAKE_FOX_CXX_FLAGS})
103 |
104 | include_directories( ${FOX_INCLUDE}
105 | ${PTHREADS_WIN32_INCLUDE}
106 | ${WINPCAP_INCLUDE} )
107 |
108 | add_executable(playcap WIN32
109 | ${SOURCES}
110 | )
111 |
112 | if (WIN32)
113 | # Make it start in main() on Windows.
114 | Set_Target_Properties(playcap PROPERTIES
115 | LINK_FLAGS /ENTRY:"mainCRTStartup")
116 | endif (WIN32)
117 |
118 |
119 | target_link_libraries(playcap ${FOX_LIBRARIES} ${libs})
120 |
121 | install (
122 | TARGETS playcap
123 | RUNTIME DESTINATION bin
124 | )
125 |
126 | if (WIN32)
127 | install (
128 | FILES
129 | ${DLL_PATH}/libpng13.dll
130 | ${DLL_PATH}/zlib1.dll
131 | ${DLL_PATH}/pthreadVC2.dll
132 | DESTINATION bin
133 | )
134 | install (
135 | FILES
136 | ${DLL_PATH}/WinPcap_4_1_1.exe
137 | DESTINATION .
138 | )
139 | endif(WIN32)
140 |
141 |
142 | #### CPack ####
143 | set(CPACK_PACKAGE_NAME "playcap")
144 | set(CPACK_PACKAGE_VENDOR "Signal 11 Software")
145 | set(CPACK_PACKAGE_VERSION "0.1.1")
146 | set(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.3.1-6), libFOX-1.6-0")
147 | set(CPACK_PACKAGE_CONTACT "Signal 11 Software")
148 | set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Alan Ott, Signal 11 Software, alan@signal11.us")
149 | set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Replays tcpdump, Wireshark, and libpcap capture files")
150 | set(CPACK_DEBIAN_PACKAGE_SECTION "")
151 | set(CPACK_DEBIAN_PACKAGE_RECOMMENDS "wireshark")
152 | set(DEBIAN_PACKAGE_BUILDS_DEPENDS "libFOX-1.6-dev, libpcap-dev, libpng-dev")
153 | SET(CPACK_PACKAGE_EXECUTABLES "PlayCap" "PlayCap")
154 | SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/COPYING.txt")
155 | if (WIN32 AND NOT UNIX)
156 | #SET(CPACK_PACKAGE_ICON "${CMake_SOURCE_DIR}/Utilities/Release\\\\InstallIcon.bmp")
157 | SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\playcap.exe")
158 | SET(CPACK_NSIS_DISPLAY_NAME "PlayCap")
159 | SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\www.signal11.us")
160 | SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\www.signal11.us")
161 | SET(CPACK_NSIS_CONTACT "alan@signal11.us")
162 | SET(CPACK_NSIS_MODIFY_PATH ON)
163 | SET(CPACK_NSIS_EXTRA_INSTALL_COMMANDS
164 | "ExecWait \\\"$INSTDIR\\\\WinPcap_4_1_1.exe\\\"
165 | Delete \\\"$INSTDIR\\\\WinPcap_4_1_1.exe\\\" ")
166 |
167 | else(WIN32 AND NOT UNIX)
168 | SET(CPACK_STRIP_FILES "bin/playcap")
169 | SET(CPACK_SOURCE_STRIP_FILES "")
170 | endif(WIN32 AND NOT UNIX)
171 | set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Alan Ott")
172 | set(CPACK_SOURCE_IGNORE_FILES ".git")
173 | set(CPACK_BUNDLE_NAME "playcap")
174 | set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
175 | INCLUDE(CPack)
176 |
177 |
178 |
--------------------------------------------------------------------------------
/InterfaceWindow.cpp:
--------------------------------------------------------------------------------
1 | /**************************************************************************
2 | Window for Selecting a Network Interface
3 | Copyright 2009 Alan Ott, Signal 11 Software
4 | 10-18-2006
5 |
6 | This program is free software: you can redistribute it and/or modify
7 | it under the terms of the GNU General Public License as published by
8 | the Free Software Foundation, either version 3 of the License, or
9 | (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 |
19 | ***************************************************************************/
20 |
21 |
22 |
23 | #include "InterfaceWindow.h"
24 |
25 | #include
26 |
27 | #ifdef WIN32
28 | #include
29 | #else
30 | #include // sockaddr_in
31 | #include // inet_ntoa()
32 | #endif
33 |
34 | #include
35 | using std::cout;
36 | using std::endl;
37 |
38 | #include "tango/network-transmit-receive.png.h"
39 | #include "tango/network-transmit-receive-48.png.h"
40 |
41 |
42 | FXDEFMAP(InterfaceWindow) InterfaceWindowMap[] = {
43 | FXMAPFUNC(SEL_TIMEOUT, InterfaceWindow::ID_TIME, InterfaceWindow::onTimeout),
44 | FXMAPFUNC(SEL_COMMAND, InterfaceWindow::ID_CAPTURE, InterfaceWindow::onCapture),
45 | };
46 |
47 | FXIMPLEMENT(InterfaceWindow, FXVerticalFrame, InterfaceWindowMap, ARRAYNUMBER(InterfaceWindowMap));
48 |
49 |
50 | InterfaceWindow::InterfaceWindow(FXComposite *parent, pcap_if_t *ifaces, FXString title, FXString buttonCaption)
51 | : FXVerticalFrame(parent),
52 | interfaces(ifaces)
53 | {
54 | selected_interface = NULL;
55 |
56 | FXPNGIcon *capture_icon = new FXPNGIcon(getApp(), networktransmitreceive);
57 | FXPNGIcon *capture_icon_48 = new FXPNGIcon(getApp(), networktransmitreceive48);
58 |
59 | FXLabel *label = new FXLabel(this, title, capture_icon_48);
60 | label->setFont(new FXFont(getApp(), "Helvetica", 14, FXFont::Bold));
61 |
62 |
63 | new FXWindow(new FXVerticalFrame(this));
64 |
65 |
66 | // Create the GUI.
67 | #ifndef WIN32
68 | //FXMatrix *matrix = new FXMatrix(this, 2, MATRIX_BY_COLUMNS);
69 | #else
70 | FXMatrix *matrix = new FXMatrix(this,2, MATRIX_BY_COLUMNS);
71 | #endif
72 |
73 | pcap_if_t *itr = interfaces;
74 | while (itr) {
75 |
76 | // Find the IP addr of this device (if any).
77 | FXString ip_addr;
78 | pcap_addr *addr = itr->addresses;
79 | while (addr) {
80 | if (addr->addr->sa_family == AF_INET) {
81 | sockaddr_in *inaddr = (sockaddr_in*) addr->addr;
82 | ip_addr = inet_ntoa(inaddr->sin_addr);
83 | break;
84 | }
85 | addr = addr->next;
86 | }
87 |
88 |
89 | #ifndef WIN32
90 | // Unix Platforms
91 | FXHorizontalFrame *outerHF = new FXHorizontalFrame(this, LAYOUT_FILL_X, 0,0,0,0, 0,0,0,0, 2*DEFAULT_SPACING, 0);
92 | FXVerticalFrame *vf = new FXVerticalFrame(outerHF, LAYOUT_FILL_X, 0,0,0,0, 0,0,0,DEFAULT_SPACING);
93 | FXHorizontalFrame *hf = new FXHorizontalFrame(vf, LAYOUT_FILL_X, 0,0,0,0, 0,0,0,0);
94 | FXLabel *l = new FXLabel(hf, itr->name);
95 | l->setFont(new FXFont(getApp(), "Helvetica", 14, FXFont::Bold));
96 | new FXLabel(hf, ip_addr, NULL, LABEL_NORMAL|LAYOUT_CENTER_Y|LAYOUT_RIGHT);
97 | new FXLabel(vf, (itr->description)? itr->description: "");
98 | #else
99 | // Windows
100 | FXHorizontalFrame *outerHF = new FXHorizontalFrame(this, LAYOUT_FILL_X, 0,0,0,0, 0,0,0,0, 2*DEFAULT_SPACING, 0);
101 | FXVerticalFrame *vf = new FXVerticalFrame(outerHF, LAYOUT_FILL_X, 0,0,0,0, 0,0,0,DEFAULT_SPACING);
102 | //FXHorizontalFrame *hf = new FXHorizontalFrame(vf, LAYOUT_FILL_X, 0,0,0,0, 0,0,0,0);
103 | //FXLabel *l = new FXLabel(hf, itr->name);
104 | //l->setFont(new FXFont(getApp(), "Helvetica", 14, FXFont::Bold));
105 | new FXLabel(vf, (itr->description)? itr->description: "");
106 | new FXLabel(vf, ip_addr, NULL, LABEL_NORMAL|LAYOUT_CENTER_Y);
107 |
108 |
109 | //new FXLabel(matrix, (itr->description)? itr->description: "");
110 | //new FXLabel(matrix, ip_addr, NULL, LABEL_NORMAL|LAYOUT_CENTER_Y|LAYOUT_RIGHT);
111 | //FXHorizontalFrame *outerHF = new FXHorizontalFrame(this, LAYOUT_FILL_X, 0,0,0,0, 0,0,0,0, 2*DEFAULT_SPACING, 0);
112 | #endif
113 |
114 | FXButton *btn = new FXButton(outerHF, buttonCaption, capture_icon, this, ID_CAPTURE, BUTTON_NORMAL|LAYOUT_CENTER_Y);
115 | btn->setUserData(itr);
116 |
117 | new FXSeparator(this);
118 |
119 | itr = itr->next;
120 | }
121 |
122 |
123 | //getApp()->addTimeout(this, ID_TIME, 250);
124 | }
125 |
126 | InterfaceWindow::~InterfaceWindow()
127 | {
128 | cout << "removing InterfaceWindow Timer" << endl;
129 | //getApp()->removeTimeout(this, ID_TIME);
130 | }
131 |
132 | long
133 | InterfaceWindow::onTimeout(FXObject *sender, FXSelector sel, void *ptr)
134 | {
135 |
136 | //getApp()->addTimeout(this, ID_TIME, 250);
137 | return 1;
138 | }
139 |
140 | long
141 | InterfaceWindow::onCapture(FXObject *sender, FXSelector sel, void *ptr)
142 | {
143 | cout << "onCapture" << endl;
144 | FXId *sender_id = (FXId*) sender;
145 | selected_interface = (pcap_if_t *) sender_id->getUserData();
146 | this->getParent()->handle(this, MKUINT(FXDialogBox::ID_ACCEPT,SEL_COMMAND), NULL);
147 | return 1;
148 | }
149 |
--------------------------------------------------------------------------------
/InterfaceWindow.h:
--------------------------------------------------------------------------------
1 | /**************************************************************************
2 | Window for Selecting a Network Interface
3 | Copyright 2009 Alan Ott, Signal 11 Software
4 | 10-18-2006
5 |
6 | This program is free software: you can redistribute it and/or modify
7 | it under the terms of the GNU General Public License as published by
8 | the Free Software Foundation, either version 3 of the License, or
9 | (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 |
19 | ***************************************************************************/
20 |
21 | #ifndef INTERFACE_WINDOW_H__
22 | #define INTERFACE_WINDOW_H__
23 |
24 | #include
25 |
26 | #include
27 |
28 |
29 | class InterfaceWindow : public FXVerticalFrame
30 | {
31 | FXDECLARE(InterfaceWindow)
32 |
33 | public:
34 | enum {
35 | ID_FIRST = FXVerticalFrame::ID_LAST,
36 | ID_TIME,
37 | ID_CAPTURE,
38 | ID_LAST
39 | };
40 |
41 | private:
42 | pcap_if_t *interfaces;
43 | pcap_if_t *selected_interface;
44 |
45 | FXTimer *timer;
46 |
47 | protected:
48 | InterfaceWindow() { };
49 |
50 |
51 | public:
52 |
53 | InterfaceWindow(FXComposite *parent, pcap_if_t *interfaces, FXString title, FXString buttonCaption);
54 | ~InterfaceWindow();
55 | pcap_if_t *getSelectedInterface() { return selected_interface; };
56 |
57 |
58 |
59 | long onTimeout(FXObject *, FXSelector, void *);
60 | long onCapture(FXObject *, FXSelector, void *);
61 |
62 | };
63 |
64 |
65 | #endif // INTERFACE_WINDOW_H__
66 |
--------------------------------------------------------------------------------
/PlayCap.rc:
--------------------------------------------------------------------------------
1 |
2 | 28 ICON DISCARDABLE "Signal11.ico"
3 |
--------------------------------------------------------------------------------
/PlaybackWindow.cpp:
--------------------------------------------------------------------------------
1 | /**************************************************************************
2 | Window for Playing Back captures
3 | Copyright 2009 Alan Ott, Signal 11 Software
4 | 10-1-2009
5 |
6 | This program is free software: you can redistribute it and/or modify
7 | it under the terms of the GNU General Public License as published by
8 | the Free Software Foundation, either version 3 of the License, or
9 | (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 |
19 | ***************************************************************************/
20 |
21 | #include
22 | #include
23 | #include
24 |
25 | #include "PlaybackWindow.h"
26 | #include "InterfaceWindow.h"
27 | #include "AboutWindow.h"
28 | #include "famfamfam/cross-orig.png.h"
29 | #include "tango/media-playback-start.png.h"
30 | #include "tango/media-playback-stop.png.h"
31 | #include "tango/media-playback-pause.png.h"
32 | #include "tango/media-skip-backward.png.h"
33 | #include "signal11icon.h"
34 | #include "signal11-smallicon.h"
35 |
36 | #include "FXPNGIcon.h"
37 | #include "fxver.h"
38 |
39 | #ifdef WIN32
40 | #include
41 | #else
42 | // Header files for send() on UNIX platforms
43 | #include
44 | #include
45 | #endif
46 |
47 | #include
48 | using std::cout;
49 | using std::endl;
50 |
51 | FXDEFMAP(PlaybackWindow) PlaybackWindowMap[] = {
52 | FXMAPFUNC( SEL_COMMAND, PlaybackWindow::ID_OK_BUTTON, PlaybackWindow::onOk ),
53 | FXMAPFUNC( SEL_COMMAND, PlaybackWindow::ID_START_BUTTON, PlaybackWindow::onStart ),
54 | FXMAPFUNC( SEL_COMMAND, PlaybackWindow::ID_STOP_BUTTON, PlaybackWindow::onStop ),
55 | FXMAPFUNC( SEL_COMMAND, PlaybackWindow::ID_PAUSE_BUTTON, PlaybackWindow::onPause ),
56 | FXMAPFUNC( SEL_COMMAND, PlaybackWindow::ID_REWIND_BUTTON, PlaybackWindow::onRewind ),
57 | FXMAPFUNC( SEL_TIMEOUT, PlaybackWindow::ID_CAPTURE_TIMEOUT, PlaybackWindow::onTimeout ),
58 | FXMAPFUNC( SEL_COMMAND, PlaybackWindow::ID_OPEN, PlaybackWindow::onOpen ),
59 | FXMAPFUNC( SEL_COMMAND, PlaybackWindow::ID_ABOUT, PlaybackWindow::onAbout ),
60 | };
61 |
62 | FXIMPLEMENT(PlaybackWindow, FXMainWindow, PlaybackWindowMap, ARRAYNUMBER(PlaybackWindowMap));
63 |
64 |
65 | FXIcon *PlaybackWindow::closeIcon;
66 | FXIcon *PlaybackWindow::startIcon;
67 | FXIcon *PlaybackWindow::stopIcon;
68 | FXIcon *PlaybackWindow::pauseIcon;
69 | FXIcon *PlaybackWindow::rewindIcon;
70 |
71 | static double tv_to_double(const struct timeval *tv)
72 | {
73 | return (double)tv->tv_sec + (double)tv->tv_usec / 1000000.0;
74 | }
75 |
76 | #ifdef WIN32
77 | static double get_time()
78 | {
79 | LARGE_INTEGER count, freq;
80 | QueryPerformanceCounter(&count);
81 | QueryPerformanceFrequency(&freq);
82 | return (double)count.QuadPart / (double)freq.QuadPart;
83 | }
84 | #else
85 | static double get_time()
86 | {
87 | struct timeval tv;
88 | gettimeofday(&tv,NULL);
89 | return tv_to_double(&tv);
90 | }
91 | #endif
92 |
93 | static void *thread_function(void *ptr)
94 | {
95 | PlaybackWindow *pw = (PlaybackWindow*) ptr;
96 | pw->playbackThread();
97 |
98 | return NULL;
99 | }
100 |
101 |
102 | PlaybackWindow::PlaybackWindow(FXApp *app, FXString filename)
103 | : FXMainWindow(app, "PlayCap", NULL/*icon*/, NULL/*icon*/, DECOR_CLOSE|DECOR_MINIMIZE|DECOR_MAXIMIZE|DECOR_TITLE|DECOR_BORDER|DECOR_RESIZE, 200,200,250,0 )
104 | {
105 | /* Initialize class members */
106 | next_packet_data = NULL;
107 | next_packet_header = (struct pcap_pkthdr*) calloc(1,sizeof(struct pcap_pkthdr));
108 | pcap_file = NULL;
109 | live_capture = NULL;
110 | this->filename = filename;
111 | state = STOPPED;
112 | send_handle = -1;
113 | total_packets = 0;
114 | packets_processed = 0;
115 | initialized = false;
116 |
117 | #ifdef WIN32
118 | timeBeginPeriod(1);
119 | #endif
120 |
121 | /* Window Icons, large and small */
122 | mainWindowIcon = new FXICOIcon(getApp(), Signal11, FXRGB(192,192,192),0,16,16);
123 | setIcon(mainWindowIcon);
124 | mainWindowMiniIcon = new FXICOIcon(getApp(), Signal11small, FXRGB(192,192,192),0,16,16);
125 | setMiniIcon(mainWindowMiniIcon);
126 |
127 | /* Create Icons */
128 | startIcon = new FXPNGIcon(getApp(), mediaplaybackstart);
129 | startIcon->blend(getBackColor());
130 | stopIcon = new FXPNGIcon(getApp(), mediaplaybackstop);
131 | stopIcon->blend(getBackColor());
132 | pauseIcon= new FXPNGIcon(getApp(), mediaplaybackpause);
133 | pauseIcon->blend(getBackColor());
134 | rewindIcon= new FXPNGIcon(getApp(), mediaskipbackward);
135 | rewindIcon->blend(getBackColor());
136 |
137 |
138 | /* Create Controls */
139 | FXVerticalFrame *topVF = new FXVerticalFrame(this, LAYOUT_FILL_X, 0,0,0,0, 0,0,0,0, 0,0);
140 |
141 | /* Create Menu */
142 | menubar = new FXMenuBar(topVF, LAYOUT_SIDE_TOP|LAYOUT_FILL_X);
143 | filemenu = new FXMenuPane(this);
144 | new FXMenuTitle(menubar, "&File", NULL, filemenu);
145 | new FXMenuCommand(filemenu, "&Open...\tCtrl-O\tOpen Existing File", NULL, this, ID_OPEN);
146 | new FXMenuSeparator(filemenu);
147 | new FXMenuCommand(filemenu, "E&xit\tCtrl-X", NULL, getApp(), FXApp::ID_QUIT);
148 |
149 | FXMenuPane *helpmenu = new FXMenuPane(this);
150 | new FXMenuTitle(menubar, "&Help", NULL, helpmenu);
151 | new FXMenuCommand(helpmenu, "&About...", NULL, this, ID_ABOUT);
152 |
153 | new FXSeparator(topVF);
154 |
155 | FXVerticalFrame *vf = new FXVerticalFrame(topVF, LAYOUT_FILL_X);
156 |
157 | /* Buttons */
158 | FXHorizontalFrame *hf = new FXHorizontalFrame(vf, 0x0, 0,0,0,0, 0,0,0,0);
159 | startButton = new FXButton(hf, "\tPlay", startIcon, this, ID_START_BUTTON);
160 | stopButton = new FXButton(hf, "\tStop", stopIcon, this, ID_STOP_BUTTON);
161 | pauseButton = new FXButton(hf, "\tPause", pauseIcon, this, ID_PAUSE_BUTTON);
162 | //rewindButton= new FXButton(hf, "\tRewind", rewindIcon, this, ID_PAUSE_BUTTON);
163 | startButton->disable();
164 | stopButton->disable();
165 | pauseButton->disable();
166 |
167 | /* Progress Bar */
168 | progress = new FXProgressBar(new FXHorizontalFrame(vf, LAYOUT_FILL_X|FRAME_SUNKEN,0,0,0,0,0,0,0,0), this, ID_START_BUTTON, LAYOUT_FILL_X);
169 | progress->setProgress(0);
170 |
171 | /* Packets processed Label */
172 | processedLabel = new FXLabel(vf, "");
173 |
174 | /* Elapsed Time */
175 | hf = new FXHorizontalFrame(vf, 0x0, 0,0,0,0, 0,0,0,0);
176 | elapsedTimeLabel = new FXLabel(hf,secToString(0.0));
177 | slashLabel = new FXLabel(hf, "/");
178 | totalTimeLabel = new FXLabel(hf, secToString(0.0));
179 |
180 |
181 | /* Close button with icon */
182 | if (!PlaybackWindow::closeIcon) {
183 | PlaybackWindow::closeIcon = new FXPNGIcon(getApp(), crossorig);
184 | PlaybackWindow::closeIcon->blend(getBackColor());
185 | }
186 | new FXButton(vf, "Close", closeIcon, this, ID_CLOSE, BUTTON_NORMAL|LAYOUT_RIGHT);
187 |
188 |
189 | // Set the packets processed readout.
190 | setPlaybackPacketsProcessed(0);
191 |
192 | pcap_file = NULL;
193 | }
194 |
195 | PlaybackWindow::~PlaybackWindow()
196 | {
197 | if (state == PLAYING || state == PAUSED)
198 | onStop(NULL,0,NULL);
199 | free(next_packet_header);
200 |
201 | // FOX menus must be deleted explicitly.
202 | delete filemenu;
203 | }
204 |
205 | FXString
206 | PlaybackWindow::secToString(double sec)
207 | {
208 | char time_string[64];
209 |
210 | int minutes = sec / 60;
211 | double seconds = fmod(sec,60);
212 |
213 | sprintf(time_string, "%d:%06.3f", minutes, seconds);
214 |
215 | return time_string;
216 | }
217 |
218 | void
219 | PlaybackWindow::setPlaybackTotalTime(double sec)
220 | {
221 | totalTimeLabel->setText(secToString(sec));
222 | }
223 |
224 | void
225 | PlaybackWindow::setPlaybackElapsedTime(double sec)
226 | {
227 | elapsedTimeLabel->setText(secToString(sec));
228 | }
229 |
230 | void
231 | PlaybackWindow::setPlaybackPacketsProcessed(unsigned int packets)
232 | {
233 | FXString s;
234 | s.format("Processed %u of %u", packets_processed, total_packets);
235 | processedLabel->setText(s);
236 | }
237 |
238 | bool
239 | PlaybackWindow::sendPacket(const u_char *data, pcap_pkthdr &hdr)
240 | {
241 | int ret;
242 |
243 | ret = pcap_sendpacket(live_capture, data, hdr.caplen);
244 | if (ret < 0) {
245 | FXMessageBox::information( this, MBOX_OK, "Network Error", "Unable to send data on the network.\n");
246 | onStop(NULL,0,NULL);
247 | return false;
248 | }
249 | return true;
250 | }
251 |
252 | /* This is the playback function. It gets called every millisecond. When
253 | * called, it will determine if the next packet in the capture needs to be
254 | * sent. It will then send all the packets in the capture which need to be
255 | * sent. Since libpcap does not allow a client program to move to the
256 | * previous packet, peek into the capture, or put a packet back once it has
257 | * been removed (using pcap_next()), every packet retrieved is stored in the
258 | * next_packet_data pointer. This way, if it's not time to send that packet
259 | * yet, it is stored for the next time pollASyncPlayback() gets called.
260 | */
261 | bool
262 | PlaybackWindow::pollASyncPlayback()
263 | {
264 | /* Return immediately if we're paused (or stopped, but that
265 | shouldn't happen as this function isn't called from STOP). */
266 | if (state != PLAYING)
267 | return true;
268 |
269 | bool ready_to_send = false;
270 |
271 | do {
272 | ready_to_send = false;
273 |
274 | // See if it's ready to send
275 | if (!next_packet_data) {
276 | // Get the next packet
277 | next_packet_data = (const char*)
278 | pcap_next(pcap_file, next_packet_header);
279 |
280 | // next_packet_data now contains the next packet to
281 | // send, or it's NULL, meaning end of capture.
282 | }
283 |
284 | if (next_packet_data) {
285 | // See if it's time to send this packet.
286 | double pkt_time =
287 | tv_to_double(&next_packet_header->ts)
288 | - capture_start_time;
289 | double playback_time =
290 | get_time() - playback_start_time;
291 |
292 | if (playback_time > pkt_time)
293 | ready_to_send = true;
294 |
295 | // Update the time readout
296 | elapsed_time = playback_time;
297 | }
298 | else {
299 | // next_packet_data was NULL, so We're done,
300 | // don't get called again.
301 | return false;
302 | }
303 |
304 | if (ready_to_send) {
305 | // Update the progress status.
306 | packets_processed++;
307 |
308 | // Send the packet.
309 | sendPacket((const u_char*)next_packet_data, *next_packet_header);
310 |
311 | // Set the next packet to NULL, so that a new one
312 | // will be grabbed from the file on the next iteration.
313 | next_packet_data = NULL;
314 | }
315 | } while (ready_to_send);
316 |
317 |
318 | /* Call this function again */
319 | return true;
320 | }
321 |
322 | /* This is the playback thread. It calls pollASyncPlayback() every
323 | * millisecond. When the playback reaches its end, pollASyncPlayback() will
324 | * return false.
325 | */
326 | void
327 | PlaybackWindow::playbackThread()
328 | {
329 | bool keep_going = true;
330 | while (run_thread && keep_going) {
331 |
332 | keep_going = pollASyncPlayback();
333 |
334 | // Sleep for 1 millisecond.
335 | #define SLEEP_MILLIS 1
336 | #ifdef WIN32
337 | Sleep(SLEEP_MILLIS);
338 | #else
339 | usleep(SLEEP_MILLIS*1000);
340 | #endif
341 | }
342 | printf("Exiting playback thread.\n");
343 | run_thread = false;
344 | }
345 |
346 | /* This function gets called periodically (every 5ms or so) from the main
347 | * GUI thread. Its job is to update the GUI based on the packets_processed
348 | * and elapsed_time variables. There's no mutex on them, and this seems to
349 | * work well enough on Linux and Windows platforms. The worst case here (if
350 | * for some reason it were to not work) is that a garbage value would be
351 | * printed in the GUI one frame. This has not been observed.
352 | */
353 | long
354 | PlaybackWindow::onTimeout(FXObject *, FXSelector, void*)
355 | {
356 | /* Update the progress indicator */
357 | progress->setProgress(packets_processed);
358 |
359 | /* Update the playback time indicator */
360 | setPlaybackElapsedTime(elapsed_time);
361 |
362 | /* Update the packets processed label */
363 | setPlaybackPacketsProcessed(packets_processed);
364 |
365 |
366 | /* Call us again if we're still running, otherwise
367 | * get into the STOP state. */
368 | if (run_thread) {
369 | // FOX 1.7 changes the timeouts to all be nanoseconds.
370 | // Fox 1.6 had all timeouts as milliseconds.
371 | int timeout_scalar = 1;
372 | #if (FOX_MINOR >= 7)
373 | timeout_scalar = 1000*1000;
374 | #endif
375 | getApp()->addTimeout(this, ID_CAPTURE_TIMEOUT,
376 | 5 * timeout_scalar /*5ms*/);
377 | }
378 | else {
379 | /* Thread is not running because the playback has finised.
380 | onStop() will reset the player. */
381 | onStop(NULL,0,NULL);
382 | }
383 |
384 | return 1;
385 | }
386 |
387 | long
388 | PlaybackWindow::onStart(FXObject *, FXSelector, void*)
389 | {
390 | // If we're PAUSED, then just set the state back to playing.
391 | // There's no need to re-open the socket or anything.
392 | if (state == PAUSED) {
393 | state = PLAYING;
394 | startButton->disable();
395 | stopButton->enable();
396 | pauseButton->enable();
397 | //rewindButton->disable();
398 |
399 | // Fake the playback_start_time, so that the time-based
400 | // asynchronous playback will pick up where it left off.
401 | playback_start_time += get_time() - pause_time;
402 |
403 | return 1;
404 | }
405 |
406 | /* Starting the capture from the beginning. */
407 |
408 | progress->setProgress(0);
409 |
410 | pcap_if_t *devs = NULL;
411 | char errbuf[PCAP_ERRBUF_SIZE];
412 |
413 | // Open the capture file.
414 | pcap_file = pcap_open_offline(filename.text(), errbuf);
415 | if (!pcap_file) {
416 | FXMessageBox::information( this, MBOX_OK, "File Open Error", "Can't open original file %s for reading.\n", filename.text() );
417 | }
418 |
419 | // Popup window with list of interfaces in it.
420 | pcap_findalldevs(&devs, errbuf);
421 | if (devs) {
422 | // Show the interface Window.
423 | FXDialogBox *dlg = new FXDialogBox(this, "Select a device", DECOR_CLOSE|DECOR_TITLE|DECOR_BORDER);
424 | InterfaceWindow *ifwin = new InterfaceWindow(dlg, devs, "Select Playback Device", "Playback");
425 | FXuint res = dlg->execute();
426 |
427 | if (res) {
428 | // User selected an interface. Start capturing.
429 | cout << "User selected " << ifwin->getSelectedInterface()->name << endl;
430 |
431 | live_capture = pcap_open_live(ifwin->getSelectedInterface()->name, 9999, 1/*promisc*/, 5/*read_timeout*/, errbuf);
432 | if (live_capture) {
433 | res = pcap_setnonblock(live_capture, 1, errbuf);
434 | if (res >= 0) {
435 |
436 | }
437 | else
438 | cout << "Error setting nonblock: " << errbuf << endl;
439 |
440 | #ifndef WIN32
441 | send_handle = pcap_get_selectable_fd(live_capture);
442 | #else
443 | send_handle = 0;
444 | #endif
445 | if (send_handle >= 0) {
446 | // Set the GUI and app state to
447 | // the PLAYING state.
448 | state = PLAYING;
449 | startButton->disable();
450 | stopButton->enable();
451 | pauseButton->enable();
452 | //rewindButton->disable();
453 | playback_start_time = get_time();
454 |
455 | // Start the playback thread.
456 | run_thread = true;
457 | packets_processed = 0;
458 | elapsed_time = 0.0;
459 | pthread_create(&thread, NULL, &thread_function, this);
460 | // Start the periodic update timer.
461 | // FOX 1.7 changes the timeouts to all be nanoseconds.
462 | // Fox 1.6 had all timeouts as milliseconds.
463 | int timeout_scalar = 1;
464 | #if (FOX_MINOR >= 7)
465 | timeout_scalar = 1000*1000;
466 | #endif
467 | getApp()->addTimeout(this, ID_CAPTURE_TIMEOUT, 1 * timeout_scalar /*1ms*/);
468 | }
469 | else {
470 | FXMessageBox::information(this, MBOX_OK, "Networking Error", "Unable to get a write handle for the playback.");
471 | }
472 | }
473 | }
474 | else {
475 | // User pushed cancel from the interface window.
476 | }
477 |
478 | delete dlg;
479 | }
480 | else {
481 | // report error.
482 | cout << "Error finding devices " << errbuf << endl;
483 | #ifdef WIN32
484 | const char *privs = "Administrator";
485 | #else
486 | const char *privs = "root user";
487 | #endif
488 | FXString s;
489 | s.format("There was an error trying to open the network device.\nThis most likely means that you do not have permission to open raw sockets.\nEnsure that you have %s privileges and try again.\n\nError: %s", privs, errbuf);
490 | FXMessageBox::error(this, MBOX_OK, "Capture Error", "%s", s.text());
491 | }
492 |
493 | pcap_freealldevs(devs);
494 |
495 | return 1;
496 | }
497 |
498 | long
499 | PlaybackWindow::onStop(FXObject *, FXSelector, void*)
500 | {
501 |
502 | // Reset the state of the GUI
503 | state = STOPPED;
504 | progress->setProgress(0);
505 | startButton->enable();
506 | stopButton->disable();
507 | pauseButton->disable();
508 | //rewindButton->disable();
509 |
510 | next_packet_data = NULL;
511 |
512 | getApp()->removeTimeout(this, ID_CAPTURE_TIMEOUT);
513 |
514 | // Stop the playback thread and wait for it to exit.
515 | run_thread = false;
516 | pthread_join(thread, NULL);
517 |
518 | elapsed_time = 0.0;
519 | packets_processed = 0;
520 | setPlaybackPacketsProcessed(0);
521 | setPlaybackElapsedTime(0.0);
522 |
523 | // Clean up the libpcap objects.
524 | pcap_close(live_capture);
525 | pcap_close(pcap_file);
526 | send_handle = -1;
527 |
528 | cout << "Stopped" << endl;
529 |
530 | return 1;
531 | }
532 |
533 | long
534 | PlaybackWindow::onPause(FXObject *, FXSelector, void*)
535 | {
536 | state = PAUSED;
537 | startButton->enable();
538 | stopButton->enable();
539 | pauseButton->disable();
540 | //rewindButton->enable();
541 |
542 | pause_time = get_time();
543 |
544 | return 1;
545 | }
546 |
547 | long
548 | PlaybackWindow::onRewind(FXObject *, FXSelector, void*)
549 | {
550 | /* What to do here ?? */
551 |
552 | return 1;
553 | }
554 |
555 | long
556 | PlaybackWindow::onOk(FXObject *, FXSelector, void*)
557 | {
558 | return 1;
559 | }
560 |
561 | long
562 | PlaybackWindow::onOpen(FXObject *, FXSelector, void*)
563 | {
564 | char filename[512];
565 | char file_title[512];
566 | int res;
567 |
568 | filename[0] = '\0';
569 | file_title[0] = '\0';
570 |
571 | #ifdef WIN32
572 |
573 | OPENFILENAME ofn;
574 | memset(&ofn, 0, sizeof(ofn));
575 | ofn.lStructSize = sizeof(OPENFILENAME);
576 | ofn.hwndOwner = (HWND) this->id();
577 | ofn.hInstance = NULL;//GetModuleHandle(NULL);
578 | ofn.lpstrFilter = "All Files\0*.*\0\0";
579 | ofn.lpstrCustomFilter = NULL;
580 | ofn.nMaxCustFilter = 0;
581 | ofn.nFilterIndex = 0;
582 | ofn.lpstrFile = filename;
583 | ofn.nMaxFile = sizeof(filename);
584 | ofn.lpstrFileTitle = file_title;
585 | ofn.nMaxFileTitle = sizeof(file_title);
586 | ofn.lpstrInitialDir = NULL;
587 | ofn.lpstrTitle = NULL;
588 | ofn.Flags = /*OFN_DONTADDTORECENT |*/ OFN_ENABLESIZING | OFN_EXPLORER | OFN_FILEMUSTEXIST;
589 | ofn.nFileOffset = 0;
590 | ofn.nFileExtension = 0;
591 | ofn.lpstrDefExt = 0;
592 | ofn.lCustData = 0;
593 | ofn.lpfnHook = 0;
594 | ofn.lpTemplateName = 0;
595 | //ofn.pvReserved = 0;
596 | //ofn.dwReserved = 0;
597 | //ofn.FlagsEx = 0;
598 |
599 |
600 | res = GetOpenFileName( &ofn );
601 | unsigned int err = CommDlgExtendedError();
602 |
603 | #else
604 | // Use the Fox File open dialog.
605 | FXFileDialog *dlg = new FXFileDialog(this, "Open PCAP File");
606 | dlg->setPatternList("TCPDump Files (*.dump,*.tcpdump,*.pcap)\nAll Files (*)");
607 | res = dlg->execute();
608 | strncpy(filename, dlg->getFilename().text(), sizeof(filename));
609 | filename[sizeof(filename)-1] = '\0';
610 |
611 |
612 | #endif
613 | if( res ) {
614 | /* Open the file */
615 | FXApp::instance()->beginWaitCursor();
616 | this->filename = filename;
617 | openFile();
618 | FXApp::instance()->endWaitCursor();
619 | }
620 |
621 | return 1;
622 | }
623 |
624 | long
625 | PlaybackWindow::onAbout(FXObject *, FXSelector, void*)
626 | {
627 | AboutWindow box(this);
628 | box.execute(PLACEMENT_OWNER);
629 |
630 | return 1;
631 | }
632 |
633 |
634 | /* This function is called by Fox Toolkit when the window is actually
635 | * created on the X server */
636 | void
637 | PlaybackWindow::create()
638 | {
639 | FXMainWindow::create();
640 |
641 | /* Show the window */
642 | show();
643 |
644 | /* Open the file, if one was provided */
645 | if (filename != "")
646 | openFile();
647 | }
648 |
649 | bool
650 | PlaybackWindow::openFile()
651 | {
652 |
653 | // If we are playing, stop.
654 | if (state == PLAYING || state == PAUSED)
655 | onStop(NULL,0,NULL);
656 |
657 | // Count the total number of packets in the file and find out
658 | // what the total elapsed time of the capture is. The only way to do
659 | // this with libpcap is to call pcap_next() until you get to the
660 | // end.
661 | const u_char *data;
662 | struct pcap_pkthdr header;
663 | char errbuf[PCAP_ERRBUF_SIZE];
664 |
665 | // Open the file.
666 | pcap_file = pcap_open_offline(filename.text(), errbuf);
667 | if (!pcap_file) {
668 | FXMessageBox::information( getApp(), MBOX_OK, "File Open Error", "Can't open original file %s for reading.\n", filename.text() );
669 | initialized = false;
670 | return false;
671 | }
672 | else {
673 | total_packets = 0;
674 | memset(&header,0,sizeof(header));
675 |
676 | // Look at the first packet and get the start time;
677 | capture_start_time = 0;
678 | if (pcap_next(pcap_file, &header)) {
679 | capture_start_time = tv_to_double(&header.ts);
680 | total_packets++;
681 | }
682 |
683 | // Count the packets in the file.
684 | while ((data = pcap_next(pcap_file, &header))) {
685 | total_packets++;
686 | }
687 |
688 | // Get the total time based on the _last_
689 | // packet header in the file.
690 | total_time = tv_to_double(&header.ts) - capture_start_time;
691 | setPlaybackTotalTime(total_time);
692 |
693 |
694 | // Set the total number of packets in the progress bar.
695 | progress->setTotal(total_packets);
696 |
697 | // Close the open file.
698 | pcap_close(pcap_file);
699 | pcap_file = NULL;
700 |
701 | // Set the state of the buttons.
702 | startButton->enable();
703 | stopButton->disable();
704 | pauseButton->disable();
705 |
706 | // Reset the counters.
707 | elapsed_time = 0.0;
708 | packets_processed = 0;
709 | setPlaybackPacketsProcessed(0);
710 | setPlaybackElapsedTime(0.0);
711 |
712 | initialized = true;
713 | }
714 |
715 | return true;
716 | }
717 |
718 |
--------------------------------------------------------------------------------
/PlaybackWindow.h:
--------------------------------------------------------------------------------
1 | /**************************************************************************
2 | Window for Playing Back captures
3 | Copyright 2009 Alan Ott, Signal 11 Software
4 | 10-1-2009
5 |
6 | This program is free software: you can redistribute it and/or modify
7 | it under the terms of the GNU General Public License as published by
8 | the Free Software Foundation, either version 3 of the License, or
9 | (at your option) any later version.
10 |
11 | This program is distributed in the hope that it will be useful,
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 | GNU General Public License for more details.
15 |
16 | You should have received a copy of the GNU General Public License
17 | along with this program. If not, see .
18 |
19 | ***************************************************************************/
20 |
21 |
22 | #ifndef PLAYBACKWINDOW_H__
23 | #define PLAYBACKWINDOW_H__
24 |
25 | #include
26 | #include
27 | #include
28 |
29 | typedef struct pcap pcap_t;
30 | struct pcap_pkthdr;
31 |
32 |
33 | class PlaybackWindow : public FXMainWindow {
34 | FXDECLARE(PlaybackWindow)
35 |
36 | public:
37 | enum {
38 | ID_FIRST = FXMainWindow::ID_LAST,
39 | ID_START_BUTTON,
40 | ID_STOP_BUTTON,
41 | ID_PAUSE_BUTTON,
42 | ID_REWIND_BUTTON,
43 | ID_OK_BUTTON,
44 | ID_CAPTURE_TIMEOUT,
45 |
46 | ID_OPEN,
47 | ID_ABOUT,
48 |
49 | ID_LAST,
50 | };
51 |
52 | private:
53 | enum State {
54 | PLAYING,
55 | STOPPED,
56 | PAUSED,
57 | };
58 |
59 | FXIcon *mainWindowIcon;
60 | FXIcon *mainWindowMiniIcon;
61 |
62 | static FXIcon *closeIcon;
63 | static FXIcon *startIcon;
64 | static FXIcon *stopIcon;
65 | static FXIcon *pauseIcon;
66 | static FXIcon *rewindIcon;
67 |
68 | FXMenuBar *menubar;
69 | FXMenuPane *filemenu;
70 |
71 | FXButton *startButton;
72 | FXButton *stopButton;
73 | FXButton *pauseButton;
74 | FXButton *rewindButton;
75 |
76 | FXLabel *elapsedTimeLabel;
77 | FXLabel *slashLabel;
78 | FXLabel *totalTimeLabel;
79 |
80 | FXLabel *processedLabel;
81 |
82 | FXCheckButton *syncButton;
83 | FXProgressBar *progress;
84 |
85 | FXDataTarget syncTarget;
86 |
87 | FXString filename;
88 | State state; // State is read from the playback thread
89 | int send_handle; // UNIX only.
90 |
91 | pcap_t *pcap_file;
92 | pcap_t *live_capture;
93 | unsigned int total_packets;
94 | double total_time;
95 | double capture_start_time;
96 | double playback_start_time;
97 | double pause_time;
98 | bool initialized;
99 |
100 | pcap_pkthdr *next_packet_header;
101 | const char *next_packet_data;
102 |
103 | // These variables are passed between the playback thread and the
104 | // main (GUI) thread without locking. It seems to work fine.
105 | // elapsed_time and packets_processed are updated by the playback
106 | // thread and read by the GUI thread. run_thread and sync_playback
107 | // are updated by the GUI thread and read by the playback thread.
108 | pthread_t thread;
109 | bool run_thread;
110 | bool sync_playback;
111 | double elapsed_time;
112 | unsigned int packets_processed;
113 |
114 | bool isSync(const char *data, size_t length);
115 | FXString secToString(double sec);
116 | void setPlaybackTotalTime(double sec);
117 | void setPlaybackElapsedTime(double sec);
118 | void setPlaybackPacketsProcessed(unsigned int packets);
119 | bool sendPacket(const u_char *data, pcap_pkthdr &hdr);
120 | bool pollSyncPlayback(bool sync_received);
121 | bool pollASyncPlayback();
122 | bool openFile();
123 |
124 | protected:
125 | PlaybackWindow() {};
126 | public:
127 | PlaybackWindow(FXApp *app, FXString filename);
128 | ~PlaybackWindow();
129 |
130 | bool isInitialized() { return initialized; }
131 |
132 | void playbackThread();
133 |
134 |
135 | long onStart(FXObject *sender, FXSelector sel, void *ptr);
136 | long onStop(FXObject *sender, FXSelector sel, void *ptr);
137 | long onPause(FXObject *sender, FXSelector sel, void *ptr);
138 | long onRewind(FXObject *sender, FXSelector sel, void *ptr);
139 | long onTimer(FXObject *sender, FXSelector sel, void *ptr);
140 | long onOk(FXObject *sender, FXSelector sel, void *ptr);
141 | long onTimeout(FXObject *sender, FXSelector sel, void *ptr);
142 | long onOpen(FXObject *sender, FXSelector sel, void *ptr);
143 | long onAbout(FXObject *sender, FXSelector sel, void *ptr);
144 |
145 | void create();
146 | };
147 |
148 | #endif // DATAWINDOW_H__
149 |
--------------------------------------------------------------------------------
/README.txt:
--------------------------------------------------------------------------------
1 | This is PlayCap, the tool for playing back Wireshark, tcpdump, and libpcap
2 | captures. In its early versions, only straight playback (full speed) is
3 | supported. In future versions, variable speed playback may be added if it
4 | is desired. PlayCap has a very simple user interface, designed to be
5 | completely intuitive to anyone using it.
6 |
7 | Platforms Supported
8 | --------------------
9 | PlayCap has currently been tested on Windows XP, Ubuntu 9.10, and Mac OS X
10 | 10.5, with more testing planned in the near future.
11 |
12 | Installation / Building from Source
13 | =====================================
14 |
15 | Linux
16 | ------
17 | On Linux, PlayCap currently must be built from source. CMake (www.cmake.org) is
18 | used instead of autotools to configure the build.
19 |
20 | To install the 3rd party dependencies on an Ubuntu system, GCC must first be
21 | installed. If it has not already been installed, run:
22 | sudo apt-get install build-essential
23 | Then run the following:
24 | sudo apt-get install libfox-dev libpcap-dev cmake
25 |
26 | To build the software, run the following commands from inside the source
27 | distribution:
28 | cmake .
29 | make
30 | sudo make install
31 |
32 | Run the software by running the following from the command line:
33 | playcap
34 |
35 | Mac OS X
36 | ---------
37 | On Mac OSX, PlayCap is built from the command line using cmake. To
38 | prepare a computer for build, first install XCode and Ports, then get the
39 | dependencies from ports by typing the following:
40 | sudo port install fox libpcap cmake
41 |
42 | To build the software, run the following commands from inside the source
43 | distribution:
44 | cmake .
45 | make
46 | sudo make install
47 |
48 | Run the software by running the following from the command line:
49 | playcap
50 |
51 | Windows
52 | --------
53 | Installation:
54 | On Windows, the easiest method of installation is to run the installer
55 | located on the download page on the github.com website. The installer will
56 | prompt to run the WinPcap installer. WinPcap is required for PlayCap to run
57 | on Windows. WinPcap is also installed by Wireshark (and other programs), so
58 | it is likely to already be installed on your computer if you use one of
59 | these tools.
60 |
61 | Setting up a Windows computer for build of PlayCap:
62 | Windows builds are currently only supported using Visual Studio 2008. Other
63 | compilers should work, but will need a re-build of the fox-toolkit library.
64 | Building of this library is described later in this document. For VS 2008,
65 | the build should work out of the box using CMake.
66 |
67 | 1. Install CMake (downloadable from www.cmake.org)
68 | 2. Download PlayCap-Externals.zip from the main PlayCap download site and
69 | extract it just outside of PlayCap, so that PlayCap-Externals and PlayCap
70 | are on the same level, as shown:
71 |
72 | Parent_Folder
73 | |
74 | +PlayCap
75 | +PlayCap-Externals
76 |
77 | 3. Run CMake, and specify PlayCap's directory in the top of the CMake GUI.
78 | 4. In CMake, press "Configure" then "Generate". This will generate a Visual
79 | Studio Project file.
80 | 5. Open the newly created Visual Studio project (.SLN) file in Visual Studio,
81 | select the build configuration (DEBUG or RELEASE) and press the Build
82 | button.
83 | 6. Copy the DLLs from the PlayCap-Externals directory to an appropriate folder.
84 | 7. Install WinPcap_4_1_1.exe from the Playcap-Externals folder (if
85 | necessary).
86 | 8. Run the newly-built playcap.exe
87 |
88 |
89 | To Re-build FOX-Toolkit on Windows (for example on another compiler):
90 | ----------------------------------------------------------------------
91 | 1. Open the FOX Project from windows\vcpp\win32.dsw
92 | 2. In the FOX workspace, add HAVE_PNG_H=1 to the preprocessor
93 | in the DEBUG and RELEASE for projects fox and foxdll (4 times total).
94 | 3. In the FOX workspace, add libpng.lib and zlib.lib to the list of libraries
95 | linked to in the DEBUG and RELEASE configurations for the foxdll project.
96 |
97 | 4. In the Visual Studio Options window, select (from the tree
98 | on the left) "Projects and Solutions" then "VC++ Directories."
99 | Then select "Include files" from the combo box on the top right.
100 | Add the paths for libpng\include and zlib\include from the place
101 | you extracted PlayCap-Externals.zip
102 | 5. Select "Library Files" from the combo box at the top right of
103 | the Options window. Add the paths for libpng\lib and zlib\lib from
104 | the place you exracted PlayCap-Externals.zip
105 | 6. Build projects fox and foxdll depending on whether you want to use
106 | the static lib or the DLL.
107 | 7. Build projects fox and foxdll.
108 | 8. Get the LIB and DLL files from the lib\ directory of the fox distribution.
109 | 9. When done, take the added folders out of the global include and library
110 | paths if desired.
111 |
--------------------------------------------------------------------------------
/Signal11-small.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/Signal11-small.ico
--------------------------------------------------------------------------------
/Signal11.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/Signal11.ico
--------------------------------------------------------------------------------
/famfamfam/build:
--------------------------------------------------------------------------------
1 | for i in *png; do reswrap $i >$i.h; done
2 |
--------------------------------------------------------------------------------
/famfamfam/cross-orig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/famfamfam/cross-orig.png
--------------------------------------------------------------------------------
/famfamfam/cross-orig.png.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2007/11/25 22:14:08 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file cross-orig.png */
4 | const unsigned char crossorig[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x10,0x08,0x06,0x00,0x00,0x00,0x1f,0xf3,0xff,
7 | 0x61,0x00,0x00,0x00,0x04,0x67,0x41,0x4d,0x41,0x00,0x00,0xaf,0xc8,0x37,0x05,0x8a,
8 | 0xe9,0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,
9 | 0x65,0x00,0x41,0x64,0x6f,0x62,0x65,0x20,0x49,0x6d,0x61,0x67,0x65,0x52,0x65,0x61,
10 | 0x64,0x79,0x71,0xc9,0x65,0x3c,0x00,0x00,0x02,0x21,0x49,0x44,0x41,0x54,0x38,0xcb,
11 | 0x95,0x93,0xeb,0x4e,0x13,0x51,0x14,0x85,0x89,0x89,0xc9,0x89,0xcf,0xa0,0x56,0x89,
12 | 0x86,0xc8,0x91,0x80,0xc4,0x1b,0x42,0x5b,0x06,0x28,0xad,0x0d,0x08,0x26,0xd0,0xfb,
13 | 0x85,0x5e,0xa4,0x80,0xb4,0xa5,0xed,0xa4,0x4d,0xa1,0x36,0xea,0x0f,0x4d,0x7c,0x12,
14 | 0x9f,0x0b,0x44,0xc5,0xde,0xb0,0xd2,0x99,0x76,0x3a,0xd3,0xe5,0xae,0x98,0x4a,0x2d,
15 | 0x25,0xe1,0xc7,0x4e,0xce,0x64,0xce,0xfa,0xf6,0xac,0xb5,0xf7,0x0c,0x00,0x18,0xb8,
16 | 0x4c,0xd5,0xd7,0x42,0xd7,0xce,0x3e,0x77,0x5f,0x10,0x33,0x3a,0x2a,0xde,0x57,0xec,
17 | 0x0f,0x72,0xd9,0xed,0x8d,0xd7,0x6c,0x4e,0x43,0x2f,0xa0,0x2d,0xce,0xec,0xa2,0x95,
18 | 0xce,0x42,0x8b,0x27,0x7b,0x20,0x75,0x5f,0x80,0xd7,0x03,0x61,0x34,0x36,0xb6,0xf0,
19 | 0xeb,0xe5,0xca,0xe7,0xea,0xe2,0xd2,0xbd,0x7f,0x80,0xbf,0x62,0xe4,0xdf,0xa1,0x45,
20 | 0xa5,0x25,0x44,0x34,0x37,0xb7,0x3b,0x10,0xd9,0xbb,0xc6,0xa9,0x3b,0x9a,0xd1,0x38,
21 | 0x90,0xcb,0xa3,0x7d,0x3e,0x36,0x5b,0xe3,0xe5,0x19,0xd3,0x95,0x53,0x40,0x2a,0xcd,
22 | 0x5a,0x09,0x51,0x6b,0xed,0xbe,0x01,0x3e,0x7e,0x82,0x96,0xcd,0xb5,0x01,0x68,0x04,
23 | 0x42,0x5c,0xf6,0xf8,0x39,0x75,0x87,0xb2,0x1d,0x03,0xe8,0xbd,0xec,0x0f,0xe0,0x78,
24 | 0xfe,0xb9,0x5a,0x16,0xe6,0xae,0x76,0x59,0xd0,0x62,0x09,0xa6,0xbe,0x8e,0xa9,0x9a,
25 | 0x98,0x01,0xde,0x7f,0x80,0x9a,0x4a,0xa3,0x1e,0x0c,0x83,0xba,0x43,0xd9,0x8a,0x02,
26 | 0xd9,0xbd,0x3f,0xe7,0x8a,0xc9,0x42,0xe2,0x59,0x76,0x6e,0x88,0xcd,0xc8,0x26,0x6b,
27 | 0x84,0xd6,0xd5,0x66,0x74,0x87,0xec,0xbc,0x05,0xf6,0xf2,0x24,0xcc,0x01,0x99,0x2c,
28 | 0x64,0x8f,0x0f,0x95,0x39,0xb3,0x5a,0x9e,0x9e,0x61,0xfd,0xa7,0x70,0x1a,0x16,0x93,
29 | 0x5c,0x5e,0x0d,0x59,0xb2,0xe3,0xf6,0x01,0x0e,0x37,0x20,0xa6,0x51,0x99,0x9d,0xd7,
30 | 0x4a,0x46,0x81,0xfd,0x7f,0xbf,0x07,0x20,0x39,0x3d,0xed,0x51,0x01,0x34,0x0d,0xd8,
31 | 0x9c,0xc0,0x8a,0x1d,0xd8,0x49,0x92,0x6f,0x0b,0x0a,0x13,0x53,0xfc,0x42,0x80,0xe4,
32 | 0x70,0x73,0xc9,0xe5,0x81,0x12,0x8e,0x00,0x49,0x91,0x84,0x29,0x20,0x46,0x76,0x28,
33 | 0x40,0x79,0xd5,0x8e,0xb2,0xde,0x88,0xef,0x63,0xe3,0xfc,0x5c,0x40,0xcd,0xee,0xe2,
34 | 0x92,0xd3,0x0d,0x25,0xb4,0x0e,0xd0,0x18,0x25,0x87,0x0b,0x14,0x96,0x5a,0x9c,0x32,
35 | 0x68,0x27,0x8b,0xcb,0x40,0x64,0x03,0xb5,0x17,0xcb,0x28,0x3c,0x7c,0x8c,0xc3,0xa1,
36 | 0x61,0xde,0x05,0xa0,0xcd,0xe2,0xd4,0x1d,0x4a,0xf0,0x15,0x75,0x4d,0x40,0xa2,0x4f,
37 | 0xa7,0xb0,0xd4,0xe2,0xa4,0x81,0x15,0x9e,0x4c,0xb0,0xa3,0xf1,0x47,0x6a,0xd5,0x64,
38 | 0x06,0x82,0x21,0x9c,0x58,0xac,0x38,0x1a,0x19,0xc5,0xc1,0xad,0x41,0xde,0x01,0xd0,
39 | 0x66,0x09,0x35,0x9b,0x03,0x4a,0x20,0x04,0x69,0xd5,0x01,0x0a,0x4b,0x2d,0x3e,0xd3,
40 | 0x77,0x02,0xfb,0x36,0x32,0xc6,0xbe,0x0e,0xdf,0x57,0x7f,0x1a,0x05,0x48,0xd6,0x05,
41 | 0xfc,0x18,0x7d,0x80,0xfd,0x1b,0x3a,0xa1,0xcb,0x02,0x6d,0x96,0x50,0x5d,0x58,0x42,
42 | 0xc9,0x30,0xad,0x51,0x58,0x3d,0x69,0x1f,0xde,0x1d,0x62,0x5f,0x06,0xef,0xa8,0x67,
43 | 0xc5,0x3d,0x21,0x96,0xf4,0x46,0xa1,0xf0,0x74,0x92,0xf5,0xfb,0x99,0x0e,0x74,0xb7,
44 | 0xd9,0xfe,0xf5,0x9b,0xc2,0x85,0x63,0xbc,0x6c,0xfd,0x06,0x72,0xbb,0xa4,0xc7,0xdb,
45 | 0xed,0xbe,0x14,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
46 | };
47 |
48 |
--------------------------------------------------------------------------------
/famfamfam/cross-transparent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/famfamfam/cross-transparent.png
--------------------------------------------------------------------------------
/famfamfam/cross-transparent.png.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2007/11/25 22:14:08 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file cross-transparent.png */
4 | const unsigned char crosstransparent[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x10,0x08,0x06,0x00,0x00,0x00,0x1f,0xf3,0xff,
7 | 0x61,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,
9 | 0x00,0x0b,0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd7,0x0b,0x1a,0x03,0x0e,0x04,0x10,0x33,0x57,0x13,0x00,0x00,0x01,0x72,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xad,0x93,0x4d,0x8a,0xdb,0x40,0x10,0x85,0x5f,0xf5,0x08,
12 | 0x07,0x2f,0x26,0x61,0x08,0x03,0x73,0x05,0xcb,0x8a,0x95,0xc3,0x08,0x6c,0xb0,0xa4,
13 | 0xcb,0x79,0x63,0x81,0x0f,0x23,0x23,0xbb,0x17,0x39,0x41,0x42,0x36,0x86,0x04,0x02,
14 | 0xe3,0xae,0x7a,0x59,0xc4,0x12,0x92,0xac,0x59,0x0c,0xa4,0xa0,0x17,0x45,0xd7,0xfb,
15 | 0xba,0xfe,0x1a,0x78,0xa7,0xe5,0x79,0xee,0xfa,0xfe,0x43,0xdf,0x29,0xcb,0x72,0x96,
16 | 0xa6,0xe9,0xec,0x78,0x3c,0x86,0x37,0xc4,0x73,0x92,0x4f,0xab,0xd5,0x4a,0x9a,0xa6,
17 | 0x79,0x1d,0x00,0xca,0xb2,0x9c,0x01,0xf8,0x02,0xe0,0x39,0x4d,0xd3,0xcb,0x18,0x92,
18 | 0xe7,0xf9,0x1c,0x40,0x2c,0x22,0x9f,0x48,0x3e,0x24,0x49,0xf2,0xe7,0x74,0x3a,0x05,
19 | 0x37,0x12,0xb7,0x16,0x17,0x45,0x31,0x6f,0x9d,0xed,0x76,0xdb,0x8a,0xe1,0x9c,0x83,
20 | 0x73,0xee,0x09,0xc0,0x47,0x00,0x88,0x6e,0x31,0x53,0x29,0xc7,0x79,0x9e,0x7b,0x92,
21 | 0x10,0x91,0x18,0x00,0x44,0x04,0xaa,0x0a,0x33,0x23,0xc9,0x9f,0x00,0x20,0xbd,0x12,
22 | 0x1c,0xc9,0xaf,0x22,0x22,0x00,0x40,0xb2,0x3b,0xed,0xcb,0xaa,0x0a,0x55,0x25,0x80,
23 | 0x7a,0xbf,0xdf,0xdb,0x00,0x00,0x00,0x45,0x51,0x74,0x90,0x1b,0xa7,0xb3,0x29,0x31,
24 | 0x00,0x0c,0x46,0xb2,0xdb,0xed,0x0c,0x40,0x6d,0x66,0x77,0xf5,0xa8,0x2a,0xc6,0xe2,
25 | 0x3b,0xc0,0x2d,0xf5,0x0f,0x53,0x23,0x14,0x91,0xc9,0xbb,0xc1,0x1e,0xf4,0xbb,0x3d,
26 | 0x2e,0xe1,0x06,0x7f,0x8e,0xe3,0xf8,0x72,0x3e,0x9f,0xc3,0x1d,0x60,0x3c,0x2a,0x55,
27 | 0x45,0x08,0x81,0x21,0x04,0x01,0x80,0x28,0x8a,0x06,0x10,0xef,0x7d,0xe8,0x00,0x53,
28 | 0x62,0x55,0x25,0xc9,0x1a,0xc0,0x77,0x33,0x7b,0x21,0x29,0x7d,0xc8,0x62,0xb1,0xb8,
29 | 0x78,0xef,0xff,0x2d,0x12,0xc9,0x68,0xdc,0x6d,0x92,0x75,0x55,0x55,0x56,0x55,0x95,
30 | 0x91,0xac,0x43,0x08,0xbc,0x5e,0xaf,0xfd,0xd2,0xa2,0x2e,0x83,0xa6,0x69,0x5e,0x93,
31 | 0x24,0xf9,0x4d,0xf2,0xb3,0x99,0xa1,0x15,0xb7,0x91,0xde,0x7b,0x2e,0x97,0xcb,0x1f,
32 | 0xaa,0xfa,0x42,0x52,0xcc,0xec,0xdb,0xe1,0x70,0xf8,0x75,0xd7,0xa4,0xcd,0x66,0xf3,
33 | 0xb8,0x5e,0xaf,0xdd,0x5b,0x3f,0x31,0xcb,0x32,0x97,0x65,0xd9,0x23,0xfe,0xa7,0xfd,
34 | 0x05,0x92,0xb8,0xeb,0x3a,0x1f,0x44,0xe6,0x29,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,
35 | 0x44,0xae,0x42,0x60,0x82
36 | };
37 |
38 |
--------------------------------------------------------------------------------
/famfamfam/cross.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/famfamfam/cross.png
--------------------------------------------------------------------------------
/famfamfam/cross.png.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2007/11/25 22:14:08 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file cross.png */
4 | const unsigned char cross[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x10,0x08,0x06,0x00,0x00,0x00,0x1f,0xf3,0xff,
7 | 0x61,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,
9 | 0x00,0x0b,0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd7,0x0a,0x1b,0x13,0x1f,0x2f,0x76,0xac,0x60,0xe6,0x00,0x00,0x01,0x63,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0x95,0x93,0x31,0x8e,0xdb,0x30,0x10,0x45,0xff,0xa7,0x2c,
12 | 0x0a,0x96,0x55,0x6f,0x9b,0x22,0xa5,0xf6,0x0c,0x29,0x5c,0xe4,0x0a,0xdb,0xb9,0xcb,
13 | 0x95,0x72,0x87,0x9c,0xc2,0x97,0x50,0x90,0x36,0x6d,0xb0,0xed,0xc2,0xa6,0x45,0xcd,
14 | 0xfc,0x6d,0x2c,0x41,0x66,0x94,0x05,0xa2,0x8a,0x22,0xe7,0x3d,0x70,0xfe,0x48,0x3c,
15 | 0x9d,0x4e,0xf8,0x9f,0xc7,0xdd,0xdb,0x10,0xc2,0x65,0x7e,0x0f,0xc5,0xf9,0x27,0x00,
16 | 0xfd,0x07,0x70,0x2f,0xe9,0x9b,0x99,0x7d,0x99,0xf7,0x76,0x05,0xfc,0xfb,0xbe,0x7e,
17 | 0x06,0xf0,0xb3,0x84,0x01,0x0c,0x24,0xe1,0xee,0x3f,0x72,0xce,0xaf,0x75,0x5d,0xff,
18 | 0x0a,0x1b,0x30,0x00,0x0c,0x92,0x96,0x9b,0x98,0xd9,0x02,0x87,0x10,0x10,0x42,0x78,
19 | 0x01,0xf0,0x75,0x1c,0xc7,0x30,0xdf,0xe0,0x0f,0x00,0x2f,0x5a,0x1a,0xdc,0xfd,0x59,
20 | 0x12,0x48,0x0e,0x00,0x40,0x12,0x66,0x06,0x77,0x37,0x49,0xdf,0x63,0x8c,0x3e,0x0b,
21 | 0x12,0x80,0x83,0xa4,0x37,0x92,0xd5,0x5a,0xb2,0x84,0x15,0x02,0xcc,0x0c,0x66,0x66,
22 | 0x00,0xba,0x18,0x63,0x2e,0x33,0x48,0x00,0x3a,0x77,0x7f,0x23,0x59,0x91,0x04,0x49,
23 | 0xac,0xda,0x58,0xc3,0x69,0x73,0x0a,0x24,0x67,0x89,0x97,0x13,0x30,0x33,0x2f,0xe1,
24 | 0xad,0x31,0x42,0xd2,0xe7,0xad,0x7d,0x92,0xe1,0x7e,0x86,0x7f,0x0a,0xd6,0x69,0xff,
25 | 0x55,0x18,0x02,0x48,0x0e,0x29,0xa5,0x7e,0x53,0x50,0x8e,0xca,0xcc,0x30,0x8e,0xa3,
26 | 0xdd,0x6e,0x37,0x9f,0xa6,0x09,0x55,0x55,0xa1,0xaa,0x2a,0x90,0x1c,0xae,0xd7,0x6b,
27 | 0xff,0x20,0xd8,0x82,0xcd,0xcc,0x24,0x75,0x00,0x0e,0xd3,0x34,0x59,0xce,0xf9,0x41,
28 | 0x72,0xb9,0x5c,0xfa,0x45,0x20,0xe9,0xa9,0x4c,0x5b,0x52,0xd7,0x34,0x4d,0x6a,0x9a,
29 | 0x26,0x49,0xea,0x66,0xc9,0xaa,0xbd,0xa7,0x45,0xb0,0xdb,0xed,0xce,0xee,0x7e,0xbc,
30 | 0xc3,0x3e,0xc3,0x73,0xe5,0x7e,0xbf,0x4f,0x00,0xba,0x9c,0xb3,0xe5,0x9c,0xe1,0xee,
31 | 0xc7,0xb6,0x6d,0xcf,0x0f,0x19,0xd4,0x75,0x7d,0x96,0x74,0x94,0x74,0x58,0xc3,0xa5,
32 | 0x64,0x0d,0x97,0x1f,0x12,0x62,0x8c,0xe7,0x8f,0x7e,0xe5,0xb6,0x6d,0x13,0x80,0x87,
33 | 0x9a,0x77,0xba,0x8e,0xe5,0x66,0x34,0xec,0x84,0x1b,0x00,0x00,0x00,0x00,0x49,0x45,
34 | 0x4e,0x44,0xae,0x42,0x60,0x82
35 | };
36 |
37 |
--------------------------------------------------------------------------------
/main.cpp:
--------------------------------------------------------------------------------
1 | /**************************************************************************
2 | Main GUI Entry
3 | Copyright 2009 Alan Ott, Signal 11 Software
4 |
5 | This program is free software: you can redistribute it and/or modify
6 | it under the terms of the GNU General Public License as published by
7 | the Free Software Foundation, either version 3 of the License, or
8 | (at your option) any later version.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program. If not, see .
17 |
18 | ***************************************************************************/
19 |
20 |
21 | #include
22 | #include "PlaybackWindow.h"
23 |
24 | int main( int argc, char **argv )
25 | {
26 |
27 | FXApp app("Playback", "Signal 11 Software");
28 | app.init(argc,argv);
29 |
30 | FXMainWindow *mw;
31 | if( argc < 2 )
32 | mw = new PlaybackWindow(&app, (const char*)NULL);
33 | else
34 | mw = new PlaybackWindow(&app, argv[1]);
35 |
36 | app.create();
37 | app.run( );
38 |
39 | return 0;
40 | }
41 |
--------------------------------------------------------------------------------
/signal11-logo.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2007/11/12 21:30:57 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file signal11-logo.png */
4 | const unsigned char signal11_logo[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x01,0xe9,0x00,0x00,0x00,0x9a,0x08,0x06,0x00,0x00,0x00,0x8d,0x0f,0xb0,
7 | 0x4c,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,
9 | 0x00,0x0b,0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd7,0x0b,0x0d,0x02,0x1e,0x1d,0xf2,0x96,0xe8,0x93,0x00,0x00,0x00,0x1d,0x74,
11 | 0x45,0x58,0x74,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x00,0x43,0x72,0x65,0x61,0x74,
12 | 0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x54,0x68,0x65,0x20,0x47,0x49,0x4d,0x50,
13 | 0xef,0x64,0x25,0x6e,0x00,0x00,0x19,0xeb,0x49,0x44,0x41,0x54,0x78,0x9c,0xed,0xdd,
14 | 0x79,0x98,0x1d,0x55,0x9d,0xc6,0xf1,0x2f,0x49,0x08,0x49,0xd8,0xc2,0x1e,0x96,0x10,
15 | 0x08,0x61,0x09,0x4b,0x86,0x4d,0x40,0x41,0xc8,0x80,0xac,0x82,0x80,0x80,0x83,0x22,
16 | 0xb8,0x0c,0x08,0x8a,0xa8,0x33,0xb2,0x28,0x8c,0x8e,0xcb,0x88,0xe3,0xca,0xa0,0xe0,
17 | 0x02,0x28,0x28,0xa2,0x83,0x0a,0x22,0xcb,0x23,0x28,0xb2,0x09,0x48,0x24,0x04,0x65,
18 | 0x09,0x01,0xc2,0x26,0x01,0x42,0x02,0x91,0x25,0x90,0x84,0x2c,0x3d,0x7f,0xbc,0x55,
19 | 0xd3,0x37,0x4d,0x77,0xdf,0xa5,0x4e,0xd5,0xa9,0xaa,0xfb,0x7e,0x9e,0xe7,0x3e,0x9d,
20 | 0xdc,0xae,0x3a,0x75,0xea,0xf6,0xad,0xfa,0x55,0x9d,0x3a,0xe7,0x77,0xc0,0xcc,0xcc,
21 | 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
22 | 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
23 | 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
24 | 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
25 | 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0x82,0x59,0x21,
26 | 0x76,0x05,0x0c,0x80,0x9e,0x8c,0xeb,0xfb,0xef,0x68,0x96,0x9d,0x8f,0x43,0x2b,0x9d,
27 | 0x21,0xb1,0x2b,0x60,0x66,0x66,0x66,0xfd,0x1b,0x16,0xbb,0x02,0x19,0x6c,0x06,0xec,
28 | 0x08,0x4c,0x04,0xb6,0x02,0xd6,0x07,0xd6,0x03,0xd6,0x02,0x46,0x02,0x2b,0xa1,0xfd,
29 | 0x5b,0xd0,0xcf,0xeb,0x1f,0xc0,0x33,0xc0,0xb3,0xc9,0x2b,0xfd,0xf7,0x23,0xc0,0xdc,
30 | 0x22,0x77,0xc2,0xcc,0xcc,0x6c,0x20,0x55,0x6a,0x9e,0x19,0x09,0x1c,0x04,0x1c,0x01,
31 | 0x4c,0x46,0x41,0x39,0x0f,0x2f,0x00,0x0f,0x02,0xd3,0x93,0x9f,0x0f,0x02,0xd3,0x80,
32 | 0x57,0x72,0xda,0x1e,0xb8,0x99,0xcd,0xac,0x0c,0x7c,0x1c,0x5a,0xe9,0x54,0xe1,0x4b,
33 | 0x35,0x01,0xf8,0x24,0xf0,0x41,0x60,0x95,0x48,0x75,0x58,0x86,0x82,0xf5,0x9d,0xc0,
34 | 0x9f,0x93,0x9f,0x8f,0x06,0x2c,0xdf,0x27,0x07,0xb3,0xf8,0x6a,0x77,0x1c,0x3e,0x3e,
35 | 0x66,0x4c,0xc7,0xfb,0x34,0x7e,0xf6,0xec,0xd2,0xed,0x4f,0xa3,0x3a,0xef,0x5b,0xa3,
36 | 0x32,0x57,0x74,0x3d,0xe0,0x2b,0xc0,0x87,0x28,0xe7,0xb3,0xf3,0x17,0x80,0x75,0x02,
37 | 0x95,0x55,0xbb,0x93,0x83,0x59,0x05,0x55,0xfa,0x38,0xcc,0x12,0xb4,0xfa,0x53,0xa6,
38 | 0x40,0x56,0xe7,0x7d,0x6b,0xa6,0xac,0xcf,0xa4,0x8f,0x06,0x7e,0x00,0xac,0x1e,0xbb,
39 | 0x22,0x83,0x58,0x3b,0x76,0x05,0xcc,0xac,0x3b,0x85,0x0e,0x5a,0x65,0x52,0xe7,0x7d,
40 | 0xeb,0x44,0xd9,0x82,0xf4,0x50,0xe0,0x3c,0xe0,0xa4,0xd8,0x15,0x31,0x33,0x2b,0x9b,
41 | 0x3a,0x07,0xb0,0x3a,0xef,0x5b,0x16,0x65,0x0a,0xd2,0x2b,0x02,0x97,0x03,0x87,0xc7,
42 | 0xae,0x88,0x99,0x99,0x59,0x19,0x94,0xe9,0x59,0xef,0x05,0x38,0x40,0x9b,0x99,0x99,
43 | 0xfd,0xbf,0xb2,0x04,0xe9,0xb4,0xf7,0xb6,0x99,0x99,0x99,0x25,0xca,0x10,0xa4,0x27,
44 | 0x00,0x5f,0x8d,0x5d,0x09,0x33,0x33,0xb3,0xb2,0x29,0x43,0x90,0xfe,0x26,0x4a,0x54,
45 | 0x62,0x66,0x66,0x66,0x0d,0x62,0x07,0xe9,0x1d,0x80,0x43,0x23,0xd7,0xc1,0xcc,0xcc,
46 | 0xac,0x94,0x62,0xf7,0xee,0xfe,0x68,0xc0,0xb2,0x16,0x03,0x7f,0x01,0x6e,0x42,0xd9,
47 | 0xc1,0x9e,0x40,0x39,0xb9,0x5f,0x4f,0x5e,0x4b,0xd0,0x1d,0xfb,0x48,0x94,0x28,0x65,
48 | 0x7d,0x60,0x1c,0xca,0xfd,0x3d,0x11,0xd8,0x99,0x70,0xc9,0x49,0xda,0x55,0x99,0x81,
49 | 0xf5,0x66,0x66,0x56,0x9c,0x98,0x41,0x7a,0x38,0x70,0x64,0x80,0x72,0x5e,0x05,0xce,
50 | 0x01,0xce,0x07,0xe6,0x34,0x59,0x76,0x7e,0xf2,0x9a,0x0b,0x3c,0xd0,0xcf,0xef,0x37,
51 | 0x05,0xde,0x06,0xec,0x0b,0xbc,0x03,0xd8,0x30,0x40,0xfd,0xcc,0xcc,0xa2,0x48,0x33,
52 | 0x6b,0xd5,0x71,0x0c,0x72,0x9d,0xf7,0xad,0x51,0xcc,0x20,0xbd,0x1b,0xb0,0x46,0xc6,
53 | 0x32,0x1e,0x02,0x0e,0x43,0xb3,0x57,0x85,0xf0,0x44,0xf2,0xba,0x2c,0xf9,0xff,0x8e,
54 | 0x68,0x58,0xd8,0x11,0xe8,0x6e,0xdb,0xcc,0xac,0x94,0xaa,0x94,0xea,0xb2,0x5d,0x75,
55 | 0xde,0xb7,0x66,0x62,0x06,0xe9,0xb7,0x67,0x5c,0xff,0x65,0xe0,0x60,0xe0,0xf1,0x00,
56 | 0x75,0x19,0xc8,0xb4,0xe4,0xf5,0x39,0xd4,0x1c,0x7e,0x1c,0xf0,0x3e,0x34,0x1d,0xa6,
57 | 0x99,0x59,0x14,0x75,0x0e,0x5a,0x75,0xde,0xb7,0x4e,0xc4,0x0c,0xd2,0xdb,0x67,0x5c,
58 | 0xff,0x7b,0xe4,0x1b,0xa0,0xfb,0x9a,0x9a,0xbc,0x4e,0x47,0xb9,0xc5,0x4f,0x2e,0x70,
59 | 0xdb,0x66,0x66,0xb5,0x0e,0x60,0x75,0xde,0xb7,0x2c,0x62,0x06,0xe9,0xf1,0x19,0xd7,
60 | 0xff,0x65,0x90,0x5a,0xb4,0x6f,0x21,0x70,0x49,0xf2,0xea,0x46,0x5b,0xa3,0x67,0xf6,
61 | 0x6f,0x01,0xb6,0x04,0x36,0x02,0x56,0x05,0x46,0xa0,0xe7,0xfd,0xaf,0x00,0x4f,0xa2,
62 | 0xce,0x7b,0xf7,0x00,0xd7,0x01,0xcf,0xc5,0xa8,0x68,0x89,0x0d,0x01,0xde,0x8a,0xfa,
63 | 0x3d,0x6c,0x87,0x3e,0xd3,0xb5,0xd0,0x84,0x32,0x43,0x50,0x47,0xc7,0x79,0xc0,0x53,
64 | 0xe8,0x91,0xce,0x5d,0xc0,0x8d,0xc0,0xb3,0x31,0x2a,0x3b,0x80,0x55,0x50,0xbd,0x37,
65 | 0x46,0xdf,0x81,0x0d,0x93,0x9f,0x1b,0x01,0xa3,0x81,0x51,0xf4,0x76,0xd4,0x1c,0x89,
66 | 0xd2,0xfe,0xbe,0x91,0xbc,0x16,0xa2,0xfd,0x7b,0x01,0xf5,0x0f,0x79,0x02,0x4d,0xfd,
67 | 0xfa,0x30,0xfa,0xce,0xe4,0x39,0x77,0xbb,0x59,0xa5,0xc4,0xbc,0x72,0x99,0x8d,0x7a,
68 | 0x59,0x77,0x6a,0x34,0x6a,0xf2,0xae,0x83,0xb2,0x4f,0x91,0x37,0x1a,0xf8,0x57,0xe0,
69 | 0x04,0x14,0x98,0xdb,0xd1,0x83,0x82,0xcc,0x77,0x80,0x5f,0x01,0x4b,0x9b,0x2c,0x9b,
70 | 0x45,0xd6,0xcf,0x21,0xef,0xed,0x8f,0x45,0xd9,0xf5,0x8e,0xa3,0xfd,0x91,0x04,0x3d,
71 | 0xc0,0x1d,0xc0,0x77,0x81,0x2b,0x18,0xfc,0x73,0x0c,0x6d,0x03,0x74,0x51,0xf1,0x4f,
72 | 0xe8,0xa2,0x62,0x3b,0x74,0x91,0x9d,0xc7,0xf7,0x6e,0x19,0xba,0x30,0xf9,0x23,0x70,
73 | 0x35,0x70,0x2b,0x1a,0x99,0x51,0x84,0xd8,0xdf,0xbf,0xdc,0x74,0xd2,0xb9,0xaa,0x2a,
74 | 0x77,0xb6,0x75,0xde,0x37,0x88,0xfb,0xa5,0x9a,0x0f,0xac,0x9c,0x61,0xfd,0x95,0xd1,
75 | 0x1d,0x47,0x1d,0x94,0xf5,0xe4,0x30,0x1c,0xf8,0x04,0x70,0x26,0xd9,0x3b,0xf9,0x81,
76 | 0x1e,0x4f,0x9c,0x0c,0x5c,0x3f,0xc0,0xef,0x63,0x7f,0x0e,0x79,0x6d,0x7f,0x0d,0xe0,
77 | 0x6c,0xe0,0x78,0xc2,0xb4,0x5e,0x4d,0x07,0x3e,0x86,0x02,0x58,0x1e,0xc6,0x01,0x7b,
78 | 0x02,0x7b,0x25,0xaf,0x09,0x39,0x6d,0xa7,0x15,0x73,0x80,0x8b,0x80,0xef,0x03,0xb3,
79 | 0x72,0xde,0x56,0xec,0xef,0x5f,0x6e,0xea,0x1c,0xc8,0xea,0xbc,0x6f,0x10,0x37,0x99,
80 | 0x49,0xd6,0x2c,0x63,0x31,0x4f,0x1c,0xdd,0x60,0x6b,0x74,0x07,0xfc,0x0d,0xc2,0x04,
81 | 0x68,0xd0,0xdd,0xd7,0xef,0x80,0x4b,0x51,0x73,0x68,0x37,0x38,0x02,0x35,0xe3,0x9e,
82 | 0x44,0xb8,0xc7,0x4b,0x5b,0x03,0x37,0x03,0x5f,0x24,0x9f,0xc0,0xf0,0x24,0xf0,0x53,
83 | 0xd4,0x7a,0x12,0xfb,0x38,0x5b,0x17,0x5d,0x24,0xce,0x44,0xdf,0xc5,0x32,0xcf,0x31,
84 | 0x6f,0x16,0x5c,0xcc,0x20,0xbd,0x38,0xe3,0xfa,0xef,0x0d,0x52,0x0b,0xeb,0xcf,0xa1,
85 | 0xc0,0xdd,0x28,0x23,0x5c,0x1e,0xde,0x8f,0x9a,0x6e,0x37,0xce,0xa9,0xfc,0x32,0x18,
86 | 0x86,0x52,0xde,0xfe,0x9a,0x7c,0x92,0xe4,0xac,0x00,0x7c,0x1e,0xf5,0x8d,0x88,0x9d,
87 | 0x39,0xb0,0x08,0x2b,0x01,0xa7,0x02,0xf7,0x03,0x7b,0x44,0xae,0x8b,0x59,0x61,0x62,
88 | 0x1e,0xdc,0xaf,0x65,0x5c,0xff,0x53,0xc0,0x4e,0x21,0x2a,0x62,0xcb,0xf9,0x08,0x70,
89 | 0x25,0xf9,0xdf,0xe9,0x6e,0x0f,0xdc,0x8e,0x9a,0x56,0xeb,0x66,0x25,0xf4,0x19,0x7e,
90 | 0xba,0x80,0x6d,0x1d,0x87,0x92,0xf9,0x74,0x8b,0xb1,0xc0,0x2d,0x68,0xbf,0xcd,0x6a,
91 | 0x2f,0x66,0x90,0x7e,0x26,0xe3,0xfa,0x23,0x50,0x8f,0x57,0xdf,0x51,0x87,0xf3,0x5e,
92 | 0xf4,0xec,0xaf,0xa8,0xef,0xc5,0x58,0x94,0xc6,0x75,0x83,0x82,0xb6,0x57,0x84,0x91,
93 | 0xa8,0xc3,0xd3,0x21,0x05,0x6e,0xf3,0x13,0xc0,0x51,0x05,0x6e,0x2f,0xb6,0xa1,0xc0,
94 | 0xc5,0xa8,0x45,0xc6,0xac,0xd6,0x62,0x06,0xe9,0x99,0x01,0xca,0x18,0x0d,0xfc,0x1c,
95 | 0x8d,0x5f,0xfe,0x00,0xb0,0x5a,0x80,0x32,0xbb,0xd5,0x1e,0xc0,0x4f,0x28,0xfe,0x3b,
96 | 0x31,0x1e,0xf8,0x0d,0xba,0xfb,0xac,0xba,0x21,0xe8,0xfb,0xb8,0x5f,0x84,0x6d,0x9f,
97 | 0x87,0x8e,0x87,0x6e,0x31,0x04,0xb8,0x10,0x65,0x05,0x34,0xab,0xad,0x98,0x41,0xfa,
98 | 0x9e,0x80,0x65,0xed,0x84,0x9e,0xcd,0xcd,0x41,0xe3,0x72,0x4f,0x05,0x76,0x21,0xfe,
99 | 0x04,0x22,0x55,0xb1,0x2e,0x70,0x39,0x1a,0xcb,0x1a,0xc3,0x2e,0x28,0xc8,0x54,0xdd,
100 | 0x39,0x28,0x4d,0x6d,0x0c,0xeb,0x02,0x9f,0x8d,0xb4,0xed,0x58,0x46,0x00,0x3f,0x23,
101 | 0xde,0xf7,0xd6,0x2c,0x77,0x31,0xbb,0xa1,0xbf,0x0d,0x75,0x1e,0xca,0xd3,0x42,0xe0,
102 | 0x5e,0x34,0x3b,0xd6,0xdd,0xc9,0xcf,0x99,0x64,0x1f,0x6a,0x11,0x5a,0xec,0xa1,0x1f,
103 | 0x57,0x00,0xef,0xce,0x58,0x46,0x19,0xc4,0x1e,0x82,0x15,0xdb,0x2b,0xa8,0x33,0x5e,
104 | 0xd6,0xfc,0x01,0x55,0xfb,0x1c,0xfe,0x9d,0x30,0xcf,0xe5,0x63,0x1f,0x87,0xb9,0xa9,
105 | 0xf3,0x30,0xa5,0x3a,0xef,0x1b,0xc4,0xfd,0x52,0x0d,0x41,0xcf,0xa5,0xc7,0x14,0xbc,
106 | 0xdd,0x97,0xe8,0x0d,0xd8,0x77,0x01,0x53,0x50,0xd6,0xa3,0x98,0x62,0x9e,0x1c,0x0e,
107 | 0x41,0xcf,0x50,0xeb,0xa0,0xdb,0x83,0x34,0x68,0xa8,0xd7,0x0f,0x33,0x96,0x51,0xb5,
108 | 0xcf,0xe1,0x39,0x60,0x13,0x94,0xcd,0x2c,0x0b,0x07,0xe9,0x06,0x55,0x09,0x64,0x75,
109 | 0xde,0x37,0x88,0xdb,0x1c,0xbc,0x0c,0xf8,0x11,0x70,0x56,0xc1,0xdb,0x1d,0x8d,0xd2,
110 | 0x5a,0xee,0xdb,0xf0,0xde,0x74,0x94,0xe1,0xe8,0xf7,0xa8,0x33,0xda,0xc2,0x82,0xeb,
111 | 0x14,0xcb,0x50,0x34,0x4c,0xc8,0xea,0xe3,0x7d,0x64,0x0f,0xd2,0xcd,0x2c,0x42,0xc7,
112 | 0xcc,0xbd,0x28,0x9d,0xe7,0x13,0xc0,0xd3,0xc0,0x8b,0xc9,0x6b,0x01,0x0a,0x98,0x4b,
113 | 0x51,0x93,0xf4,0x08,0x94,0x7c,0x68,0x03,0x94,0x3e,0x74,0x6b,0x60,0x57,0xd4,0x0f,
114 | 0x22,0xc4,0x73,0xf4,0xf5,0x51,0xc7,0xb9,0xcb,0x9a,0x2d,0x68,0x56,0x35,0xb1,0xaf,
115 | 0x26,0xc6,0xa0,0xe6,0xe7,0x2c,0x99,0xc7,0x42,0x9b,0x8f,0x9e,0x6b,0x5f,0x8a,0x32,
116 | 0x63,0x15,0x91,0x7e,0x31,0xd6,0x15,0xfc,0x31,0xe8,0x99,0x5e,0x48,0xb7,0xa0,0x8e,
117 | 0x60,0x7f,0x42,0x77,0x38,0xf3,0x50,0x5e,0xea,0x31,0x28,0x8b,0xd5,0xe1,0x28,0x8b,
118 | 0x55,0x1e,0xca,0x7a,0x27,0xfd,0x32,0x70,0x0d,0x1a,0x96,0xf5,0x30,0xfa,0x5c,0x16,
119 | 0xa2,0x3c,0xd7,0x3b,0xa0,0x5e,0xca,0xef,0x24,0x4c,0x1f,0x91,0x25,0x28,0xf9,0xcc,
120 | 0xfc,0x0c,0x65,0xf4,0xf7,0x39,0x4c,0x45,0xfb,0x70,0x0b,0x6a,0x81,0xca,0x7a,0xd7,
121 | 0x0a,0xea,0x2c,0x78,0x28,0xf0,0x05,0xb2,0x4f,0x05,0x7b,0x2d,0xd9,0x7b,0xd4,0xfb,
122 | 0x4e,0xba,0x41,0x55,0xee,0x36,0xeb,0xbc,0x6f,0x50,0x8e,0x2f,0xd5,0x59,0xc0,0x7f,
123 | 0xc5,0xae,0xc4,0x00,0x9e,0x45,0xb9,0x92,0xbf,0x4f,0xbe,0x79,0xc2,0x63,0x9d,0x1c,
124 | 0xa6,0x12,0x6e,0xac,0xf9,0x74,0xe0,0xa3,0xc0,0x6d,0x2d,0x2c,0xbb,0x27,0xfa,0x4c,
125 | 0xb7,0x0e,0xb4,0xed,0x54,0xd9,0x82,0x74,0x0f,0xea,0x81,0x7c,0x06,0x7a,0xcc,0x32,
126 | 0x98,0xb7,0xa3,0xde,0xf5,0x9b,0x06,0xd8,0xee,0x01,0xc0,0x0d,0x19,0xd6,0x4f,0x3f,
127 | 0x87,0x99,0xc0,0x8f,0xd1,0x85,0xdc,0xd3,0x59,0x2b,0x35,0x88,0xe1,0xc0,0xf9,0x28,
128 | 0x6d,0x6a,0xa7,0x16,0x00,0x6b,0x93,0x2d,0x55,0xb0,0x83,0x74,0x83,0xaa,0x04,0xb2,
129 | 0x3a,0xef,0x1b,0x94,0x23,0x53,0xd1,0xd7,0xd1,0xf3,0xe1,0x32,0xda,0x00,0xf8,0x2a,
130 | 0x9a,0x8d,0xe8,0x0c,0xea,0x31,0x4c,0x28,0x35,0x89,0x70,0x01,0xfa,0x26,0x34,0xdf,
131 | 0x76,0x2b,0x01,0x9a,0x64,0xb9,0x9d,0x51,0x6a,0xcb,0xba,0x7a,0x03,0xdd,0x25,0x9e,
132 | 0x48,0xf3,0x00,0x0d,0x6a,0x79,0xd8,0x13,0x4d,0x3c,0x93,0x55,0xd6,0x4c,0x71,0x77,
133 | 0xa0,0xb9,0xda,0xb7,0x40,0xdf,0xff,0x3c,0x03,0x34,0xe8,0xb3,0x3a,0x91,0x6c,0xb9,
134 | 0xc8,0x47,0xa2,0x51,0x02,0x66,0xb5,0x52,0x86,0x20,0xbd,0x18,0x38,0x92,0xfc,0x93,
135 | 0xe7,0x67,0xb1,0x3a,0xf0,0xdf,0x28,0x25,0xe1,0xae,0x91,0xeb,0x12,0xca,0x31,0x81,
136 | 0xca,0x99,0x8a,0x9a,0x19,0x17,0xb4,0xb9,0xde,0x02,0x14,0x08,0xa6,0x06,0xaa,0x47,
137 | 0x99,0x2c,0x45,0x73,0x8e,0x5f,0xd3,0xe6,0x7a,0xb3,0x08,0xf3,0x77,0xd9,0x26,0xe3,
138 | 0xfa,0x7b,0xa0,0x47,0x3e,0x45,0x76,0x20,0x5b,0x86,0x2e,0xd8,0xb3,0xd8,0x39,0x44,
139 | 0x45,0xcc,0xca,0xa4,0x0c,0x41,0x1a,0x74,0xa5,0xbe,0x2f,0xe5,0x0e,0xd4,0x00,0x9b,
140 | 0xa3,0xbb,0x8c,0x93,0x63,0x57,0x24,0x80,0x83,0x02,0x94,0xb1,0x04,0x4d,0xc2,0xd0,
141 | 0x69,0x13,0xe3,0xeb,0xa8,0x89,0xb3,0xa8,0xa9,0x08,0x8b,0x72,0x1e,0x7a,0x2e,0xdf,
142 | 0x89,0x9b,0x80,0xfb,0x32,0x6e,0x7f,0x93,0x8c,0xeb,0xc7,0x92,0xf5,0x82,0x6d,0x52,
143 | 0x90,0x5a,0x98,0x95,0x48,0x59,0x82,0x34,0xc0,0x0c,0x34,0x67,0xed,0xdd,0xb1,0x2b,
144 | 0xd2,0xc4,0x50,0x74,0x12,0xfe,0x42,0xe4,0x7a,0x64,0xb1,0x01,0xb0,0x6d,0x80,0x72,
145 | 0x7e,0x40,0xf6,0x80,0xf2,0x37,0xf2,0xef,0x8d,0x5c,0xa4,0x67,0x80,0xcf,0x65,0x2c,
146 | 0xe3,0xc6,0x8c,0xeb,0x17,0x3d,0xac,0x31,0x94,0x39,0x19,0xd7,0xaf,0xf3,0x84,0x2d,
147 | 0xd6,0xa5,0xca,0x96,0x91,0x6b,0x16,0xb0,0x3b,0x9a,0x82,0xef,0x54,0xca,0x9d,0x49,
148 | 0xe8,0x3f,0x51,0xc7,0xb2,0x0b,0x62,0x57,0xa4,0x03,0xa1,0x9e,0xdd,0x85,0x0a,0xae,
149 | 0x17,0x50,0x8f,0xd6,0x09,0x80,0xef,0x00,0xaf,0x66,0x2c,0x23,0xeb,0x85,0xcf,0x5a,
150 | 0x19,0xd7,0x6f,0xd5,0x6a,0xe8,0xee,0x75,0x5b,0x74,0xf7,0x3e,0x0e,0x5d,0x00,0xae,
151 | 0x89,0x7a,0x98,0xaf,0x82,0x3a,0x85,0xad,0x48,0x31,0xe7,0x9a,0x0d,0x0b,0xd8,0x86,
152 | 0x59,0xa1,0xca,0x16,0xa4,0x41,0xcf,0xa8,0xcf,0x44,0x43,0xa0,0xbe,0x46,0xb1,0x13,
153 | 0x15,0xb4,0xeb,0x5c,0xe0,0x4e,0xe0,0x81,0xd8,0x15,0x69,0x53,0x88,0x29,0x28,0xef,
154 | 0x25,0xdc,0x7e,0xdf,0x97,0x94,0x97,0xd7,0xd4,0x98,0x45,0x59,0x8a,0xbe,0xb7,0x59,
155 | 0x3d,0x95,0x71,0xfd,0x11,0x01,0xea,0xd0,0x9f,0xe1,0x28,0x2f,0xf9,0xfe,0xc0,0x3e,
156 | 0xc0,0x56,0x94,0xab,0x47,0x73,0xa8,0x79,0xcf,0xcd,0x4a,0xa3,0x4c,0xcd,0xdd,0x7d,
157 | 0x3d,0x04,0xbc,0x0b,0xf5,0x40,0xbe,0x8c,0x30,0xe3,0x32,0x43,0x1b,0x41,0x35,0x73,
158 | 0x4e,0x6f,0x15,0xa0,0x8c,0xd0,0x3d,0xb3,0xb3,0xf4,0xec,0x2d,0x8b,0xdb,0xd0,0x18,
159 | 0xe8,0xac,0xb2,0x66,0xc0,0x0b,0x1d,0xa4,0x37,0x07,0xbe,0x87,0x7a,0x9e,0x5f,0x03,
160 | 0x7c,0x1c,0x8d,0x6b,0x2e,0x53,0x80,0x06,0xf5,0xf0,0x36,0xab,0x95,0x32,0x07,0xe9,
161 | 0xd4,0x34,0x94,0xec,0x61,0x23,0xe0,0x14,0xd4,0x71,0x6b,0x59,0xd4,0x1a,0x2d,0x6f,
162 | 0x2f,0xe2,0xcc,0x7a,0x94,0xc5,0xd8,0x00,0x65,0xdc,0x1b,0xa0,0x8c,0x46,0xd3,0x02,
163 | 0x97,0x17,0x43,0xa8,0xa1,0x84,0xaf,0x64,0x5c,0x3f,0x54,0xf0,0x5c,0x1f,0xb5,0x0c,
164 | 0xcc,0x40,0x63,0xe0,0xcb,0x7e,0xa7,0xea,0x20,0x6d,0xb5,0x53,0x85,0x20,0x9d,0x9a,
165 | 0x8b,0xee,0x5a,0xf7,0x40,0x1d,0x63,0x8e,0x45,0x33,0x5f,0x3d,0x16,0xb1,0x4e,0xa9,
166 | 0x4f,0xc4,0xae,0x40,0x9b,0x42,0xcc,0xdf,0x7c,0x7f,0x80,0x32,0xf2,0x2c,0x2f,0x86,
167 | 0x50,0x17,0x1a,0x59,0x12,0x72,0x84,0x72,0x14,0x0a,0xce,0xef,0xa7,0x3a,0xe7,0x89,
168 | 0xb2,0xdd,0xd9,0x9b,0x65,0x56,0xc6,0x67,0xd2,0xad,0x98,0x8b,0xb2,0x20,0xa5,0x29,
169 | 0x2d,0xd7,0x43,0x1d,0xce,0x76,0x47,0xb3,0x6b,0xed,0x88,0x9e,0x9f,0x15,0x65,0x7f,
170 | 0x94,0x83,0xb8,0x95,0xa4,0x15,0x65,0xb0,0x7a,0x80,0x32,0xe6,0x05,0x28,0x23,0xcf,
171 | 0xf2,0x62,0x78,0x28,0x50,0x39,0x8b,0x02,0x95,0xd3,0xa9,0xcf,0x01,0x5f,0x8a,0x5c,
172 | 0x07,0x33,0xa3,0xba,0x41,0xba,0xaf,0xe7,0x51,0x5e,0xe4,0x2b,0x93,0xff,0x8f,0x40,
173 | 0x89,0x0d,0x76,0x47,0xe9,0x16,0xf7,0x04,0x56,0xcd,0x71,0xfb,0xc3,0x50,0x93,0xf7,
174 | 0x2f,0x73,0xdc,0x46,0x48,0x21,0x9e,0x59,0x86,0x4e,0x93,0x9a,0x67,0xda,0xd5,0xa2,
175 | 0xfc,0x23,0x50,0x39,0x8b,0x03,0x95,0xd3,0x89,0xd3,0x70,0x80,0x36,0x2b,0x8d,0xaa,
176 | 0x34,0x63,0xb5,0x6b,0x21,0x70,0x3b,0xea,0x1d,0x7e,0x30,0x1a,0x12,0xb2,0x3b,0x9a,
177 | 0xf1,0x29,0x6b,0xcf,0xd9,0x81,0x54,0x29,0x13,0x59,0x88,0xf4,0xa6,0xaf,0x05,0x28,
178 | 0xa3,0x51,0x96,0x09,0x21,0xca,0x22,0xeb,0xb3,0xe4,0x54,0x11,0x93,0xba,0xf4,0x67,
179 | 0x32,0xca,0xac,0x67,0x66,0x25,0x51,0xd7,0x20,0xdd,0xd7,0x12,0x34,0x54,0xea,0x34,
180 | 0x34,0x9e,0xf3,0x00,0x34,0x9b,0x4f,0x48,0xdb,0x05,0x2e,0x2f,0x4f,0x21,0x9a,0x53,
181 | 0x43,0x77,0xd2,0x29,0xd3,0x4c,0x68,0x9d,0xca,0x3a,0x3e,0x3a,0x15,0xa3,0x63,0xe4,
182 | 0x8a,0xc0,0x45,0x74,0xcf,0x39,0xc1,0xac,0x12,0xba,0xf5,0x80,0xbc,0x01,0xf8,0x67,
183 | 0xe0,0x38,0xc2,0x75,0xd2,0x19,0x17,0xa8,0x9c,0x22,0xb4,0x9b,0x67,0xbb,0x3f,0xab,
184 | 0x05,0x28,0xa3,0x51,0x88,0xe7,0xe4,0xb1,0x85,0xca,0x75,0x1d,0x23,0x48,0x9f,0x00,
185 | 0x6c,0x16,0x61,0xbb,0x66,0x36,0x88,0xba,0x3c,0x93,0xee,0xd4,0xa5,0xa8,0xc3,0xd2,
186 | 0xb5,0x01,0xca,0x5a,0x37,0x40,0x19,0x45,0x79,0x99,0xec,0xc3,0x69,0x56,0x47,0x19,
187 | 0xd7,0x42,0x59,0x33,0x60,0x59,0xd6,0xbe,0x90,0x19,0xdf,0xee,0x47,0x13,0x74,0xdc,
188 | 0x83,0xe6,0xcf,0x9e,0x8d,0x1e,0x8f,0x2c,0xa0,0xf9,0x85,0x4c,0x91,0x93,0x7a,0x98,
189 | 0x95,0x5e,0xb7,0x07,0x69,0xd0,0xc9,0xe4,0x57,0x68,0xc8,0x49,0x16,0xa3,0x02,0xd4,
190 | 0xa5,0x28,0xcf,0x92,0x7d,0x12,0x86,0x89,0x84,0xeb,0xcd,0x0c,0xd5,0x7a,0x5c,0x50,
191 | 0x37,0xdb,0x13,0x66,0x6e,0xef,0x3b,0x80,0xd3,0xd1,0xa3,0x25,0x33,0x0b,0xa0,0x5b,
192 | 0x9b,0xbb,0xfb,0xfa,0x69,0x80,0x32,0x86,0x06,0x28,0xa3,0x28,0x21,0xe6,0x07,0xde,
193 | 0x3e,0x40,0x19,0x8d,0x76,0x0c,0x5c,0x9e,0xb5,0x6e,0x9f,0x00,0x65,0x5c,0x8c,0x3a,
194 | 0x9e,0x65,0x09,0xd0,0xa3,0x03,0xd4,0xc3,0xac,0x56,0x1c,0xa4,0x25,0xc4,0xcc,0x5b,
195 | 0x65,0x48,0x40,0xd1,0xaa,0xe9,0x01,0xca,0xd8,0x2d,0x40,0x19,0x8d,0xf6,0x0a,0x5c,
196 | 0x9e,0xb5,0x2e,0xeb,0xc8,0x84,0xbf,0x01,0x27,0x91,0x7d,0xca,0xd1,0x2a,0x3d,0x32,
197 | 0x32,0x2b,0x84,0x83,0xb4,0x84,0x18,0xdf,0x5a,0xa5,0x20,0x1d,0x22,0xa5,0xe7,0xde,
198 | 0x28,0x89,0x4c,0x08,0xdb,0xe1,0x3b,0xe9,0x98,0x36,0xcf,0xb8,0xfe,0x39,0x84,0xc9,
199 | 0xad,0x3f,0x31,0x40,0x19,0x66,0xb5,0x12,0x3b,0x48,0xdf,0x48,0xb8,0x69,0x13,0xb3,
200 | 0x58,0x3b,0x40,0x19,0xb3,0x03,0x94,0x51,0x94,0xbf,0x90,0xbd,0x83,0xce,0x50,0x94,
201 | 0x32,0x32,0x84,0x13,0x03,0x95,0x63,0x9d,0xc9,0x3a,0xc5,0xe3,0x4d,0x41,0x6a,0x01,
202 | 0x07,0x06,0x2a,0xc7,0xac,0x36,0x62,0x07,0xe9,0x7d,0x80,0x29,0xc0,0x55,0x84,0x7f,
203 | 0xc6,0xd9,0x8e,0x6d,0x03,0x94,0xf1,0x64,0x80,0x32,0x8a,0xf2,0x3c,0x6a,0xa2,0xcc,
204 | 0xea,0x4c,0xb2,0x5f,0xe0,0x4c,0xc2,0x41,0x3a,0xb6,0xac,0xd9,0xf8,0x9e,0x0f,0x50,
205 | 0x87,0x51,0xc0,0xe1,0x01,0xca,0x31,0xab,0x95,0xd8,0x41,0x3a,0x75,0x28,0x6a,0x82,
206 | 0xbd,0x81,0x30,0x9d,0x58,0xda,0xf5,0x81,0x00,0x65,0xcc,0x0c,0x50,0x46,0x91,0xae,
207 | 0x0b,0x50,0xc6,0x9a,0xc0,0x77,0xe9,0x7c,0x62,0x83,0x51,0xc0,0x8f,0xf0,0x28,0x83,
208 | 0xd8,0xb2,0xe6,0xb9,0x0f,0x31,0x66,0xfe,0x93,0xf8,0x99,0xb4,0xd9,0x9b,0x94,0x25,
209 | 0x48,0xa7,0xf6,0x43,0x4d,0xe0,0xf7,0xa1,0x39,0x6b,0x8b,0x48,0x70,0xb1,0x3f,0xf0,
210 | 0xde,0x00,0xe5,0x4c,0x09,0x50,0x46,0x91,0x7e,0xd6,0x7c,0x91,0x96,0x1c,0x4d,0x67,
211 | 0x73,0x6a,0x8f,0x44,0x73,0x13,0xef,0x1c,0xa8,0x1e,0xd6,0xb9,0xac,0xc9,0x6d,0xb2,
212 | 0xf6,0x27,0xd8,0x1a,0xf8,0x6c,0xc6,0x32,0xcc,0x6a,0xa9,0x6c,0x41,0x3a,0xb5,0x1d,
213 | 0xba,0x43,0x7b,0x16,0x05,0x93,0x43,0x09,0x93,0x6f,0xba,0xaf,0x03,0x81,0xcb,0x09,
214 | 0x33,0xc5,0x5d,0xd5,0xc6,0x86,0xce,0x00,0xee,0x0a,0x54,0xd6,0xc7,0x80,0xeb,0x81,
215 | 0x2d,0x5a,0x5c,0xfe,0xed,0xa8,0x47,0xfd,0xde,0x81,0xb6,0x6f,0xd9,0xbc,0x98,0x71,
216 | 0xfd,0xe3,0x33,0xac,0xbb,0x16,0x70,0x35,0xf9,0x4e,0x80,0x63,0x56,0x59,0x65,0x0d,
217 | 0xd2,0xa9,0x51,0xc0,0x31,0xe8,0x99,0xf5,0x5c,0x94,0x74,0xe4,0x44,0x60,0x42,0xc6,
218 | 0x72,0x37,0x43,0x73,0x51,0x5f,0x4b,0x98,0xbb,0xf5,0x7b,0x80,0x67,0x02,0x94,0x53,
219 | 0xb4,0x6f,0x05,0x2c,0x6b,0x7f,0x94,0x69,0xea,0x2a,0xe0,0xc3,0xe8,0x39,0xff,0x3a,
220 | 0x28,0x27,0xf4,0x7a,0xa8,0xcf,0xc1,0x29,0xc0,0xcd,0xc0,0x6d,0xc0,0x36,0x01,0xb7,
221 | 0x6d,0xd9,0x3c,0x9e,0x71,0xfd,0xa3,0x80,0x23,0x3b,0x58,0x6f,0x22,0xba,0x50,0x74,
222 | 0x3a,0x52,0xb3,0x01,0x54,0xe9,0x59,0xe0,0xaa,0xe8,0x44,0x90,0x9e,0x0c,0x9e,0x47,
223 | 0xcf,0xb1,0xef,0x05,0x1e,0x01,0xfe,0x9e,0xbc,0x5e,0x42,0xc3,0xa1,0x16,0xa2,0x29,
224 | 0x19,0x57,0x41,0xcf,0xba,0xb6,0x42,0x9d,0x94,0x0e,0x04,0x76,0x22,0xec,0x04,0xf1,
225 | 0x55,0x99,0xa2,0xb2,0xaf,0x2b,0x80,0x07,0x08,0xd3,0x71,0x0e,0xf4,0x6c,0xf3,0xd0,
226 | 0xe4,0x65,0xd5,0x31,0x0d,0x25,0x22,0xc9,0xe2,0xe7,0xc0,0x46,0xc0,0x77,0x68,0x9e,
227 | 0x7b,0x7c,0x24,0xba,0x60,0x3b,0x8b,0xf0,0x39,0xe0,0xcd,0x6a,0x25,0x64,0xa0,0xea,
228 | 0x44,0x1d,0xf2,0xf4,0xbe,0x0e,0x6c,0x4c,0xb6,0x26,0xc3,0xac,0x9f,0x43,0x96,0xbf,
229 | 0xe3,0x7e,0xa8,0xc3,0x5e,0x1d,0x64,0xfd,0x3e,0xc7,0xfc,0x3b,0xf4,0x55,0x64,0x5d,
230 | 0x0e,0x41,0x4d,0xce,0x21,0x3c,0x0a,0xfc,0x04,0xf8,0x13,0x7a,0xa4,0xf2,0x12,0xba,
231 | 0x78,0x5b,0x0f,0xd8,0x12,0x38,0x08,0x78,0x37,0xb0,0x7e,0xa0,0xed,0xf5,0x95,0xe5,
232 | 0x6f,0x50,0xa6,0xbf,0x7f,0x50,0x8f,0x8f,0x19,0xd3,0xf6,0xbe,0x8d,0x9f,0x3d,0xbb,
233 | 0xb4,0xfb,0xd3,0xa8,0xce,0xfb,0x06,0xf1,0xbf,0x54,0x75,0x08,0xd2,0xe7,0x02,0x9f,
234 | 0xca,0x58,0x46,0xec,0x93,0xc3,0x2f,0x50,0x07,0xb0,0xaa,0x73,0x90,0xee,0xd5,0x4e,
235 | 0x5d,0x56,0x42,0x2d,0x53,0x75,0x98,0x89,0xac,0xb6,0x41,0xba,0x93,0x60,0x14,0x4b,
236 | 0xbb,0x41,0xb0,0xce,0xfb,0x96,0x55,0xd9,0x9f,0x49,0x97,0xdd,0x1c,0xe0,0x8b,0xb1,
237 | 0x2b,0x11,0xc0,0xc9,0xe8,0x51,0x41,0x4c,0x17,0x46,0xde,0x7e,0x37,0x5b,0x84,0x72,
238 | 0x6f,0x9b,0x59,0xc9,0x38,0x48,0x67,0x73,0x0a,0x61,0x52,0x8a,0xc6,0x36,0x0f,0x78,
239 | 0x0f,0x61,0x52,0x3b,0x76,0x62,0x0a,0x1a,0x72,0x67,0xf1,0x7c,0x8b,0x30,0xf3,0x8c,
240 | 0x67,0xf1,0xe3,0xc8,0xdb,0x37,0x2b,0x1d,0x07,0xe9,0xce,0x7d,0x83,0xea,0x76,0x18,
241 | 0xeb,0xcf,0x14,0xd4,0x93,0xbe,0x59,0xa7,0x9f,0xd0,0x66,0xa2,0x4c,0x53,0xb1,0x2e,
242 | 0x10,0x4c,0x66,0x01,0x5f,0x8e,0xb8,0xfd,0xbf,0x12,0x76,0x4e,0x6b,0xb3,0x5a,0x70,
243 | 0x90,0xee,0xcc,0x25,0xc0,0x67,0x62,0x57,0x22,0x07,0xbf,0x46,0x63,0x5e,0x97,0x16,
244 | 0xb4,0xbd,0xa7,0x50,0x86,0xb9,0xe7,0x88,0xdf,0x3f,0xc2,0xe0,0xeb,0xc0,0x2d,0x11,
245 | 0xb6,0xfb,0x0c,0xba,0x50,0x5b,0x18,0x61,0xdb,0x66,0xa5,0xe6,0x20,0xdd,0xbe,0x6f,
246 | 0xa2,0x71,0xc0,0x45,0xdf,0x71,0x16,0xe5,0x62,0xe0,0x30,0xe0,0xb5,0x9c,0xb7,0x73,
247 | 0x0f,0xb0,0x07,0xbd,0xcf,0xc2,0xb3,0x0e,0xc5,0x89,0xdd,0x54,0x5b,0x07,0x4b,0xd1,
248 | 0x63,0x8f,0x87,0x0a,0xdc,0xe6,0x1c,0x74,0xa1,0xf6,0x64,0x81,0xdb,0x34,0xab,0x8c,
249 | 0xd8,0x41,0xfa,0x3c,0xaa,0x33,0x7b,0xd4,0x0b,0x68,0xfc,0xef,0x69,0xd4,0xa3,0x57,
250 | 0xfa,0x60,0xae,0x45,0xe9,0x3a,0xa7,0xe5,0x54,0xfe,0x25,0x28,0xeb,0xd8,0xac,0x86,
251 | 0xf7,0xd6,0xc8,0x58,0x66,0x95,0xa6,0x0a,0x2d,0xb3,0xb9,0x28,0x68,0xde,0x57,0xc0,
252 | 0xb6,0x1e,0x41,0xdf,0x83,0x87,0x0b,0xd8,0x96,0x59,0x25,0xc5,0x0e,0xd2,0xa7,0xa0,
253 | 0x69,0xf2,0x26,0xa3,0x24,0x08,0x8f,0x45,0xad,0x4d,0xff,0xde,0x00,0xbe,0x8d,0xe6,
254 | 0xdc,0x0d,0x35,0x96,0xb4,0x0a,0x66,0x00,0xbb,0x01,0xa7,0xa2,0x8e,0x65,0x21,0x3c,
255 | 0x8a,0xc6,0x65,0x7f,0x88,0x37,0xdf,0xf9,0xae,0x99,0xb1,0xec,0xf9,0x19,0xd7,0xb7,
256 | 0x5e,0xcf,0xa1,0x56,0x8e,0x5f,0xe5,0xb8,0x8d,0xab,0x81,0x5d,0x51,0xa0,0x36,0xb3,
257 | 0x01,0xc4,0x0e,0xd2,0xa0,0x66,0xe3,0x5b,0xd1,0x2c,0x38,0x13,0x50,0x66,0xb0,0x4f,
258 | 0xa1,0xf4,0x92,0xa1,0x82,0x43,0x27,0x66,0xa3,0x8e,0x34,0x9b,0x00,0x9f,0x46,0x49,
259 | 0x19,0xba,0xcd,0x62,0xd4,0xeb,0x77,0x3c,0xfa,0x0c,0x3a,0xb9,0xe3,0xe9,0x41,0x79,
260 | 0xcd,0xff,0x05,0xa5,0x81,0xfc,0xc3,0x00,0xcb,0x8d,0xef,0xa4,0x82,0x0d,0x66,0x35,
261 | 0x5f,0xc4,0xda,0xf0,0x2a,0x6a,0xfa,0x3e,0x1a,0xf5,0x1d,0x08,0xe5,0x69,0x94,0x46,
262 | 0xf4,0x50,0xba,0xf3,0x98,0x32,0x6b,0x4b,0x19,0xd3,0x82,0x3e,0x9c,0xbc,0xce,0x45,
263 | 0x9d,0x89,0xb6,0x05,0x76,0x41,0xcd,0xaf,0x3b,0xa1,0x9c,0xcf,0xa3,0x72,0xd8,0xee,
264 | 0x52,0x94,0x22,0xf3,0x26,0x74,0x81,0x70,0x3b,0xf5,0x7d,0xee,0xdc,0xae,0x97,0x51,
265 | 0x6b,0xc2,0xb7,0xd1,0xe7,0xbf,0x2f,0xf0,0x16,0x74,0x41,0xb5,0x11,0x4a,0xd9,0x3a,
266 | 0x1c,0x3d,0xc7,0x7e,0x19,0x9d,0xd4,0x1f,0x44,0x93,0x68,0x5c,0x47,0x6b,0x8f,0x34,
267 | 0xf6,0xc8,0x58,0xc7,0x27,0x32,0xae,0x6f,0xfd,0xbb,0x1c,0x1d,0x0f,0xc7,0x02,0x1f,
268 | 0xa5,0xb3,0x19,0xaf,0x7a,0x50,0x8e,0xee,0xf3,0xd1,0x88,0x88,0xc5,0xc1,0x6a,0x67,
269 | 0x56,0x73,0x65,0x0c,0xd2,0x8d,0x7a,0xd0,0xa4,0x0d,0xf7,0xa3,0x79,0x87,0x41,0x81,
270 | 0x7b,0x63,0x74,0x57,0x36,0x1e,0x18,0x9b,0xbc,0xc6,0xa0,0x26,0xd3,0x35,0x51,0x27,
271 | 0xa4,0x95,0x50,0xe0,0x18,0x0a,0x2c,0x41,0x09,0x1b,0x16,0xa1,0x71,0xcd,0x73,0x51,
272 | 0x86,0xa5,0x27,0x51,0x73,0xdb,0x0c,0x60,0x2a,0xba,0x7b,0x88,0xa1,0x4a,0x3d,0x9b,
273 | 0x1f,0x4c,0x5e,0xa1,0x65,0x0d,0xd2,0x8f,0x06,0xa8,0x43,0x99,0xfe,0x0e,0x65,0xaa,
274 | 0xcb,0x22,0xe0,0xa2,0xe4,0xb5,0x29,0x7a,0x64,0xb1,0x0b,0x9a,0x62,0x72,0x2c,0xea,
275 | 0x4f,0x30,0x02,0x3d,0x1a,0x9a,0x8f,0xee,0x90,0x1f,0x43,0xc7,0xd5,0xdd,0xc0,0xef,
276 | 0xd1,0x31,0xd7,0x8a,0x98,0xfb,0x5d,0xa6,0xcf,0xdc,0xcc,0xac,0x34,0x26,0xa0,0x96,
277 | 0x8c,0x9e,0x0c,0xaf,0xfd,0x0a,0xaf,0xb5,0x99,0x99,0x59,0x17,0xb8,0x80,0x6c,0x01,
278 | 0x7a,0x29,0x9e,0x4d,0xc9,0xcc,0xcc,0x2c,0xb8,0xf1,0x28,0x89,0x45,0x96,0x20,0x7d,
279 | 0x47,0xe1,0xb5,0x36,0x33,0x33,0x2b,0xd8,0xf5,0x84,0x9b,0x5b,0xba,0x15,0xab,0xa0,
280 | 0xfe,0x06,0x59,0x02,0x74,0x0f,0x1a,0xca,0x67,0x66,0x66,0x56,0x6b,0x3d,0xa8,0x93,
281 | 0xdd,0x4f,0xd0,0xdc,0xbf,0x79,0x1a,0x01,0x5c,0x43,0xf6,0x00,0xbd,0x08,0xcd,0x55,
282 | 0x6c,0x66,0x66,0x56,0x6b,0x7d,0x9f,0xf3,0x5e,0x89,0xb2,0x4f,0x85,0x36,0x09,0xa5,
283 | 0x05,0xcd,0x1a,0xa0,0x7b,0xf0,0x14,0x97,0x66,0x66,0xd6,0x25,0x06,0x0a,0x84,0x33,
284 | 0x81,0xb3,0xd1,0x38,0xf5,0x2c,0xc3,0x54,0x76,0x05,0x2e,0x45,0x77,0xeb,0x21,0x02,
285 | 0xf4,0x62,0xd4,0x33,0xdc,0xcc,0xac,0x96,0x3c,0x2e,0xd0,0x1a,0xb5,0x92,0x93,0xfc,
286 | 0x45,0x94,0x21,0xee,0x5e,0xf4,0x3c,0xf9,0x29,0x34,0x8b,0xd1,0x7c,0xd4,0x01,0x6c,
287 | 0x18,0x30,0x12,0x58,0x07,0x25,0x3a,0x99,0x88,0xc6,0xd4,0xee,0x0d,0x8c,0x0b,0x5c,
288 | 0xdf,0x6f,0x00,0xa7,0x07,0x2e,0xd3,0xcc,0xcc,0xac,0x94,0x42,0xdc,0xdd,0x16,0xf5,
289 | 0x7a,0x8c,0x7c,0x32,0xcf,0x99,0x99,0x99,0x95,0x52,0xec,0xc0,0xdb,0xea,0xeb,0x35,
290 | 0x60,0x87,0x9c,0x3e,0x03,0x33,0x33,0xb3,0x52,0x8a,0x1d,0x7c,0x5b,0x79,0x2d,0x45,
291 | 0x13,0x34,0x98,0x99,0x99,0x75,0x95,0xd8,0x01,0xb8,0xd9,0x6b,0x31,0x70,0x4c,0x6e,
292 | 0x7b,0x6f,0x66,0x66,0x56,0x62,0xb1,0x83,0xf0,0x60,0xaf,0x57,0xd0,0xf4,0x86,0x66,
293 | 0x66,0x66,0x5d,0x29,0x76,0x20,0x1e,0xe8,0xf5,0x57,0x60,0xf3,0x1c,0xf7,0xdb,0xcc,
294 | 0xcc,0xac,0xf4,0x62,0x07,0xe3,0xbe,0xaf,0xf9,0xc0,0x99,0x68,0xda,0x51,0x33,0x33,
295 | 0xb3,0xae,0x16,0x3b,0x28,0xa7,0xaf,0xd7,0x80,0xf3,0xd1,0x38,0x6b,0x33,0x33,0x33,
296 | 0x03,0xb6,0x00,0x3e,0x0d,0xdc,0x82,0x3a,0x69,0x15,0x1d,0x9c,0x1f,0x00,0x3e,0x0b,
297 | 0xac,0x9d,0xf3,0x7e,0x9a,0x99,0x55,0x82,0x33,0x8e,0xd9,0x40,0x46,0x03,0xfb,0x02,
298 | 0x6f,0x45,0x19,0xc3,0x76,0x20,0x7c,0xf2,0x90,0xf9,0x68,0x9a,0xc9,0x5b,0xd0,0x64,
299 | 0x1b,0x0f,0x06,0x2e,0xdf,0xcc,0xac,0xd2,0x1c,0xa4,0xad,0x55,0x43,0x81,0x6d,0x50,
300 | 0x9a,0xcf,0x4d,0x50,0x8a,0xcf,0x71,0xc0,0x86,0xc0,0xaa,0x28,0x80,0xa7,0xaf,0x15,
301 | 0xd0,0xec,0x54,0x8b,0x80,0x05,0xc0,0x0b,0xc0,0xec,0xe4,0xf5,0x38,0xf0,0x10,0x30,
302 | 0x1d,0x98,0x81,0xf2,0x78,0x9b,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
303 | 0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x99,
304 | 0x99,0x99,0x99,0x99,0x99,0x99,0x99,0x59,0x17,0x5b,0x01,0x18,0x12,0xbb,0x12,0x66,
305 | 0x56,0xac,0x95,0x81,0x53,0x80,0xdf,0xa3,0x4c,0x55,0x4b,0x81,0x85,0x28,0x53,0xd5,
306 | 0xc5,0xc0,0xae,0xf1,0xaa,0x16,0xdc,0x64,0xe0,0x22,0x94,0x81,0xeb,0x75,0x94,0x2f,
307 | 0x7b,0x36,0xf0,0x07,0xe0,0x93,0xc0,0xea,0xd1,0x6a,0x16,0x46,0xbb,0xb9,0xbb,0xff,
308 | 0x37,0x4e,0x35,0xdb,0x76,0x3c,0x9d,0xe5,0x26,0xbf,0x28,0x46,0x65,0x3b,0x70,0x0e,
309 | 0xaa,0xef,0xf4,0x26,0xcb,0x9d,0x94,0x2c,0xb7,0x18,0xf8,0x6d,0x93,0x65,0x87,0x03,
310 | 0x4f,0xa1,0x54,0xb0,0xeb,0x67,0xad,0x60,0x44,0x1b,0xa2,0x73,0x52,0x0f,0xf0,0x2c,
311 | 0x30,0x2c,0x6e,0x75,0x82,0x98,0xcf,0xe0,0xdf,0xdb,0x65,0x68,0xd2,0x9b,0x99,0xc0,
312 | 0x2f,0x81,0x77,0xc6,0xa9,0x66,0x10,0x9d,0x1c,0xb7,0x5f,0x88,0x51,0xd1,0xb2,0xda,
313 | 0x0e,0x78,0x82,0xe6,0x1f,0xda,0x85,0x28,0x4d,0x65,0x55,0x6d,0x88,0x02,0x71,0xb3,
314 | 0xfd,0xfc,0x07,0x0a,0x08,0x55,0xe5,0x20,0x5d,0xcd,0x20,0x7d,0x30,0xaa,0xef,0x52,
315 | 0x60,0xb5,0x41,0x96,0xfb,0x35,0xcb,0xcf,0x5c,0x36,0xd8,0x94,0xa2,0x93,0x93,0xe5,
316 | 0xee,0x0f,0x53,0xc5,0x68,0x3e,0xc3,0xf2,0x7f,0xd3,0xc3,0xe3,0x56,0x27,0x88,0x66,
317 | 0x41,0xba,0xbf,0xd7,0x97,0xa3,0xd4,0x34,0x3b,0x07,0xe9,0x0c,0xd6,0x44,0x57,0xa6,
318 | 0x3d,0xc0,0x8f,0x81,0xdd,0xd0,0x09,0x62,0x28,0x9a,0x15,0xe9,0x10,0xe0,0x4e,0xaa,
319 | 0xff,0x25,0xd9,0x8a,0xde,0xfd,0x9c,0x0b,0x7c,0x09,0xb5,0x0e,0xac,0x01,0xac,0x08,
320 | 0x6c,0x0c,0x7c,0x00,0x98,0x42,0xef,0xbe,0x7e,0x33,0x4a,0x4d,0xb3,0x4b,0xeb,0xdf,
321 | 0x2d,0xd2,0xe0,0x5d,0x95,0x60,0x3c,0x90,0xd5,0x50,0x4e,0xf5,0x1e,0x60,0xef,0x01,
322 | 0x96,0x19,0x02,0xbc,0x98,0x2c,0x73,0x7b,0xf2,0xf3,0x1d,0x83,0x94,0xf9,0x95,0x64,
323 | 0x99,0x6f,0x87,0xab,0x66,0x14,0x0f,0xa1,0xfd,0xf8,0x6d,0xf2,0xf3,0xfa,0xb8,0xd5,
324 | 0x09,0x22,0x0d,0xd2,0xab,0x0c,0xf0,0xfb,0x15,0xd0,0x84,0x3b,0x7b,0x03,0xd7,0xd1,
325 | 0x7b,0x5c,0x1f,0x54,0x48,0xed,0xc2,0xea,0xb6,0x73,0x52,0x50,0x5f,0x44,0x1f,0xde,
326 | 0xb9,0x83,0x2c,0xb3,0x22,0x70,0x6b,0xb2,0xdc,0xeb,0x54,0xaf,0x39,0x78,0x35,0xd4,
327 | 0x6c,0x9f,0xde,0x35,0x36,0xab,0xff,0x47,0x80,0x37,0x92,0xe5,0x3f,0x92,0x6f,0xd5,
328 | 0x72,0xd1,0x6d,0x07,0x44,0x5d,0x82,0x34,0xc0,0x9f,0xd1,0xbe,0x7c,0x66,0x80,0xdf,
329 | 0xef,0x94,0xfc,0xfe,0x31,0xf4,0x68,0xa6,0x07,0xf8,0xfa,0x20,0xe5,0xfd,0x25,0x59,
330 | 0xe6,0xc0,0x80,0x75,0x2c,0xda,0x6e,0x68,0x1f,0x9e,0x07,0x36,0x47,0xcd,0xc0,0xcb,
331 | 0xd0,0x84,0x33,0x55,0xd6,0x2c,0x48,0xf7,0xf5,0xb3,0x64,0xf9,0x5b,0x73,0xab,0x51,
332 | 0x7e,0xba,0xed,0x9c,0x14,0x54,0x7a,0x52,0xd8,0xa9,0xc9,0x72,0x6f,0xa3,0xf7,0x83,
333 | 0x3e,0x2c,0xef,0x4a,0x05,0xf6,0x3f,0xf4,0x06,0xe8,0x56,0x67,0x20,0x3b,0x32,0x59,
334 | 0xe7,0x15,0x60,0x4c,0x4e,0xf5,0xca,0x4b,0xb7,0x1d,0x10,0x75,0x0a,0xd2,0xe9,0x9d,
335 | 0xef,0x95,0x03,0xfc,0xfe,0x8c,0xe4,0xf7,0x3f,0xa4,0xf7,0x98,0xfc,0xeb,0x00,0xcb,
336 | 0xae,0x81,0x9a,0xce,0x17,0xa1,0x3e,0x27,0x55,0xf5,0x03,0xb4,0x9f,0xdf,0x4b,0xfe,
337 | 0xff,0xbb,0xe4,0xff,0x5f,0x89,0x56,0xa3,0x30,0xda,0x0d,0xd2,0x63,0x93,0xe5,0x97,
338 | 0xa0,0xbe,0x06,0x55,0xd2,0x6d,0xe7,0xa4,0xa0,0xa6,0xa1,0x0f,0xef,0xe0,0x26,0xcb,
339 | 0x0d,0x03,0xbe,0x06,0x9c,0x8a,0x9a,0x8e,0xab,0x62,0x34,0xba,0xfb,0x7f,0x1d,0x58,
340 | 0xa7,0xcd,0x75,0xaf,0xa4,0x9a,0xcf,0x46,0xba,0xed,0x80,0xa8,0x53,0x90,0xde,0x1b,
341 | 0xed,0xcb,0xac,0x01,0x7e,0x9f,0xf6,0xa9,0x38,0x0a,0x9d,0xa8,0xe7,0xa3,0xbb,0xca,
342 | 0xf5,0xfa,0x59,0xf6,0x88,0x64,0xd9,0x9b,0xc3,0x57,0xb3,0x30,0x23,0x50,0x1f,0x91,
343 | 0x1e,0xd4,0x77,0x06,0xd4,0xbc,0xdf,0x03,0x3c,0x47,0xb5,0x3b,0x90,0xb5,0x1b,0xa4,
344 | 0x41,0x17,0x5c,0x3d,0xe8,0x73,0xa9,0x92,0x6e,0x3b,0x27,0x05,0x75,0x3e,0xbd,0xcd,
345 | 0x67,0x93,0xe3,0x56,0x25,0x17,0xc7,0xa0,0xfd,0xbb,0xbc,0x83,0x75,0xf7,0x4c,0xd6,
346 | 0x7d,0x20,0x68,0x8d,0xf2,0xd7,0x6d,0x07,0x44,0x9d,0x82,0xf4,0x08,0x34,0x17,0x78,
347 | 0x0f,0x6f,0xee,0x8d,0xbd,0x12,0xba,0xd8,0x5c,0x0a,0xac,0x95,0xbc,0x97,0x3e,0xab,
348 | 0x3c,0xb6,0x9f,0xb2,0xd2,0x3b,0xd0,0x33,0x73,0xa9,0x69,0x31,0x8e,0x46,0xfb,0xf0,
349 | 0xe7,0x3e,0xef,0x4f,0x4f,0xde,0x3f,0xa2,0xf0,0x1a,0x85,0xd3,0x6e,0x90,0xde,0x32,
350 | 0x59,0x7e,0x5e,0x6e,0x35,0xca,0x4f,0xe5,0xce,0x49,0x65,0x1a,0xe3,0x78,0x2e,0xf0,
351 | 0x32,0x30,0x1e,0x5d,0x71,0x3f,0x8d,0x4e,0x76,0xc7,0x25,0xef,0x55,0xdd,0x6e,0xc9,
352 | 0xcf,0x3f,0x75,0xb0,0xee,0x9d,0xe8,0x84,0xb9,0x0d,0xb0,0x6a,0xb0,0x1a,0x99,0x0d,
353 | 0x6c,0x21,0xfa,0xde,0xc1,0x9b,0x87,0x3d,0xee,0x0e,0x8c,0x44,0xcd,0xdb,0x2f,0x26,
354 | 0xef,0xdd,0x90,0xfc,0xdc,0xaf,0x9f,0xb2,0xf6,0x4d,0x7e,0xfe,0x21,0x64,0x05,0x0b,
355 | 0xf6,0xc1,0xe4,0xe7,0x25,0x7d,0xde,0xbf,0x30,0xf9,0x79,0x62,0x61,0x35,0x89,0x6b,
356 | 0x08,0xbd,0x7d,0x0f,0xea,0xd0,0x69,0xce,0xda,0xf4,0x16,0xe0,0x49,0xfa,0xef,0x06,
357 | 0xff,0x77,0xe0,0x02,0xaa,0x7b,0x97,0x7d,0x2d,0xda,0x8f,0x4e,0xc7,0x18,0x3e,0xc0,
358 | 0xf2,0x4d,0x6d,0x55,0xd0,0xce,0x30,0x87,0x23,0x23,0xd5,0x31,0xa4,0x3a,0xdd,0x49,
359 | 0x03,0x9c,0x85,0xf6,0xe7,0xec,0x3e,0xef,0x9f,0xcd,0x9b,0x3b,0x8a,0x6d,0x45,0x6f,
360 | 0xd3,0x6f,0x63,0x7f,0x8b,0xf1,0xc9,0xfb,0x2f,0x52,0xae,0x9b,0x82,0x76,0xa4,0x63,
361 | 0xa3,0x17,0xf0,0xe6,0xce,0x9e,0x6b,0x26,0xef,0x2f,0xa3,0xba,0x37,0x13,0xcd,0xee,
362 | 0xa4,0x87,0xa1,0xd6,0x94,0x43,0xd0,0x0d,0x54,0x0f,0x1a,0x72,0xb7,0x65,0x21,0xb5,
363 | 0x0b,0xab,0xdd,0xe1,0x57,0x53,0xe3,0x54,0xb3,0x57,0xd9,0x0e,0x9a,0xbb,0x51,0x10,
364 | 0x3a,0x03,0xb8,0xaf,0xcf,0xef,0xc6,0x02,0x27,0xa0,0x2f,0xc9,0xed,0x54,0xef,0x0b,
365 | 0x92,0xde,0x01,0xbf,0xda,0xe1,0xfa,0xe9,0x7a,0x55,0xee,0x78,0x63,0xd5,0xf2,0xc7,
366 | 0xe4,0xe7,0x2e,0x7d,0xde,0x4f,0x87,0x5a,0xdd,0xd8,0xf0,0xde,0x0c,0x74,0x21,0x3d,
367 | 0x06,0x98,0xd4,0xf0,0x7e,0x7a,0x17,0x7d,0x13,0x0a,0x64,0x55,0x74,0x2c,0x3a,0x57,
368 | 0x5e,0x85,0x5a,0xfb,0x1a,0xcd,0x03,0xae,0x40,0x17,0x26,0x27,0x14,0x5c,0xaf,0xd0,
369 | 0x5e,0xa5,0xff,0x40,0xb5,0x18,0x0d,0x1b,0xbd,0x1a,0xdd,0x24,0x3d,0x05,0xec,0x0f,
370 | 0x3c,0x1c,0xa5,0x96,0x56,0x2a,0x1b,0xa1,0x03,0xe4,0x42,0xe0,0x51,0x96,0xff,0xe2,
371 | 0xbc,0x00,0x4c,0x88,0x57,0xb5,0xb6,0x5d,0x8f,0xea,0xbd,0x6f,0xb3,0x05,0x07,0xf0,
372 | 0x37,0xaa,0x7b,0x27,0xdd,0x2d,0xea,0x76,0x27,0x3d,0x0c,0x8d,0x2a,0x78,0x89,0xde,
373 | 0xbb,0xe3,0xd1,0xa8,0x57,0xef,0x42,0xd4,0xe4,0xdd,0xe8,0x42,0xb4,0xff,0xa7,0x35,
374 | 0xbc,0x97,0x26,0x3c,0xa9,0xe2,0x10,0xc2,0x54,0x3a,0x36,0x7a,0xff,0x01,0x7e,0x9f,
375 | 0xf6,0x19,0x99,0x8d,0x86,0x89,0x56,0x4d,0x2b,0xc9,0x4c,0x96,0x00,0xbf,0x00,0xde,
376 | 0x47,0xf5,0x3a,0x8b,0x35,0xea,0xb6,0x73,0x52,0xe1,0xc6,0xa3,0xf1,0xd4,0xaf,0xa3,
377 | 0x0f,0xfa,0xba,0xb8,0xd5,0x69,0x4b,0xda,0x31,0xee,0xa4,0x0e,0xd6,0x1d,0x82,0x4e,
378 | 0x96,0xcb,0x68,0xaf,0x07,0x66,0x6c,0xdd,0x76,0x40,0xd4,0x2d,0x48,0x03,0x5c,0x83,
379 | 0xf6,0x29,0x1d,0x49,0x71,0x38,0x03,0xf7,0xd4,0x3e,0x2a,0xf9,0x5d,0x7a,0x87,0x3d,
380 | 0x04,0xdd,0x69,0xf6,0x00,0x9b,0xe6,0x5b,0xcd,0xdc,0xa4,0x63,0xa3,0x67,0x31,0x78,
381 | 0xcb,0x63,0x1a,0xc8,0x8f,0x2a,0xa2,0x52,0x81,0xf5,0xd7,0xdc,0x3d,0x14,0x35,0xed,
382 | 0xbf,0x0b,0xf5,0x3d,0xe8,0x41,0xad,0x9b,0x93,0xde,0xb4,0x76,0xb5,0x74,0xdb,0x39,
383 | 0x29,0x98,0x75,0x81,0x1d,0x81,0x51,0x2d,0x2e,0x7f,0x00,0xfa,0xa0,0x97,0x52,0x9d,
384 | 0x8e,0x54,0xef,0x41,0x75,0xfe,0x4d,0x07,0xeb,0xee,0x4a,0xef,0x41,0x52,0x25,0xdd,
385 | 0x76,0x40,0xd4,0x31,0x48,0xff,0x1b,0xda,0xa7,0xe3,0x92,0xff,0x9f,0x97,0xfc,0xff,
386 | 0xac,0x7e,0x96,0x5d,0x83,0xe5,0xef,0xb2,0x77,0x49,0x96,0x9d,0x99,0x7f,0x35,0x73,
387 | 0x93,0xf6,0x4c,0x6f,0xf5,0x55,0xc5,0xce,0x71,0xcd,0x9e,0x49,0xaf,0x44,0x6f,0x9f,
388 | 0x9a,0x97,0x80,0xed,0x0b,0xaa,0x57,0x1e,0xba,0xed,0x9c,0x14,0xcc,0x54,0xf4,0xc1,
389 | 0x4d,0x6e,0x63,0x9d,0x67,0x92,0x75,0x36,0xcb,0xa3,0x42,0x39,0x58,0x19,0x7d,0xc1,
390 | 0x17,0x03,0x5b,0xb4,0xb9,0xee,0x65,0x68,0x5f,0xff,0x23,0x74,0xa5,0x72,0xd6,0x6d,
391 | 0x07,0x44,0x1d,0x83,0xf4,0x24,0xb4,0x4f,0xdf,0x4d,0xfe,0x3f,0x23,0xf9,0xff,0x40,
392 | 0x13,0xdd,0xdc,0x95,0xfc,0xfe,0x00,0xe0,0xf3,0xc9,0xbf,0xbf,0x9f,0x73,0x1d,0xf3,
393 | 0xd2,0x38,0x36,0xba,0xd5,0xd7,0x32,0xaa,0x73,0x4e,0x4a,0xb5,0x32,0x04,0x6b,0x24,
394 | 0x1a,0x99,0x92,0x76,0xe2,0x5d,0xbb,0x80,0x7a,0xe5,0xa1,0xdb,0xce,0x49,0xc1,0xfc,
395 | 0x08,0x7d,0x70,0x97,0xb4,0xb8,0xfc,0x70,0x14,0xf0,0x96,0x52,0xad,0xe6,0xdf,0x2f,
396 | 0xa1,0xfd,0xbc,0x8b,0xd6,0x9f,0xeb,0x1c,0x86,0x0e,0xfc,0x57,0x68,0x3f,0x09,0x4a,
397 | 0x6c,0xdd,0x76,0x40,0xd4,0x31,0x48,0xaf,0x00,0xcc,0x41,0xe3,0x83,0x37,0xa4,0xf7,
398 | 0x6e,0x6a,0xa0,0x09,0x6e,0xd2,0xf4,0xbe,0xe7,0xd0,0x9b,0x6b,0xff,0xdd,0xf9,0x57,
399 | 0x33,0x17,0xe9,0xd8,0xe8,0xbb,0x5a,0x5c,0x3e,0x3d,0x8f,0x7d,0x2d,0xb7,0x1a,0xe5,
400 | 0xa3,0xd5,0x71,0xd2,0x6b,0x01,0x8f,0x24,0xcb,0x5e,0x96,0x77,0xa5,0x72,0xd2,0x6d,
401 | 0xe7,0xa4,0x60,0x1a,0x53,0x7d,0x9e,0x4e,0xf3,0x94,0x99,0xdf,0x4a,0x96,0xfd,0x5d,
402 | 0xce,0xf5,0x0a,0x6d,0x14,0xbd,0x77,0x22,0x37,0xa3,0x66,0xfe,0xc1,0x9c,0x80,0x9a,
403 | 0x0e,0x3b,0x7d,0x96,0x1d,0x5b,0xb7,0x1d,0x10,0x75,0x0c,0xd2,0xa0,0x04,0x3c,0xaf,
404 | 0x01,0x1f,0x46,0xfb,0x77,0xd5,0x20,0xcb,0xee,0x9e,0x2c,0xf3,0x24,0x6a,0xfa,0x5e,
405 | 0x82,0x3a,0x9b,0x55,0x51,0xda,0xd9,0xb3,0xd5,0x63,0x2f,0x6d,0xde,0x7f,0x9e,0x6a,
406 | 0x75,0x20,0x6b,0x27,0x99,0xc9,0x6e,0xf4,0x4e,0xd5,0x39,0xd0,0xe4,0x2b,0x65,0xd6,
407 | 0x6d,0xe7,0xa4,0xa0,0xd2,0x9e,0xa1,0xe9,0xd8,0xb4,0xe3,0x81,0x89,0xe8,0xae,0x79,
408 | 0x08,0xba,0x8a,0xdb,0x8f,0xde,0x74,0x84,0xaf,0x02,0x5b,0x47,0xa9,0x69,0x36,0x5b,
409 | 0xd0,0xdb,0x54,0x3f,0x0f,0xcd,0xe6,0x95,0x3e,0x8f,0x1f,0x8e,0x66,0xc1,0x3a,0x96,
410 | 0xe5,0x67,0xfc,0xaa,0xea,0xcc,0x41,0xdd,0x76,0x40,0xd4,0x35,0x48,0x9f,0x48,0xef,
411 | 0x71,0xd9,0x03,0x7c,0x7c,0x90,0x65,0x87,0xa1,0x3b,0xed,0xf4,0x6f,0xdf,0xea,0x5d,
412 | 0x68,0xd9,0x34,0x8e,0x8d,0x6e,0xe7,0x22,0xe3,0x5e,0xb4,0xdf,0xef,0xc9,0xa3,0x52,
413 | 0x39,0x69,0x37,0xe3,0xd8,0xb9,0xc9,0xf2,0x33,0x70,0xee,0xee,0xae,0x32,0x0c,0x3d,
414 | 0xbb,0x6a,0xe5,0xb9,0xcf,0x23,0x34,0x9f,0x88,0xa3,0xcc,0xc6,0xd2,0xda,0x7c,0xd2,
415 | 0xf3,0xd0,0xdd,0x4b,0x55,0x75,0xdb,0x01,0x51,0xd7,0x20,0x3d,0x81,0xe5,0xbf,0x97,
416 | 0x13,0x9b,0x2c,0x7f,0x65,0xc3,0xb2,0x55,0x9d,0x52,0x36,0x9d,0x37,0xba,0xdd,0x39,
417 | 0xce,0x4f,0x4a,0xd6,0xfb,0x63,0xb3,0x05,0x4b,0xa4,0xdd,0x20,0xbd,0x0a,0x1a,0x2b,
418 | 0x5d,0xe5,0x7e,0x32,0xed,0xbc,0x5e,0x88,0x52,0xd3,0x12,0xdb,0x11,0xcd,0x16,0x35,
419 | 0x05,0xcd,0xb7,0xbc,0x18,0x35,0x99,0x3d,0x8b,0x86,0x83,0x1c,0x4b,0xb5,0x9a,0x92,
420 | 0x06,0xb3,0x17,0x6a,0x41,0x98,0x8e,0x9a,0x13,0x17,0xa3,0xb1,0x96,0xd7,0x03,0x27,
421 | 0x53,0x9d,0x9e,0xeb,0x03,0x71,0x90,0xae,0x8f,0xf4,0xa4,0xfc,0x4c,0x0b,0xcb,0xa6,
422 | 0x77,0xde,0x3d,0x68,0x0c,0x71,0x15,0x4d,0x43,0xc3,0xae,0xf6,0x69,0x73,0xbd,0x55,
423 | 0x93,0x75,0xe7,0x50,0x9d,0x3c,0x0e,0x9d,0x4c,0xb0,0xb1,0x0f,0x70,0x1b,0x4a,0x68,
424 | 0x32,0x2e,0x8f,0x4a,0xe5,0xc4,0x41,0xda,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
425 | 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
426 | 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
427 | 0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,0xcc,
428 | 0x62,0xf9,0x3f,0x0e,0xbd,0x2b,0xb5,0x54,0xa0,0x60,0x36,0x00,0x00,0x00,0x00,0x49,
429 | 0x45,0x4e,0x44,0xae,0x42,0x60,0x82
430 | };
431 |
432 |
--------------------------------------------------------------------------------
/signal11-smallicon.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file Signal11-small.ico */
4 | const unsigned char Signal11small[]={
5 | 0x00,0x00,0x01,0x00,0x01,0x00,0x10,0x10,0x00,0x00,0x01,0x00,0x08,0x00,0x68,0x05,
6 | 0x00,0x00,0x16,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x20,0x00,
7 | 0x00,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
8 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
9 | 0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
10 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
11 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
12 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
13 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
14 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
15 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
16 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
17 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
18 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
19 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
20 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
21 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
22 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
23 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
24 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
25 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
26 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
27 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
28 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
29 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
30 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
31 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
32 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
33 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
34 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
35 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
36 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
37 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
38 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
39 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
40 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
41 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
42 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
43 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
44 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
45 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
46 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
47 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
48 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
49 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
50 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
51 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
52 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
53 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
54 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
55 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
56 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
57 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
58 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
59 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
60 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
61 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
62 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
63 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
64 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
65 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
66 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
67 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
68 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
69 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
70 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
71 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
72 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,
73 | 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
74 | 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,
75 | 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
76 | 0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,
77 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,
78 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,
79 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,
80 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,
81 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,
82 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,
83 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x00,0x00,
84 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x00,0x00,
85 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,
86 | 0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x01,0x01,0x01,
87 | 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,
88 | 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0xff,0xff,
89 | 0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x80,0x00,0x00,0x01,0x80,0x00,0x00,0xc7,0xe3,
90 | 0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,
91 | 0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,0x00,0x00,0x07,0x83,0x00,0x00,0x07,0x83,
92 | 0x00,0x00,0xc7,0xe3,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00
93 | };
94 |
95 |
--------------------------------------------------------------------------------
/signal11icon.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap from file Signal11.ico */
2 | const unsigned char Signal11[]={
3 | 0x00,0x00,0x01,0x00,0x02,0x00,0x20,0x20,0x10,0x00,0x00,0x00,0x00,0x00,0xe8,0x02,
4 | 0x00,0x00,0x26,0x00,0x00,0x00,0x10,0x10,0x10,0x00,0x00,0x00,0x00,0x00,0x28,0x01,
5 | 0x00,0x00,0x0e,0x03,0x00,0x00,0x28,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,
6 | 0x00,0x00,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x80,0x02,0x00,0x00,0x00,0x00,
7 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
8 | 0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x80,0x00,0x00,0x00,0x80,0x80,0x00,0x80,0x00,
9 | 0x00,0x00,0x80,0x00,0x80,0x00,0x80,0x80,0x00,0x00,0xc0,0xc0,0xc0,0x00,0x80,0x80,
10 | 0x80,0x00,0x00,0x00,0xff,0x00,0x00,0xff,0x00,0x00,0x00,0xff,0xff,0x00,0xff,0x00,
11 | 0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,
12 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
13 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
14 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
15 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x99,
16 | 0x99,0x99,0x99,0x99,0x90,0x00,0x00,0x99,0x99,0x99,0x99,0x99,0x90,0x00,0x00,0x99,
17 | 0x99,0x99,0x99,0x99,0x90,0x00,0x00,0x99,0x99,0x99,0x99,0x99,0x90,0x00,0x00,0x99,
18 | 0x99,0x99,0x99,0x99,0x90,0x00,0x00,0x99,0x99,0x99,0x99,0x99,0x90,0x00,0x00,0x99,
19 | 0x99,0x99,0x99,0x99,0x90,0x00,0x00,0x99,0x99,0x99,0x99,0x99,0x90,0x00,0x00,0x00,
20 | 0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,
21 | 0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,
22 | 0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,
23 | 0x09,0x90,0x99,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x09,0x00,0x00,0x00,0x00,0x00,
24 | 0x00,0x90,0x90,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x09,0x00,0x00,0x00,0x00,0x00,
25 | 0x00,0x90,0x90,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x09,0x00,0x00,0x00,0x00,0x00,
26 | 0x09,0x90,0x90,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x00,0x00,
27 | 0x09,0x90,0x90,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x09,0x00,0x00,0x00,0x00,0x00,
28 | 0x00,0x90,0x90,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x09,0x00,0x00,0x00,0x00,0x00,
29 | 0x09,0x90,0x99,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x99,0x00,0x00,0x00,0x00,0x00,
30 | 0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,
31 | 0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x99,
32 | 0x99,0x99,0x99,0x00,0x00,0x00,0x00,0x99,0x99,0x99,0x99,0x00,0x00,0x00,0x00,0x99,
33 | 0x99,0x99,0x99,0x00,0x00,0x00,0x00,0x99,0x99,0x99,0x99,0x00,0x00,0x00,0x00,0x99,
34 | 0x99,0x99,0x99,0x00,0x00,0x00,0x00,0x99,0x99,0x99,0x99,0x00,0x00,0x00,0x00,0x99,
35 | 0x99,0x99,0x99,0x00,0x00,0x00,0x00,0x99,0x99,0x99,0x99,0x00,0x00,0x00,0x00,0x00,
36 | 0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,
37 | 0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,0x09,0x99,0x99,0x00,0x00,0x00,0x00,0x00,
38 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
39 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
40 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
41 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
42 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
43 | 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,
44 | 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc0,0x07,
45 | 0xc0,0x07,0xc0,0x07,0xc0,0x07,0xc0,0x07,0xc0,0x07,0xc0,0x07,0xc0,0x07,0xf8,0x3f,
46 | 0xf8,0x3f,0xf8,0x3f,0xf8,0x3f,0xf8,0x3f,0xf8,0x3f,0xc0,0x0d,0x90,0x03,0xb8,0x35,
47 | 0x90,0x1f,0xf8,0x35,0x50,0x1f,0xc0,0x25,0x50,0x1f,0xb8,0x3d,0x50,0x1f,0xb8,0x3c,
48 | 0xd0,0x1f,0xc0,0x04,0xd8,0x1f,0xf8,0x3f,0xf8,0x3f,0xf8,0x3f,0xf8,0x3f,0xc0,0x3f,
49 | 0xc0,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x3f,0xc0,0x3f,0xf8,0x3f,
50 | 0xf8,0x3f,0xf8,0x3f,0xf8,0x3f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
51 | 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x28,0x00,
52 | 0x00,0x00,0x10,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x01,0x00,0x04,0x00,0x00,0x00,
53 | 0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,
54 | 0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,0x00,0x00,0x80,
55 | 0x00,0x00,0x00,0x80,0x80,0x00,0x80,0x00,0x00,0x00,0x80,0x00,0x80,0x00,0x80,0x80,
56 | 0x00,0x00,0xc0,0xc0,0xc0,0x00,0x80,0x80,0x80,0x00,0x00,0x00,0xff,0x00,0x00,0xff,
57 | 0x00,0x00,0x00,0xff,0xff,0x00,0xff,0x00,0x00,0x00,0xff,0x00,0xff,0x00,0xff,0xff,
58 | 0x00,0x00,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
59 | 0x00,0x00,0x00,0x00,0x00,0x00,0x99,0x99,0x99,0x90,0x09,0x99,0x99,0x99,0x99,0x99,
60 | 0x99,0x90,0x09,0x99,0x99,0x99,0x00,0x99,0x90,0x00,0x00,0x09,0x99,0x00,0x00,0x99,
61 | 0x90,0x00,0x00,0x09,0x99,0x00,0x00,0x99,0x90,0x00,0x00,0x09,0x99,0x00,0x00,0x99,
62 | 0x90,0x00,0x00,0x09,0x99,0x00,0x00,0x99,0x90,0x00,0x00,0x09,0x99,0x00,0x00,0x99,
63 | 0x90,0x00,0x00,0x09,0x99,0x00,0x00,0x99,0x90,0x00,0x00,0x09,0x99,0x00,0x99,0x99,
64 | 0x90,0x00,0x09,0x99,0x99,0x00,0x99,0x99,0x90,0x00,0x09,0x99,0x99,0x00,0x00,0x99,
65 | 0x90,0x00,0x00,0x09,0x99,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
66 | 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x01,0x80,
67 | 0x00,0x00,0x01,0x80,0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,
68 | 0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,0x00,0x00,0xc7,0xe3,
69 | 0x00,0x00,0x07,0x83,0x00,0x00,0x07,0x83,0x00,0x00,0xc7,0xe3,0x00,0x00,0xff,0xff,
70 | 0x00,0x00,0xff,0xff,0x00,0x00
71 | };
72 |
73 |
--------------------------------------------------------------------------------
/tango/build:
--------------------------------------------------------------------------------
1 | for i in *png; do reswrap $i >$i.h; done
2 |
--------------------------------------------------------------------------------
/tango/document-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/document-open.png
--------------------------------------------------------------------------------
/tango/document-open.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file document-open.png */
4 | const unsigned char documentopen[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0d,0xd7,0x00,
9 | 0x00,0x0d,0xd7,0x01,0x42,0x28,0x9b,0x78,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd5,0x0b,0x15,0x11,0x2f,0x34,0xb0,0x7c,0xb4,0x1f,0x00,0x00,0x03,0x76,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xb5,0x95,0x5f,0x68,0x5b,0x55,0x1c,0xc7,0x3f,0xe7,0xe6,
12 | 0x36,0xbd,0x49,0x6e,0xd6,0xa6,0xd9,0xb2,0xb6,0xeb,0xaa,0x73,0x45,0xa7,0xed,0x3a,
13 | 0x64,0xca,0x64,0x0a,0x82,0xe0,0xab,0x20,0xce,0x89,0x0f,0x05,0x41,0x7c,0x56,0x61,
14 | 0xf8,0xa6,0x82,0xfa,0xaa,0xbe,0xf9,0xa0,0x0f,0x83,0xe9,0xd4,0xb2,0x75,0x20,0xb8,
15 | 0x87,0x81,0x3e,0xf8,0x20,0xee,0xc1,0xfe,0x59,0x6c,0x6b,0xbb,0x3f,0x76,0xa5,0x25,
16 | 0x49,0xdb,0x2c,0xa6,0x69,0xd2,0x36,0xc9,0xb9,0xe7,0xe7,0xc3,0x4d,0xd2,0xc8,0xb6,
17 | 0xc8,0x0a,0x7e,0xe1,0x1c,0x7e,0xfc,0x7e,0xe7,0x7e,0x7f,0xbf,0x7b,0x7e,0x7f,0x8e,
18 | 0xe2,0x3e,0x38,0xf7,0xcd,0xd9,0xd3,0x28,0x46,0x3d,0xed,0x21,0x08,0xad,0xa0,0x50,
19 | 0x08,0x82,0x08,0x9f,0xbc,0xf9,0xc6,0x5b,0xef,0xb7,0x3c,0x7c,0xe1,0xd2,0x77,0xf2,
20 | 0x20,0x28,0x14,0x0a,0x72,0xee,0xfc,0xd9,0x46,0x04,0xf6,0xc8,0xc8,0xc8,0x71,0x83,
21 | 0x77,0x59,0x29,0xcb,0x77,0x8e,0x22,0x1c,0x0e,0x59,0xba,0xea,0x01,0xe0,0x79,0xda,
22 | 0x57,0xdf,0x07,0xc6,0x18,0x00,0xb4,0xae,0x12,0x0c,0x06,0x1b,0x7a,0xbb,0x50,0xc8,
23 | 0x7f,0xf9,0xf6,0x3b,0xef,0xee,0x6f,0x3e,0xbc,0xb2,0x9a,0xa6,0xb7,0xf7,0x00,0x00,
24 | 0x93,0x93,0x93,0xa4,0xd2,0x69,0x2c,0xa5,0x7c,0x7e,0xd9,0xb9,0x00,0x10,0x8c,0x08,
25 | 0xb1,0x58,0x27,0x43,0x83,0x43,0x0d,0x27,0x00,0xb6,0x41,0x74,0xb1,0x58,0x64,0x62,
26 | 0x7c,0x1c,0x80,0x70,0x24,0x4c,0x5f,0x7f,0x2f,0x27,0x9f,0x79,0x96,0x7c,0x3e,0xc7,
27 | 0xc0,0xc0,0x00,0x47,0x8e,0x3c,0x86,0x65,0x05,0x7c,0x22,0x23,0x88,0x48,0x43,0x06,
28 | 0xc1,0xb6,0x6d,0x52,0xe9,0x0c,0x5a,0xeb,0x26,0x62,0xcf,0xac,0xb7,0x3b,0x1d,0xc4,
29 | 0xe3,0x7b,0x01,0x88,0x27,0x3a,0x39,0x79,0xe2,0x39,0x4a,0xa5,0x12,0x8b,0x8b,0x8b,
30 | 0xfc,0x3e,0x3e,0x8e,0x13,0x0a,0x35,0xc5,0x48,0x83,0xa0,0x3d,0x18,0xe4,0xa1,0xfe,
31 | 0x7e,0x06,0x07,0x87,0x58,0x5d,0xcb,0xe0,0xba,0xee,0x0e,0xb1,0x15,0x50,0x91,0xca,
32 | 0x76,0xa1,0xea,0x38,0x4e,0xdb,0xea,0x5a,0x86,0x3d,0xb1,0x08,0xa1,0x50,0x88,0x85,
33 | 0x85,0x9b,0x54,0xb5,0xe6,0xe8,0xf0,0x10,0x4a,0xfc,0x3b,0x56,0x96,0x42,0x8c,0xa0,
34 | 0x2c,0x50,0x4a,0x61,0x3c,0x21,0xb1,0xbf,0x9b,0xb9,0xf9,0x79,0xe6,0xe6,0xe7,0x88,
35 | 0xc7,0xbb,0x3e,0x6d,0x10,0x3b,0x8e,0x93,0x4c,0x67,0x52,0x4f,0x87,0x43,0x11,0x22,
36 | 0xae,0xcb,0x0b,0xcf,0xbf,0x48,0x36,0xbb,0xc6,0x5f,0x0b,0xb7,0xd9,0x28,0x6e,0x80,
37 | 0xe0,0x97,0x9b,0x31,0x48,0x3d,0x8d,0x96,0xc2,0xb6,0x03,0x84,0x9c,0x10,0x89,0x44,
38 | 0x82,0x3f,0x66,0xae,0xd1,0xd5,0x15,0xfb,0xec,0xe5,0x97,0x4e,0x9d,0x69,0x64,0xe0,
39 | 0xd5,0xd7,0x5e,0x79,0xef,0xd8,0xf0,0xb1,0x0f,0xfb,0xfa,0x0e,0x86,0x9d,0x70,0x1b,
40 | 0x9d,0xb1,0x1e,0xbe,0xbd,0x92,0x64,0x36,0xbf,0xaf,0x65,0x39,0x3a,0x01,0xbf,0x6a,
41 | 0xb6,0xbd,0xc0,0x5d,0xb6,0x47,0xdd,0x95,0xab,0x36,0x70,0x3b,0x97,0xfb,0xbb,0x7a,
42 | 0xe8,0xf0,0xc3,0x3c,0x39,0xfc,0x14,0x63,0x3f,0x5c,0x66,0xe4,0xf5,0xd3,0x28,0x55,
43 | 0x2b,0x31,0xa5,0xfc,0x16,0x50,0xfe,0xf2,0x13,0xc7,0x8e,0xfd,0x1e,0xf8,0xfc,0xab,
44 | 0x8b,0x8f,0xdb,0x40,0xae,0x5c,0xae,0x54,0x3d,0xcf,0x23,0x1a,0x8d,0x72,0x75,0xc9,
45 | 0xe1,0x68,0xc5,0x30,0x9b,0x2a,0xb1,0x1b,0xf4,0xc6,0x1c,0x8a,0x65,0xd1,0x16,0x30,
46 | 0x93,0xcd,0xae,0x56,0x3d,0xad,0x49,0x65,0x52,0x04,0x03,0xe6,0x3f,0x5b,0xb8,0x15,
47 | 0x0a,0xb9,0x3b,0xb2,0xad,0x03,0xcb,0xd6,0x85,0xd1,0xb1,0xb4,0xe3,0x84,0x24,0x1a,
48 | 0xed,0xa0,0xb8,0x51,0xe0,0xf8,0x13,0x07,0x90,0x5d,0xf2,0x76,0x84,0xdb,0x28,0x6d,
49 | 0x95,0x4d,0x5f,0xe9,0xe7,0x33,0x16,0x40,0x61,0x7d,0xbd,0x6c,0x44,0xf3,0xfd,0x8f,
50 | 0xbf,0xd2,0x93,0x88,0x93,0xdf,0xf2,0x10,0x01,0x23,0x82,0x31,0x60,0x8c,0xd4,0x16,
51 | 0xb5,0x06,0x69,0xb6,0xd1,0xd0,0x87,0xdb,0x03,0x2c,0xa5,0xb3,0x55,0x60,0xc6,0x06,
52 | 0x88,0xb8,0x91,0xf1,0x5b,0x37,0x16,0x0e,0xf5,0xf4,0x1d,0xc6,0xdd,0xd7,0x4f,0x2a,
53 | 0x5f,0x61,0x5b,0xd7,0xda,0xb3,0xd6,0x65,0x52,0x9b,0x61,0xd4,0x25,0x55,0xb7,0xf9,
54 | 0xe8,0x72,0xdb,0xd0,0x9e,0x90,0x9c,0xbd,0xb9,0xf4,0xcb,0xe8,0x58,0xda,0xf6,0x3f,
55 | 0x66,0xb2,0x58,0x2c,0x9e,0xea,0x7e,0xe4,0x20,0xb9,0xa2,0x26,0x9d,0x2b,0x37,0xcd,
56 | 0x44,0x01,0xf1,0xc7,0xa2,0xaa,0xc9,0xbe,0xae,0x66,0x03,0x10,0x45,0xc5,0x13,0x26,
57 | 0x26,0x92,0xd5,0xc4,0xe6,0x6f,0x1f,0x03,0xd8,0x40,0xfb,0xf2,0x72,0x2a,0x19,0xdd,
58 | 0x13,0x35,0x27,0x7a,0x13,0xd6,0xcc,0xaa,0xde,0x89,0xb6,0xe6,0xb5,0xbe,0xab,0x7f,
59 | 0xcd,0xdf,0x1d,0x5b,0xa2,0xa3,0x9d,0xaa,0x67,0x98,0x9b,0x4d,0xae,0xfd,0x34,0x3a,
60 | 0xf6,0x75,0x9d,0x78,0xef,0xf4,0xf4,0x74,0xa4,0xbb,0xa7,0xdb,0xba,0xf2,0xe7,0xe6,
61 | 0xdd,0x19,0x11,0xff,0x1a,0x68,0xda,0x55,0x23,0x52,0xdf,0xa6,0xb5,0xc0,0x46,0xc6,
62 | 0x63,0x73,0xe5,0x22,0x60,0x01,0xc6,0x06,0x36,0xb2,0xd9,0xec,0xf5,0x6b,0x53,0x53,
63 | 0x1f,0x45,0xdc,0xd9,0x0f,0x76,0x5b,0x66,0xfa,0xce,0xf5,0x1b,0x53,0x97,0xbe,0x38,
64 | 0x0f,0xb8,0x40,0xa1,0xfe,0x77,0x0e,0x10,0xae,0x29,0xdd,0x9a,0xd7,0x07,0x81,0x00,
65 | 0x15,0x60,0x13,0xc8,0x01,0x5b,0xf7,0xea,0x4b,0xab,0xe5,0x93,0xd1,0x1a,0xa6,0xf9,
66 | 0x29,0xf8,0x5f,0xf0,0x0f,0xa8,0x39,0xd1,0x64,0xf2,0x5e,0x8a,0xb6,0x00,0x00,0x00,
67 | 0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
68 | };
69 |
70 |
--------------------------------------------------------------------------------
/tango/edit-find-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/edit-find-48.png
--------------------------------------------------------------------------------
/tango/edit-find-48.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file edit-find-48.png */
4 | const unsigned char editfind48[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57,0x02,0xf9,
7 | 0x87,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,
8 | 0x88,0x00,0x00,0x0a,0x84,0x49,0x44,0x41,0x54,0x68,0x81,0xed,0x99,0x5b,0x6c,0x54,
9 | 0xf7,0x9d,0xc7,0x3f,0xff,0x73,0xce,0x5c,0xce,0x5c,0x3c,0x9e,0x01,0x1b,0x63,0xb0,
10 | 0x5d,0x3b,0x74,0xb9,0x8d,0x09,0x6c,0x62,0xd8,0x88,0x10,0x08,0x2f,0x89,0x58,0x10,
11 | 0x4a,0xd3,0x12,0x2b,0xe9,0x26,0x52,0xf3,0x10,0x69,0x85,0xd2,0x95,0x56,0x55,0x1e,
12 | 0xfa,0xba,0x52,0x1e,0x22,0x6d,0xf3,0xd0,0x28,0x56,0x13,0x25,0x52,0x76,0xb3,0x79,
13 | 0xc9,0xbd,0x49,0x53,0x1a,0x28,0x95,0xc5,0x4a,0x81,0xd4,0x6d,0x80,0x71,0x0c,0x0b,
14 | 0x36,0xa9,0xb1,0x30,0xc6,0xf7,0xb9,0xcf,0xb9,0xfd,0xf7,0x61,0x3c,0xa3,0xf1,0x78,
15 | 0xce,0x78,0xc0,0x55,0x9f,0xfa,0x95,0xfe,0xfa,0x5f,0xce,0x39,0xff,0xff,0xef,0xfb,
16 | 0xff,0xfe,0xfe,0xd7,0x03,0x7f,0xc7,0xdf,0xb1,0x26,0x08,0xb7,0x07,0x03,0x03,0x03,
17 | 0x8f,0x78,0x3c,0x9e,0x37,0x81,0x26,0x45,0x51,0xd0,0x34,0x0d,0x21,0x8a,0xaf,0x3b,
18 | 0x8e,0x83,0x6d,0xdb,0x38,0x8e,0x83,0x94,0xb2,0x9c,0x2e,0xc5,0x95,0xa1,0xb2,0xcc,
19 | 0xb6,0xed,0xf2,0xfb,0xa5,0x74,0xa9,0xdc,0xed,0x5b,0x20,0x93,0xcb,0xe5,0x7e,0xfa,
20 | 0xce,0x3b,0xef,0x7c,0x56,0xcb,0x4e,0xcd,0x8d,0x80,0xaa,0xaa,0x6f,0x3f,0xf9,0xe4,
21 | 0x93,0x3d,0x4d,0x4d,0x4d,0xa5,0x8a,0x56,0x40,0x4a,0xb9,0xe6,0xf2,0x7a,0x65,0x42,
22 | 0x08,0x6c,0xdb,0xe6,0xc5,0x17,0x5f,0xfc,0x2f,0x20,0x5a,0xab,0x4e,0x57,0x02,0x52,
23 | 0xca,0x66,0xbf,0xdf,0xcf,0xe4,0xe4,0x24,0x86,0x61,0x20,0x84,0xc0,0x71,0x1c,0x74,
24 | 0x5d,0x2f,0xe7,0x4b,0x70,0x4b,0xd7,0xca,0xbb,0x3d,0xab,0x45,0x44,0x08,0x41,0x2c,
25 | 0x16,0xc3,0x30,0x8c,0x66,0xb7,0x3a,0xea,0x11,0x28,0x4b,0x5c,0x2b,0x2d,0xa5,0x2c,
26 | 0x1b,0xe0,0x96,0xae,0x95,0xaf,0x6e,0xa3,0x1e,0x84,0x10,0xab,0xbe,0xe3,0x4a,0xa0,
27 | 0xb2,0x92,0xca,0xb8,0x5e,0x79,0x3d,0x25,0xdc,0xca,0xdc,0xb0,0x9a,0xe1,0x25,0xd4,
28 | 0x55,0xc0,0xad,0xe1,0x6a,0xe3,0xef,0xd6,0x85,0xea,0x11,0xa9,0xf4,0xff,0x46,0x08,
29 | 0xaf,0x4a,0xa0,0xb2,0xa2,0xea,0x34,0xc0,0xd5,0xab,0x57,0x57,0x35,0xea,0x6e,0x7a,
30 | 0x7e,0xfb,0xf6,0xed,0xae,0xb6,0xd4,0x82,0x2b,0x81,0xea,0x99,0xc7,0x8d,0xc4,0xb6,
31 | 0x6d,0xdb,0x1a,0x52,0xc2,0xad,0x6c,0x35,0xac,0xf6,0x8d,0x2b,0x01,0xc7,0x71,0x56,
32 | 0x54,0x52,0x2b,0xbe,0x72,0xe5,0xca,0x5d,0x35,0xb8,0xda,0xf3,0x1d,0x3b,0x76,0x2c,
33 | 0x53,0x1f,0xee,0x51,0x81,0xd2,0x4c,0x53,0xdd,0x70,0x75,0x5c,0x29,0xf9,0x6a,0x03,
34 | 0xbe,0x51,0xb8,0xd5,0x53,0x0b,0x77,0x3d,0x06,0xaa,0xe3,0x91,0x91,0x11,0xd7,0x86,
35 | 0xee,0xc5,0x65,0x76,0xee,0xdc,0xe9,0x6a,0x4b,0x2d,0x34,0xe4,0x42,0x95,0xc6,0x54,
36 | 0xc7,0x3b,0x76,0xec,0x58,0x96,0xaf,0x97,0xae,0x95,0xaf,0x85,0x6a,0x17,0xaa,0x87,
37 | 0x55,0x09,0xd4,0x32,0xa6,0x5a,0x81,0xd5,0x8c,0x6b,0x54,0x09,0x29,0x25,0xf1,0x78,
38 | 0x7c,0x45,0x3b,0x6b,0x56,0xa0,0xd6,0x9c,0xec,0xa6,0xc0,0x5a,0x7b,0xbf,0x84,0x4a,
39 | 0xa3,0xef,0x79,0x10,0x97,0x1a,0x9d,0x9f,0x9f,0x27,0x14,0x0a,0xa1,0xaa,0xea,0x0a,
40 | 0x63,0xbf,0xfd,0xf6,0xdb,0x35,0x0f,0xda,0x4a,0xc4,0xe3,0xf1,0x72,0x1d,0x6b,0x52,
41 | 0xa0,0x72,0x1d,0xc8,0x66,0xb3,0x44,0x22,0x91,0x65,0xc6,0x95,0xe2,0xd2,0xa0,0xbb,
42 | 0x97,0xad,0xc5,0x5f,0x03,0x0d,0xb9,0x50,0x7b,0x7b,0x3b,0x81,0x40,0x80,0x4c,0x26,
43 | 0xb3,0xcc,0x98,0x92,0x02,0xf5,0x8c,0xcc,0x66,0xb3,0xcc,0xcd,0xcd,0x91,0x4c,0x26,
44 | 0x11,0x42,0xe0,0xf5,0x7a,0x49,0xa7,0xd3,0xf8,0x7c,0x3e,0xa2,0xd1,0x28,0xb1,0x58,
45 | 0x0c,0xaf,0xd7,0x5b,0x7e,0xbf,0xb7,0xb7,0x17,0x58,0xb9,0x41,0x5c,0x13,0x01,0x55,
46 | 0x55,0x29,0x14,0x0a,0x35,0xa7,0x54,0x37,0x05,0x66,0x67,0x67,0xb9,0x70,0xe1,0x02,
47 | 0x3d,0x3d,0x3d,0xec,0xdb,0xb7,0x8f,0x68,0x34,0x5a,0xde,0xcd,0xaa,0xaa,0x8a,0x69,
48 | 0x9a,0x4c,0x4c,0x4c,0x70,0xfe,0xfc,0x79,0x82,0xc1,0x20,0x0f,0x3e,0xf8,0x20,0x81,
49 | 0x40,0x60,0x99,0xf1,0x6b,0x5e,0xc8,0x2a,0xe1,0x36,0x1b,0x0d,0x0f,0x0f,0xaf,0xe8,
50 | 0xf9,0xdb,0xb7,0x6f,0x13,0x0c,0x06,0x39,0x71,0xe2,0x04,0x96,0x65,0x71,0xe5,0xc6,
51 | 0x14,0xff,0xfd,0xe5,0x08,0x93,0x73,0x79,0x72,0x86,0x43,0x4b,0x93,0x87,0x78,0x77,
52 | 0x94,0x87,0x76,0x6e,0xe6,0xa9,0xa7,0x9e,0x62,0x62,0x62,0x82,0xf7,0xdf,0x7f,0x9f,
53 | 0xee,0xee,0x6e,0x0e,0x1c,0x38,0xb0,0x62,0x3b,0xbe,0x26,0x05,0x56,0xf3,0xe9,0xca,
54 | 0x41,0x07,0x30,0x34,0x34,0x44,0x47,0x47,0x07,0xfb,0xf6,0xed,0xe3,0xc2,0xe5,0x31,
55 | 0x5e,0xff,0xec,0x2a,0x37,0x67,0x72,0xf4,0x6c,0x8a,0xd1,0xba,0x2e,0x48,0x53,0x40,
56 | 0x61,0x62,0x31,0xc7,0x1f,0xcf,0x8c,0xf3,0x9f,0x1f,0x5d,0xa5,0xff,0x91,0x0e,0xfe,
57 | 0xe5,0xb1,0x5d,0x3c,0xff,0xfc,0xf3,0xbc,0xfb,0xee,0xbb,0x8c,0x8f,0x8f,0xd3,0xd5,
58 | 0xd5,0xb5,0x76,0x17,0xaa,0x1c,0xc4,0xf5,0x48,0x24,0x12,0x89,0x72,0xd9,0xfc,0xfc,
59 | 0x3c,0xba,0xae,0xd3,0xd7,0xd7,0xc7,0x07,0x67,0x2e,0xf1,0xcb,0x5f,0xff,0x1f,0x7d,
60 | 0x3b,0x36,0xf2,0x93,0x63,0xbb,0xe9,0x68,0x0d,0xa3,0x2a,0x02,0xd3,0x72,0xc8,0x19,
61 | 0x16,0x13,0xd3,0x29,0xfe,0x74,0xed,0x0e,0x9f,0x7d,0x7d,0x8b,0x8b,0x63,0x0b,0xfc,
62 | 0xc7,0x4f,0xfe,0x89,0xfe,0xfe,0x7e,0xde,0x7a,0xeb,0x2d,0x9e,0x78,0xe2,0x09,0x9a,
63 | 0x9b,0x9b,0x1b,0x22,0xa0,0xb8,0x3d,0x70,0x5b,0x89,0xab,0xd3,0xf1,0x78,0x9c,0x78,
64 | 0x3c,0xce,0xf6,0xed,0xdb,0xb9,0x79,0xf3,0x26,0x87,0x0f,0x1f,0xe6,0xdc,0x9f,0xaf,
65 | 0xf3,0xfa,0x6f,0xae,0xf3,0xec,0xb1,0xdd,0xfc,0xf4,0x47,0x0f,0xd2,0xdb,0xd3,0x4a,
66 | 0x24,0xe4,0xc7,0xef,0xf5,0xe2,0xf3,0x79,0x09,0xea,0x7e,0xba,0xdb,0x63,0x1c,0x79,
67 | 0xe8,0xfb,0x3c,0x7d,0x64,0x37,0x29,0x43,0xf0,0xf2,0xff,0x7c,0x8d,0xa6,0x69,0x3c,
68 | 0xfe,0xf8,0xe3,0x7c,0xf5,0xd5,0x57,0xcb,0xda,0xa8,0xb6,0xa5,0x21,0x02,0xb5,0x7c,
69 | 0xaf,0x16,0x89,0xe1,0xe1,0x61,0x12,0x89,0x04,0x67,0xcf,0x9e,0xe5,0xe0,0xc1,0x83,
70 | 0x2c,0x2c,0x2e,0xf2,0x8b,0x0f,0x47,0x78,0xf4,0x81,0xcd,0x3c,0xbc,0xbd,0x05,0x05,
71 | 0x07,0x89,0x04,0x09,0x88,0xe2,0x35,0x88,0x10,0xc5,0xef,0x35,0x45,0xd0,0x1e,0xd5,
72 | 0x39,0xd8,0x77,0x1f,0xd7,0x26,0xf3,0xfc,0xfe,0x8f,0xd7,0xd9,0xb2,0x65,0x0b,0xb9,
73 | 0x5c,0x8e,0x3b,0x77,0xee,0xac,0x4d,0x01,0x37,0x17,0xaa,0x26,0x14,0x8f,0xc7,0xe9,
74 | 0xed,0xed,0x25,0x95,0x4a,0xd1,0xd1,0xd1,0xc1,0x6f,0xcf,0x7f,0x47,0x30,0xa8,0xf3,
75 | 0xe8,0x03,0xf7,0xe1,0xf7,0xf9,0x40,0x28,0x58,0x96,0x83,0x65,0x3b,0x38,0x4b,0x86,
76 | 0x28,0x02,0x14,0x21,0x50,0x14,0x81,0x69,0x3b,0x68,0xaa,0xc2,0x43,0xbb,0xbb,0x78,
77 | 0xfb,0x77,0x63,0x64,0xb3,0x59,0xf6,0xec,0xd9,0xc3,0xf5,0xeb,0xd7,0xff,0x36,0x2e,
78 | 0x24,0x84,0x20,0x95,0x4a,0x11,0x08,0x04,0x70,0x1c,0x87,0xb3,0x97,0xee,0xb0,0xa5,
79 | 0x6b,0x3d,0xd1,0x90,0x17,0xcb,0x76,0xb0,0x1d,0x89,0xe5,0x48,0x6c,0x47,0xe2,0x38,
80 | 0x12,0xa4,0x44,0x4a,0x10,0x48,0x14,0x21,0xc8,0x1b,0x36,0x3e,0x4d,0x61,0xc3,0xba,
81 | 0x10,0x0b,0x59,0x9b,0xb1,0x89,0x19,0xda,0xda,0xda,0xf8,0xee,0xbb,0xef,0xca,0x6d,
82 | 0xfc,0x55,0x08,0xd4,0x23,0xb1,0xb0,0xb0,0x40,0x38,0x1c,0xc6,0x30,0x0c,0x46,0x27,
83 | 0x53,0x74,0xb6,0x45,0x40,0x82,0xed,0x48,0x6c,0x7b,0xc9,0xf8,0xd2,0x6d,0x06,0x25,
84 | 0x17,0x82,0x82,0x61,0xe3,0x38,0x12,0x8f,0x2a,0xf0,0xaa,0x45,0x12,0x23,0xe3,0xf3,
85 | 0x68,0x9a,0x86,0x61,0x18,0x98,0xa6,0xe9,0x6a,0x78,0x09,0x0d,0x4d,0xa3,0x57,0xaf,
86 | 0x5e,0x65,0xe3,0xc6,0x8d,0x84,0x42,0xa1,0x15,0x24,0x2e,0x5f,0xbe,0xcc,0xcc,0xcc,
87 | 0x0c,0xc1,0x60,0x10,0xcb,0xb2,0x48,0xe7,0x6c,0x8c,0x42,0x96,0x54,0x26,0x8b,0x47,
88 | 0x15,0x68,0xaa,0x40,0x15,0x45,0xb7,0x81,0x22,0x09,0xdb,0x91,0xe4,0x0b,0x16,0xd7,
89 | 0x27,0x66,0xc8,0x9b,0x0e,0x96,0x14,0x58,0x0e,0x08,0x2c,0x16,0x33,0x26,0xb6,0x6d,
90 | 0xe3,0xf3,0xf9,0xc8,0x66,0xb3,0xe5,0xc5,0xed,0x9e,0x08,0x94,0xa4,0x6b,0x6f,0x6f,
91 | 0x27,0x16,0x8b,0x51,0x28,0x14,0x56,0xbc,0xd7,0xdb,0xdb,0xcb,0xe8,0xe8,0x28,0x73,
92 | 0x73,0x73,0x68,0x9a,0x86,0xee,0x57,0x51,0x54,0x3f,0x1e,0xaf,0x0f,0x9f,0x47,0xc1,
93 | 0xa3,0x16,0x83,0xaa,0x16,0xfd,0x5e,0x08,0xb0,0x2c,0x89,0x21,0xf3,0x6c,0xde,0xd4,
94 | 0x8e,0x61,0x4b,0xf2,0x86,0x4d,0xc1,0x92,0xa8,0x23,0xb3,0x04,0xfd,0x1a,0xa6,0x69,
95 | 0x96,0x57,0xec,0xd5,0xd0,0xd0,0x56,0xa2,0xfa,0x7a,0xb1,0x52,0x85,0x44,0x22,0x41,
96 | 0x32,0x99,0xa4,0x50,0x28,0xe0,0xf5,0x7a,0xd9,0xbc,0x4e,0xe7,0x2f,0xb7,0xa6,0xd9,
97 | 0x10,0x82,0x96,0x88,0x1f,0x55,0x01,0x4d,0x29,0xaa,0x00,0x0e,0xe9,0x4c,0x8e,0xf9,
98 | 0x64,0x1a,0xd3,0x92,0x58,0x52,0xc1,0x74,0xc0,0x74,0xc0,0xb0,0x61,0x6a,0x2e,0xc5,
99 | 0xf7,0x36,0x74,0x01,0x90,0xc9,0x64,0x56,0xed,0xfd,0xba,0x04,0xdc,0xee,0x43,0xab,
100 | 0xd1,0xdb,0xdb,0x8b,0x65,0x59,0xbc,0xf7,0xde,0x7b,0x78,0xbd,0x5e,0x1e,0x89,0xb7,
101 | 0x32,0x74,0x23,0x8d,0x21,0x7c,0x24,0x4d,0x8d,0x90,0x4f,0x43,0xd1,0x04,0x9a,0xaa,
102 | 0xa0,0xa9,0x82,0xb6,0x70,0x84,0xd6,0x0d,0x50,0xb0,0x1c,0xf2,0x86,0x4d,0xde,0x74,
103 | 0xc8,0x19,0x36,0xb7,0x66,0xb2,0x28,0x08,0xb6,0x76,0xc6,0x98,0x9c,0x9c,0x24,0x1a,
104 | 0x8d,0xe2,0xf1,0x78,0xee,0x9d,0x80,0xdb,0x5d,0x65,0x75,0xfa,0xf2,0xe5,0xcb,0x00,
105 | 0x04,0x83,0x41,0x66,0x66,0x66,0xf8,0xc1,0x81,0xfb,0xf8,0xf8,0xab,0x3f,0x70,0x63,
106 | 0xfc,0x36,0xb1,0x90,0x86,0x57,0x95,0x78,0x14,0xd0,0x94,0x52,0x5c,0x5c,0x12,0x2c,
107 | 0x29,0x30,0xed,0x62,0xef,0x9b,0xb6,0xe0,0xb7,0x5f,0x4f,0xf2,0xcc,0xa1,0x4e,0xfc,
108 | 0x7e,0x3f,0x17,0x2f,0x5e,0xa4,0xa7,0xa7,0xa7,0xa1,0x0e,0x6c,0xf8,0x4c,0xec,0x86,
109 | 0xde,0xde,0x5e,0x84,0x10,0xac,0x5f,0xbf,0x9e,0x73,0xe7,0xce,0xd1,0xdf,0xdf,0xcf,
110 | 0x0b,0x8f,0xff,0x03,0xbf,0x3a,0x35,0xca,0x8f,0x8f,0xec,0x62,0x5d,0xd8,0x87,0xdf,
111 | 0xa3,0xe2,0xf3,0xa8,0x78,0x54,0x81,0x47,0x53,0x80,0xe2,0xfc,0x6f,0xda,0x92,0xbc,
112 | 0x69,0x73,0xea,0xfc,0x0d,0x74,0xaf,0xc2,0xb1,0x87,0xb7,0x72,0xe7,0xce,0x1d,0x2e,
113 | 0x5e,0xbc,0xc8,0xf1,0xe3,0xc7,0xd7,0x46,0xa0,0x11,0x17,0x2a,0xcd,0x42,0xa5,0x74,
114 | 0x2e,0x97,0x63,0x78,0x78,0x98,0xe3,0x87,0xe2,0xdc,0x9a,0xcb,0xf1,0xd6,0x27,0x7f,
115 | 0xe6,0xd0,0xfd,0x1b,0xe8,0x6c,0xd1,0x51,0x85,0x44,0x53,0x8a,0xd3,0xa7,0x94,0x20,
116 | 0x11,0xa4,0x0b,0x36,0xe7,0x12,0x33,0xa4,0xb2,0x06,0xaf,0xff,0xdb,0x21,0x34,0x4d,
117 | 0xe5,0xcc,0x99,0x33,0x2c,0x2e,0x2e,0x72,0xe3,0xc6,0x0d,0xb6,0x6e,0xdd,0x7a,0xef,
118 | 0x04,0x2a,0x67,0xa1,0x7a,0x28,0x29,0x20,0x84,0xa0,0xbb,0xbb,0x9b,0x0f,0x3f,0xfc,
119 | 0x90,0xe6,0xe6,0x66,0xfe,0xf5,0xc9,0x3e,0x3a,0x37,0x84,0x78,0xed,0xd3,0x2b,0x7c,
120 | 0xdb,0xa4,0xb3,0xa3,0xbb,0x85,0x8d,0xeb,0xc3,0x78,0x55,0x85,0xc5,0x6c,0x81,0xd1,
121 | 0x9b,0xf3,0x7c,0x73,0x6d,0x8a,0xfd,0xdb,0xd7,0xf3,0xb3,0x93,0x8f,0x10,0xd4,0x7d,
122 | 0x2c,0x2c,0x2c,0xb0,0x7b,0xf7,0x6e,0xa2,0xd1,0x28,0xaf,0xbe,0xfa,0x2a,0x4f,0x3f,
123 | 0xfd,0x34,0x07,0x0f,0x1e,0xbc,0x37,0x02,0x8d,0xde,0x0e,0x57,0x2a,0x00,0xb0,0x65,
124 | 0xcb,0x16,0x3e,0xf9,0xe4,0x13,0x0e,0x1d,0x3a,0xc4,0x3f,0xef,0xdf,0xc9,0xa3,0xff,
125 | 0xd8,0xcd,0xd9,0x3f,0xdd,0xe0,0x7f,0x13,0xb7,0xf9,0xfd,0xe8,0x24,0x86,0xed,0x10,
126 | 0x0b,0x7b,0xd9,0x73,0xdf,0x3a,0x4e,0x1e,0x3b,0xc0,0x96,0xce,0x0d,0xcc,0xcf,0xcf,
127 | 0x33,0x3a,0x3a,0x41,0x3a,0x9d,0x26,0x91,0x48,0x00,0x70,0xf4,0xe8,0x51,0x3e,0xfe,
128 | 0xf8,0x63,0xa6,0xa7,0xa7,0xeb,0xb6,0xef,0x7a,0x50,0x7d,0xf6,0xd9,0x67,0x67,0x5f,
129 | 0x7b,0xed,0xb5,0x58,0x2e,0x97,0xc3,0x71,0x1c,0x84,0x28,0xfe,0x2d,0xf1,0xfb,0xfd,
130 | 0xd8,0xb6,0xbd,0xe2,0x74,0x56,0x99,0x4f,0x26,0x93,0x9c,0x3e,0x7d,0x1a,0xaf,0xd7,
131 | 0xcb,0xfe,0xfd,0xfb,0x69,0x69,0x69,0x41,0xd7,0x75,0xa0,0xa8,0x6c,0xe9,0x44,0x96,
132 | 0x4e,0xa7,0xf9,0xe6,0x9b,0x6f,0xf8,0xf2,0xcb,0x2f,0xe9,0xeb,0xeb,0x23,0x1c,0x0e,
133 | 0xb3,0xb0,0xb0,0x40,0x26,0x93,0x21,0x9f,0xcf,0x13,0x8b,0xc5,0x18,0x1a,0x1a,0x22,
134 | 0x91,0x48,0x30,0x35,0x35,0xe5,0x1d,0x1a,0x1a,0x5a,0xb1,0x34,0xbb,0x12,0x78,0xe6,
135 | 0x99,0x67,0x66,0x07,0x06,0x06,0xea,0x12,0xa8,0x36,0xbe,0xfa,0x58,0x79,0xed,0xda,
136 | 0x35,0x2e,0x5d,0xba,0x84,0x61,0x18,0xb4,0xb6,0xb6,0x12,0x89,0x44,0xf0,0xf9,0x7c,
137 | 0x24,0x93,0x49,0xe6,0xe6,0xe6,0x18,0x1b,0x1b,0x63,0xf3,0xe6,0xcd,0xec,0xda,0xb5,
138 | 0x8b,0x81,0x81,0x01,0x1e,0x7b,0xec,0x31,0x02,0x81,0x00,0xa9,0x54,0x0a,0xcb,0xb2,
139 | 0x48,0x26,0x93,0xac,0x5b,0xb7,0x8e,0xd1,0xd1,0x51,0x06,0x07,0x07,0x7f,0xe7,0xf5,
140 | 0x7a,0x7f,0xf8,0xe9,0xa7,0x9f,0xa6,0x1a,0x22,0xd0,0xdf,0xdf,0x3f,0xfb,0xc6,0x1b,
141 | 0x6f,0xdc,0x15,0x01,0xb7,0x7c,0x2a,0x95,0x62,0x7c,0x7c,0x9c,0x74,0x3a,0x4d,0xa1,
142 | 0x50,0x40,0xd7,0x75,0xa2,0xd1,0x28,0x5d,0x5d,0x5d,0x65,0x65,0xc6,0xc6,0xc6,0x78,
143 | 0xf9,0xe5,0x97,0x39,0x72,0xe4,0x08,0xd1,0x68,0x94,0x85,0x85,0x05,0x14,0x45,0x61,
144 | 0x76,0x76,0x96,0x58,0x2c,0xc6,0xf4,0xf4,0x34,0x9f,0x7f,0xfe,0xf9,0x65,0x21,0xc4,
145 | 0x91,0x2f,0xbe,0xf8,0x62,0xa2,0x1e,0x01,0x05,0xd0,0x4f,0x9c,0x38,0x31,0xf1,0xe6,
146 | 0x9b,0x6f,0x36,0xe7,0xf3,0xf9,0x32,0x01,0xcb,0xb2,0xd0,0x75,0xbd,0x3c,0x43,0xd5,
147 | 0x33,0xbe,0xf2,0x57,0x54,0xbd,0x4b,0xaa,0xca,0x2d,0xf3,0xec,0xec,0x2c,0xaf,0xbc,
148 | 0xf2,0x0a,0x7b,0xf7,0xee,0xa5,0xb3,0xb3,0x93,0xb9,0xb9,0x39,0x74,0x5d,0x67,0x6a,
149 | 0x6a,0x8a,0x48,0x24,0x42,0x26,0x93,0xe1,0xa3,0x8f,0x3e,0xba,0x65,0x59,0xd6,0x91,
150 | 0x53,0xa7,0x4e,0x5d,0x2c,0x19,0x5b,0x89,0x00,0xd0,0x02,0xb4,0x39,0x8e,0x23,0x1a,
151 | 0x1d,0xc8,0x25,0xd8,0xb6,0x8d,0x69,0x9a,0xe4,0xf3,0xf9,0x15,0x21,0x97,0xcb,0x91,
152 | 0xcd,0x66,0x97,0x85,0x4c,0x26,0x43,0x3a,0x9d,0x26,0x93,0xc9,0x90,0xcb,0xe5,0x08,
153 | 0x04,0x02,0xbc,0xf4,0xd2,0x4b,0x8c,0x8c,0x8c,0x30,0x3c,0x3c,0x5c,0xde,0x7f,0xb5,
154 | 0xb6,0xb6,0x92,0x4a,0xa5,0x68,0x6d,0x6d,0xe5,0xe4,0xc9,0x93,0xed,0x9a,0xa6,0xfd,
155 | 0xe6,0xd8,0xb1,0x63,0x81,0x6a,0x02,0xde,0x25,0x02,0x21,0xa0,0x49,0x4a,0x69,0x43,
156 | 0x71,0x1f,0xd4,0xdc,0xdc,0x4c,0x24,0x12,0x21,0x1a,0x8d,0x12,0x08,0x04,0x08,0x87,
157 | 0xc3,0x84,0xc3,0x61,0x42,0xa1,0x10,0xc1,0x60,0x10,0xbf,0xdf,0x8f,0xc7,0xe3,0x41,
158 | 0xd3,0x34,0x54,0x55,0x45,0x51,0x94,0x65,0x2a,0xd8,0xb6,0x8d,0x65,0x59,0x98,0xa6,
159 | 0x89,0x61,0x18,0x65,0x42,0x95,0x21,0x9f,0xcf,0x53,0x28,0x14,0x50,0x55,0x95,0x93,
160 | 0x27,0x4f,0x92,0xc9,0x64,0x18,0x1c,0x1c,0x24,0x12,0x89,0x60,0x9a,0x26,0x9b,0x36,
161 | 0x6d,0x62,0xdb,0xb6,0x6d,0xec,0xd9,0xb3,0x87,0xc3,0x87,0x0f,0xb7,0x9b,0xa6,0x79,
162 | 0x1c,0x96,0x4f,0xa3,0xb2,0x22,0x96,0xd3,0xd3,0xd3,0x6f,0x3f,0xf7,0xdc,0x73,0x2f,
163 | 0x2a,0x8a,0x52,0x92,0xd8,0x75,0xbc,0x94,0x94,0xaa,0xe5,0x36,0xd5,0x65,0x52,0x4a,
164 | 0x51,0xeb,0xdf,0x43,0x85,0x1b,0xca,0xa5,0xbc,0x04,0x94,0xf9,0xf9,0x79,0xf5,0xe8,
165 | 0xd1,0xa3,0x74,0x74,0x74,0xa0,0xaa,0x2a,0xb6,0x6d,0xd3,0xd4,0xd4,0x84,0x94,0xd2,
166 | 0x0f,0x88,0x4a,0x02,0x26,0x90,0xa1,0x38,0x2e,0xe4,0xe0,0xe0,0xe0,0xdb,0xba,0xae,
167 | 0x7f,0xa0,0xeb,0x7a,0x08,0x10,0x52,0xca,0x7a,0x7b,0x5b,0x01,0xa8,0x52,0x4a,0x65,
168 | 0x29,0xad,0x2c,0xa5,0x95,0xa5,0x6f,0x15,0x40,0xb1,0x6d,0x5b,0x94,0xca,0x2a,0x42,
169 | 0x89,0x49,0x69,0xef,0xe2,0xa8,0xaa,0x2a,0x85,0x10,0x05,0x21,0x84,0x33,0x3d,0x3d,
170 | 0xbd,0x77,0x71,0x71,0xf1,0xdf,0x5f,0x78,0xe1,0x05,0xad,0xad,0xad,0x8d,0x89,0x89,
171 | 0x09,0x4e,0x9f,0x3e,0x9d,0x2a,0x14,0x0a,0xbf,0x06,0x6a,0xf6,0xaa,0x00,0xfc,0x80,
172 | 0x0e,0x78,0x00,0x75,0x29,0xb8,0x9e,0xde,0x2a,0xa0,0x96,0x08,0x2c,0x85,0x12,0xe9,
173 | 0x32,0x99,0x8a,0x50,0x0b,0xb2,0x22,0x14,0x96,0x48,0x15,0xf6,0xee,0xdd,0xbb,0xab,
174 | 0xb9,0xb9,0xf9,0xe7,0x9a,0xa6,0xdd,0xef,0x38,0xce,0x79,0x29,0xe5,0x4b,0xa7,0x4e,
175 | 0x9d,0xba,0x40,0x9d,0x8a,0x6a,0x91,0xba,0x5b,0x54,0xf6,0x76,0xb5,0xf1,0x8d,0x10,
176 | 0x70,0x96,0x82,0xac,0x88,0x57,0xe0,0xff,0x01,0xef,0xfd,0xa6,0x48,0x0e,0xd1,0x91,
177 | 0x3b,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
178 | };
179 |
180 |
--------------------------------------------------------------------------------
/tango/edit-find-advanced.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/edit-find-advanced.png
--------------------------------------------------------------------------------
/tango/edit-find-advanced.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file edit-find-advanced.png */
4 | const unsigned char editfindadvanced[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0d,0xd7,0x00,
9 | 0x00,0x0d,0xd7,0x01,0x42,0x28,0x9b,0x78,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd7,0x0a,0x1b,0x15,0x2c,0x0c,0x24,0x2d,0x08,0x16,0x00,0x00,0x04,0x6d,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xa5,0x95,0x6b,0x6c,0x14,0x55,0x14,0xc7,0x7f,0x77,0x66,
12 | 0x67,0x76,0xb7,0xdb,0xdd,0xb6,0x4b,0x17,0x8a,0xa2,0x6d,0xc2,0xab,0x04,0x9a,0xf0,
13 | 0x2a,0x20,0x52,0x8a,0xd2,0x84,0x00,0x2a,0x12,0x42,0x40,0x48,0x4c,0x0c,0x1f,0x0c,
14 | 0xf8,0x80,0x02,0x11,0x62,0x34,0x84,0xa4,0x22,0x8d,0x04,0x11,0x6d,0xf0,0x81,0x80,
15 | 0x21,0xa2,0x11,0x12,0xa3,0xd1,0x98,0x08,0x34,0x88,0x5a,0xdb,0xd2,0x82,0xb6,0x20,
16 | 0x0a,0x54,0x28,0xd9,0x4a,0xb6,0x0f,0x76,0xd9,0x6e,0xb7,0x3b,0xbb,0x33,0x73,0xfd,
17 | 0xd0,0x07,0xc5,0xb6,0x1a,0xe3,0x49,0xee,0xcd,0xcd,0xfd,0xf0,0x3b,0xff,0xf3,0xcf,
18 | 0x39,0xf7,0xc2,0x10,0xb1,0xb0,0xf4,0xb8,0x59,0xb2,0xf9,0x84,0xe4,0x7f,0x84,0xe8,
19 | 0x3b,0x1c,0x78,0xaf,0xe2,0x4a,0x57,0x57,0x6c,0x5c,0xca,0x12,0xe6,0xc9,0x96,0x3c,
20 | 0x4d,0x51,0x14,0xe6,0x8d,0x6c,0xb6,0xbd,0x4e,0x0b,0x29,0x25,0xc0,0x50,0x89,0x84,
21 | 0x10,0xe2,0x9b,0x2d,0xa5,0x2f,0x3d,0x36,0x6c,0x86,0xf2,0x37,0x76,0xd9,0x52,0x4a,
22 | 0x79,0xab,0x23,0x26,0x1f,0xdd,0xf4,0x99,0x2c,0xd9,0x7c,0x42,0x5e,0x0b,0x86,0xa5,
23 | 0x6d,0xdb,0xc3,0x2e,0x29,0xa5,0xdc,0xb3,0xb7,0xdc,0x1a,0x8a,0xe7,0x18,0x70,0x96,
24 | 0x80,0x48,0xc4,0x63,0x28,0x8a,0x02,0x40,0xb4,0x33,0x4a,0x34,0x3a,0x7c,0xb9,0x3e,
25 | 0x5f,0xc6,0x70,0x95,0xdc,0x05,0xc7,0x4d,0x07,0x91,0x98,0x81,0xdb,0xd9,0x73,0x75,
26 | 0x27,0x96,0x00,0x09,0xbf,0xdd,0x8c,0xe0,0x4b,0xd3,0x50,0x14,0x41,0x38,0x66,0x30,
27 | 0xc2,0xe7,0x62,0x64,0xa6,0xbb,0xcf,0x9e,0x61,0xc3,0xb1,0xb0,0xf4,0xb8,0x57,0x11,
28 | 0x62,0x5f,0x55,0x1b,0x4a,0xd5,0x8e,0xaf,0x40,0x40,0x34,0x66,0x20,0x25,0x6c,0x3b,
29 | 0x78,0x6e,0x90,0x9c,0x0d,0x25,0xd9,0xe4,0x64,0x6a,0xe4,0xe7,0x4f,0xfa,0x67,0xb0,
30 | 0x94,0x74,0xa4,0x6c,0xa9,0xf5,0xb9,0x21,0x7b,0x77,0x21,0xc0,0x30,0x6d,0x90,0x77,
31 | 0x6b,0x75,0xa8,0x82,0x89,0xe3,0xc7,0x92,0xe3,0xff,0x77,0xc5,0xfd,0x5d,0x51,0x56,
32 | 0xfe,0xba,0xb5,0xf2,0xa9,0x67,0x95,0xe6,0x3f,0xdb,0xd8,0xfd,0x69,0x23,0x86,0x69,
33 | 0xb1,0xbe,0x24,0x80,0xdf,0xe3,0x20,0xda,0x6d,0x52,0xdf,0x70,0x99,0x48,0x7b,0x10,
34 | 0x9d,0x04,0x2a,0x49,0x1c,0x0e,0x07,0x45,0x45,0xc5,0x34,0x35,0x5d,0xb5,0xb6,0x6e,
35 | 0xde,0xe6,0x18,0xd6,0x63,0x5d,0x85,0x09,0x0f,0x64,0x61,0x9b,0xdd,0x08,0xd1,0xa3,
36 | 0xe6,0xa1,0xe9,0x93,0x88,0x45,0x42,0x7c,0x7b,0xe4,0x30,0x6b,0xd7,0xac,0x25,0x23,
37 | 0x63,0x11,0xc9,0x94,0x85,0x25,0x41,0x57,0x05,0x9d,0xd1,0x30,0x95,0x95,0xa7,0xd5,
38 | 0x97,0x5f,0xd9,0x3e,0x77,0x57,0xd9,0xee,0xaa,0x81,0x60,0xa5,0xbf,0x25,0x7a,0x4b,
39 | 0xb3,0xac,0x1e,0x1b,0x00,0x7e,0xbe,0x50,0xcf,0xa1,0xc3,0x07,0xd9,0xb0,0xfe,0x79,
40 | 0xea,0x9a,0xba,0x39,0x50,0x19,0xe2,0x68,0x5d,0x9c,0x8f,0x6a,0xbb,0x78,0xf7,0x4c,
41 | 0x2b,0x8d,0xc1,0x24,0xa5,0x1b,0xb7,0x10,0x8b,0x75,0x7e,0x5f,0xf6,0xda,0xce,0x69,
42 | 0x43,0x2a,0x16,0xbd,0x34,0xcb,0xb6,0xfb,0xfd,0x39,0x7d,0xe6,0x0c,0x9b,0xd6,0xbf,
43 | 0xc8,0x17,0x75,0xad,0xdc,0x4a,0xf8,0x58,0xbd,0x60,0x0c,0xf7,0xf9,0xdd,0x98,0xb6,
44 | 0xcd,0xe5,0x60,0x94,0xd3,0x0d,0xad,0x44,0x6a,0x5a,0x78,0xe1,0xb9,0x4d,0xca,0xbe,
45 | 0xfd,0x7b,0xcf,0x02,0xde,0x41,0x8a,0x6d,0xdb,0xee,0x57,0xae,0x08,0x81,0x4b,0x53,
46 | 0x99,0x3e,0x75,0x1a,0x3f,0x5c,0x6a,0xe5,0x56,0xc2,0xc5,0x33,0xc5,0x63,0xb8,0xdf,
47 | 0xef,0xc2,0xa5,0x29,0xa8,0x42,0x21,0x37,0x90,0xce,0xbc,0x49,0x01,0x82,0xf1,0x34,
48 | 0x1a,0xae,0x87,0x93,0x73,0x66,0xcf,0x71,0xec,0xd8,0xf9,0xea,0xc6,0x41,0xe0,0xbe,
49 | 0xa1,0x48,0x77,0x6b,0x6c,0x5f,0x5d,0x40,0xae,0x71,0x96,0x19,0xd3,0xa6,0x52,0xdd,
50 | 0x9c,0xe2,0xe1,0x89,0x01,0x74,0x5d,0xc3,0xb4,0x21,0x91,0xb2,0xb0,0xa5,0x24,0x65,
51 | 0x5a,0x04,0xdb,0xbb,0x51,0xed,0x24,0x17,0x43,0xe8,0xb3,0x0a,0x67,0xbb,0x5a,0x5b,
52 | 0x43,0xfb,0x06,0x81,0xfb,0xd4,0x66,0x7a,0x34,0xa6,0xe4,0xf9,0xf1,0x68,0x26,0x2e,
53 | 0xa7,0x86,0xc7,0x97,0xc1,0x08,0xaf,0x86,0x91,0x32,0x31,0x52,0x26,0x49,0xd3,0xa6,
54 | 0x3b,0x69,0xd1,0x1e,0x89,0x93,0x3f,0xc6,0x8b,0xd3,0x68,0x21,0x92,0x72,0xe0,0x76,
55 | 0xa7,0xa1,0x69,0x9a,0x1c,0xe4,0xb1,0x94,0xf2,0x9e,0xde,0x14,0x42,0xe0,0xd2,0x35,
56 | 0x34,0x45,0xd2,0x16,0x49,0xa0,0xab,0x3d,0xce,0x1b,0x86,0x49,0x5b,0xd4,0x40,0x73,
57 | 0x80,0xa2,0xaa,0x08,0x6c,0x2c,0x33,0x65,0x19,0x86,0xa1,0xda,0xb6,0x9d,0x1a,0xf2,
58 | 0xad,0xb0,0x2c,0xab,0x37,0x01,0x4c,0x9e,0x3c,0x85,0x96,0x96,0x16,0x32,0x75,0x9d,
59 | 0x6b,0x2d,0x61,0x40,0xe2,0xd6,0x05,0xe9,0x2e,0x07,0xc9,0x94,0x85,0x47,0x77,0x20,
60 | 0x55,0xc1,0xed,0xb8,0x20,0x37,0xa0,0x88,0xdb,0xb7,0x3b,0x8c,0x9c,0x9c,0xd1,0xd5,
61 | 0x43,0x5a,0xd1,0x03,0xee,0x51,0x5f,0x30,0xa5,0x80,0xda,0xba,0x1a,0x96,0xce,0x18,
62 | 0x45,0x5b,0x77,0xcf,0x14,0x4a,0x29,0xb0,0x6d,0x49,0x22,0x65,0x61,0xda,0x92,0x48,
63 | 0x2c,0x81,0x2b,0x30,0x96,0xc5,0x53,0x03,0xca,0xa1,0x23,0x1f,0x46,0x23,0x91,0x70,
64 | 0xe5,0x90,0x60,0xa7,0xd3,0x49,0x76,0x76,0x36,0x81,0x40,0x80,0x39,0xb3,0xe7,0x12,
65 | 0x0a,0x85,0x68,0xfa,0xb5,0x9e,0x45,0x93,0x7d,0x9c,0xbf,0x11,0xa5,0xaa,0xf1,0x06,
66 | 0xb6,0x50,0xe9,0x34,0x24,0x5f,0xff,0xf8,0x3b,0xa7,0x1a,0xdb,0x58,0x51,0xe0,0xe0,
67 | 0xbb,0x53,0x5f,0xca,0xdc,0x07,0xf3,0x3c,0xb1,0xce,0xae,0xad,0x2b,0x57,0xad,0x18,
68 | 0x7d,0xcf,0x48,0xef,0xd9,0x5b,0xfe,0xb9,0x65,0x59,0x4f,0x0e,0x1c,0x16,0x80,0x60,
69 | 0x30,0xc8,0xb8,0xb1,0x13,0x58,0xba,0x7c,0x0d,0x27,0x7f,0x09,0x71,0xb3,0x23,0x49,
70 | 0x52,0x2a,0x8c,0x0f,0x68,0xcc,0xcf,0xcf,0xa2,0xe2,0xcd,0x32,0xfb,0x89,0xc7,0x97,
71 | 0x29,0xf5,0x17,0xea,0x09,0x87,0x6f,0xdb,0xd1,0x68,0xb4,0x5d,0xd7,0xf4,0x45,0x62,
72 | 0x88,0x11,0xf7,0xf4,0x36,0xba,0x17,0x48,0x2f,0x5e,0x30,0xbf,0x60,0x62,0xfe,0x84,
73 | 0xf2,0x6c,0x7f,0x76,0x32,0x33,0xcb,0xaf,0x15,0xce,0x2c,0xf4,0xe4,0xe5,0xe5,0xa5,
74 | 0x1d,0xfb,0xe4,0xd8,0xf5,0xa6,0x3f,0xae,0xea,0xb1,0x68,0x7c,0xd7,0xa8,0x9c,0x40,
75 | 0xc5,0x92,0xc5,0x4b,0x68,0xb8,0xd8,0xc8,0xfc,0x79,0xc5,0xf6,0xc7,0xc7,0x8e,0x2a,
76 | 0xea,0xdf,0xc0,0x36,0x90,0x04,0xe2,0x40,0x18,0x68,0x6f,0xbe,0xd1,0x7c,0xa9,0xbe,
77 | 0xee,0xfc,0xdb,0xc5,0x8f,0x14,0xdd,0x51,0x54,0x91,0x59,0x53,0x5b,0x9d,0xfb,0x53,
78 | 0x75,0x95,0x96,0x91,0xe1,0xad,0xf1,0xfb,0xb3,0x2a,0xf6,0xbf,0xf5,0xce,0x07,0x85,
79 | 0x33,0x67,0xe9,0x57,0xaf,0x5d,0x29,0x5a,0xbe,0x6c,0x39,0x5e,0xaf,0x4f,0x9c,0xab,
80 | 0xab,0x45,0xfc,0x87,0xff,0x51,0xe9,0x5d,0x62,0x80,0x85,0xa2,0xef,0x07,0x59,0xb7,
81 | 0x6e,0xdd,0xd3,0xee,0x34,0xe7,0xfb,0xbd,0x77,0xab,0xfe,0x02,0x94,0x32,0x16,0x2f,
82 | 0xf1,0x48,0xc8,0xea,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
83 | };
84 |
85 |
--------------------------------------------------------------------------------
/tango/edit-find-advanced.xcf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/edit-find-advanced.xcf
--------------------------------------------------------------------------------
/tango/edit-find.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/edit-find.png
--------------------------------------------------------------------------------
/tango/edit-find.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file edit-find.png */
4 | const unsigned char editfind[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0d,0xd7,0x00,
9 | 0x00,0x0d,0xd7,0x01,0x42,0x28,0x9b,0x78,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd5,0x0b,0x05,0x0f,0x2e,0x39,0x91,0x77,0x20,0x06,0x00,0x00,0x03,0xcf,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xb5,0x55,0x6d,0x4c,0x9b,0x55,0x14,0x7e,0xee,0xfb,0xd5,
12 | 0x96,0xae,0x2d,0xd4,0x76,0x30,0xb3,0x01,0xc9,0x26,0x2d,0x61,0x9d,0x46,0x60,0x33,
13 | 0x6c,0x7c,0x98,0xa8,0x0b,0xcc,0x39,0xc9,0x62,0x66,0xb6,0xc4,0x1f,0xf2,0x4b,0x89,
14 | 0xce,0x65,0xc6,0x18,0x5d,0xb2,0x2c,0x32,0x22,0x71,0x22,0xa2,0xc4,0xa8,0xd1,0x2d,
15 | 0x31,0xe2,0x4f,0xa3,0x89,0x2e,0xc6,0x41,0xdc,0x54,0x46,0xf9,0x5a,0x1c,0x93,0x22,
16 | 0xdb,0x90,0x92,0x76,0xa6,0xc0,0xda,0xf2,0x52,0x4a,0xdf,0xf7,0xed,0x7b,0xaf,0x3f,
17 | 0x28,0xae,0xb0,0x32,0xc1,0xc4,0x9b,0xdc,0xe4,0xe4,0xdc,0x93,0xe7,0x3e,0xe7,0xb9,
18 | 0xe7,0x9c,0x0b,0xfc,0x4f,0x8b,0x2c,0x19,0x1f,0x7d,0xdc,0x31,0x36,0x3f,0x1f,0xdb,
19 | 0x06,0x80,0xa5,0x1f,0x13,0x02,0x30,0xc6,0xb0,0xdc,0x7f,0x27,0x80,0x10,0x72,0xfe,
20 | 0xf8,0xb1,0xd7,0x9e,0x5c,0xf5,0x86,0x96,0x77,0x9a,0x29,0x63,0x8c,0x51,0x4a,0xd7,
21 | 0xbc,0x19,0x63,0xec,0x4c,0x6b,0x8b,0x9e,0x09,0x4f,0x48,0xb3,0x19,0x00,0x22,0xcb,
22 | 0xb3,0x6b,0x4e,0xd7,0x6a,0xb5,0xad,0x96,0x09,0xb8,0xb4,0x9c,0xd6,0xa5,0x61,0x4a,
23 | 0x9e,0x55,0x97,0x90,0x29,0xd0,0xe7,0xf3,0xfd,0x2b,0xa8,0xdb,0x5d,0xbc,0x36,0xe0,
24 | 0x74,0xc6,0x6e,0xb7,0xfb,0x9e,0x2c,0x19,0x63,0xff,0x8d,0xf1,0xe8,0xe8,0xe8,0x5d,
25 | 0x81,0xde,0x7e,0x2f,0x26,0xfd,0x13,0xa0,0x94,0x82,0x32,0x0a,0x41,0x10,0x50,0x59,
26 | 0x59,0xbd,0x3e,0xc6,0xc5,0xc5,0x77,0xd2,0xf4,0x4f,0xfa,0x71,0xf6,0xdc,0x59,0x1c,
27 | 0x39,0x7c,0x04,0x75,0xb5,0xfb,0xa1,0x6a,0x3a,0x74,0x06,0x48,0x3c,0xc1,0x9c,0x1c,
28 | 0x41,0x77,0x77,0x17,0xff,0xc6,0x89,0xd7,0x2b,0x9a,0x9b,0xde,0xee,0x59,0x13,0x63,
29 | 0xc6,0x18,0x66,0x67,0xa3,0x38,0xff,0xc3,0xf7,0x68,0x7c,0xf1,0x28,0xba,0x86,0x6e,
30 | 0x61,0x2c,0x1a,0x82,0x64,0xca,0x82,0xa6,0x33,0xe8,0x4a,0x1c,0x3b,0x36,0x32,0x1c,
31 | 0x3b,0x7a,0x1c,0x6d,0xed,0xef,0xfe,0xdc,0x74,0xfa,0x54,0xd9,0x89,0x37,0x4f,0x5e,
32 | 0xb9,0x27,0x63,0x97,0xcb,0x05,0xc6,0x80,0xb7,0x4e,0x9f,0x42,0xe3,0x0b,0x2f,0xe3,
33 | 0x9b,0x81,0x29,0xfc,0x95,0xb0,0xe2,0xd9,0x9a,0xcd,0xb8,0xdf,0x6e,0x42,0x92,0x52,
34 | 0xf8,0x02,0x32,0xba,0xae,0x4e,0x21,0xea,0x0d,0xe2,0xa5,0xc6,0x57,0xb8,0xb6,0xf6,
35 | 0xd6,0x4b,0x00,0x2c,0x4b,0x18,0xfc,0x92,0xf1,0xf8,0x13,0x8f,0x9d,0xdc,0x5d,0xb1,
36 | 0x87,0x24,0x12,0x0b,0x18,0x19,0xf1,0xa1,0xaf,0xdf,0x8b,0x2d,0x5b,0xf2,0x31,0x1e,
37 | 0x16,0x30,0x1e,0x33,0xe1,0xf9,0x9a,0x7c,0x6c,0xb4,0x19,0x61,0x14,0x79,0xe8,0x14,
38 | 0x30,0x19,0x04,0x98,0x8d,0x02,0x86,0x6f,0xa9,0x30,0xd0,0xb8,0x9a,0x9b,0x63,0x24,
39 | 0x3b,0x1e,0xf4,0xc4,0x2e,0xfe,0x74,0xc9,0xbb,0xac,0x8e,0xd3,0x25,0x71,0xb9,0x8a,
40 | 0xd0,0x73,0xf9,0x17,0x94,0x3e,0x5c,0x8a,0x5e,0xbf,0x86,0xdd,0x2e,0x27,0x44,0x51,
41 | 0x40,0x92,0x02,0x09,0x4d,0x07,0x65,0x0c,0x5a,0x52,0x47,0x60,0x66,0x01,0x3c,0x55,
42 | 0x71,0x2d,0x04,0x69,0x67,0xf9,0x2e,0xe3,0xd4,0x54,0xa8,0xed,0xae,0x06,0x59,0xae,
43 | 0x35,0x81,0x28,0x8a,0xa0,0xe0,0x60,0xb6,0xda,0x70,0x9f,0x45,0x84,0xa2,0x25,0xa1,
44 | 0x68,0x49,0xa8,0x49,0x8a,0x05,0x55,0xc7,0x4c,0x34,0x0e,0xf7,0x66,0x0b,0x0c,0x4a,
45 | 0x10,0x51,0x4d,0x80,0xc9,0x94,0x05,0x51,0x14,0x59,0xc6,0xc7,0xa3,0x94,0xa6,0x6a,
46 | 0x74,0xd1,0x67,0x10,0x05,0x88,0x1c,0xc3,0x74,0x34,0x01,0x89,0x5f,0x7c,0x03,0x45,
47 | 0x49,0x62,0x5a,0x56,0x20,0x0a,0x00,0xc7,0xf3,0x20,0xa0,0xd0,0x93,0x9a,0xae,0x28,
48 | 0x0a,0x4f,0x29,0xd5,0x32,0xce,0x0a,0x5d,0xd7,0xff,0x01,0x2e,0x29,0xd9,0x8e,0x60,
49 | 0x30,0x88,0x6c,0x49,0xc2,0x8d,0x60,0x04,0x00,0x83,0x49,0x22,0xd8,0x60,0x14,0xa0,
50 | 0x6a,0x3a,0xcc,0x92,0x00,0xc6,0x13,0x84,0xe3,0x04,0x05,0x4e,0x8e,0x84,0xc3,0xb7,
51 | 0x95,0xbc,0xbc,0x4d,0xbd,0x19,0xa5,0x58,0x04,0x5e,0x64,0xef,0xd9,0xee,0x41,0xdf,
52 | 0x80,0x17,0xfb,0x4a,0x73,0x31,0xbd,0x00,0x28,0x49,0x0a,0xc6,0x08,0x28,0x65,0x48,
53 | 0x68,0x3a,0x92,0x94,0x21,0x1a,0x4b,0xc0,0xe8,0xdc,0x8a,0xda,0x87,0x9c,0xdc,0xe7,
54 | 0xe7,0x3e,0x93,0xa3,0xd1,0x48,0xf7,0x4a,0x60,0x02,0x00,0x06,0x83,0x01,0x0e,0x87,
55 | 0x03,0x4e,0xa7,0x13,0x8f,0xec,0xaa,0x40,0x28,0x14,0xc2,0xcd,0x91,0x41,0xec,0x2d,
56 | 0xb1,0x62,0x68,0x42,0x46,0xcf,0xf0,0x04,0x28,0xe1,0x31,0xa7,0x30,0x7c,0xf7,0xeb,
57 | 0x1f,0xb8,0x30,0x3c,0x8d,0x83,0x1e,0x01,0x17,0x2f,0x7c,0xcb,0x0a,0xf2,0x0b,0xcd,
58 | 0xb1,0xb9,0xf9,0x57,0x9f,0x39,0x74,0x70,0xd3,0xb2,0x41,0x7f,0xa6,0xb5,0xe5,0x6b,
59 | 0x5d,0xd7,0x9f,0x5e,0xd9,0x2c,0x81,0x40,0x00,0xdb,0xb6,0x16,0x61,0x5f,0xfd,0x61,
60 | 0xfc,0xf8,0x5b,0x08,0x93,0xb7,0x55,0xa8,0x8c,0xc3,0x03,0x4e,0x11,0x55,0xee,0x1c,
61 | 0x74,0xbc,0xd7,0x44,0x9f,0xda,0x7f,0x80,0x1b,0xbc,0x32,0x88,0x48,0x24,0x4c,0x65,
62 | 0x59,0x9e,0x91,0x44,0x69,0x2f,0xc9,0xd0,0xe2,0xe6,0x54,0xa1,0x5b,0x00,0x6c,0xa8,
63 | 0xae,0xa9,0xf2,0xb8,0xdc,0x45,0x2d,0x0e,0xbb,0x43,0xcd,0xce,0xb1,0x8b,0xe5,0x65,
64 | 0xe5,0xe6,0xc2,0xc2,0xc2,0xac,0xce,0xaf,0x3a,0xff,0xbc,0x39,0x7e,0x5d,0x8a,0xc9,
65 | 0xf1,0xe6,0xdc,0x3c,0x67,0x47,0x5d,0x6d,0x1d,0xae,0x5e,0x1b,0x46,0xd5,0x9e,0x6a,
66 | 0xfa,0x65,0xe7,0x17,0x1c,0xbf,0x02,0x98,0x02,0x50,0x01,0xc4,0x01,0x44,0x00,0xcc,
67 | 0xf8,0x27,0xfc,0xbf,0x0f,0x0e,0x0c,0x7d,0x50,0xfd,0x68,0xe5,0x2c,0xc7,0x93,0x6c,
68 | 0x6f,0x5f,0x6f,0xc1,0xe5,0xde,0x1e,0xd1,0x66,0xb3,0x78,0xed,0xf6,0x9c,0x8e,0xf6,
69 | 0xf7,0x3f,0xfc,0xb4,0xbc,0x6c,0xa7,0x74,0xfd,0xc6,0x58,0x65,0xfd,0x81,0x7a,0x58,
70 | 0x2c,0x56,0xd2,0x3f,0xd0,0x87,0xf5,0x4c,0x77,0x2e,0xb5,0x49,0x9a,0x84,0x64,0xe9,
71 | 0x07,0x69,0x68,0x68,0x78,0xce,0x94,0x65,0xf8,0x24,0xe5,0x3b,0xf4,0x37,0x8c,0xb4,
72 | 0xeb,0x4b,0x26,0xe8,0x75,0x28,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,
73 | 0x60,0x82
74 | };
75 |
76 |
--------------------------------------------------------------------------------
/tango/edit-redo-original.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/edit-redo-original.png
--------------------------------------------------------------------------------
/tango/edit-redo-original.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file edit-redo-original.png */
4 | const unsigned char editredooriginal[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0d,0xd7,0x00,
9 | 0x00,0x0d,0xd7,0x01,0x42,0x28,0x9b,0x78,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd6,0x07,0x1a,0x0a,0x13,0x23,0x4b,0x28,0x8b,0x4f,0x00,0x00,0x02,0xb7,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xad,0x94,0x4d,0x6b,0x13,0x51,0x14,0x86,0xdf,0x73,0xe7,
12 | 0x23,0xad,0xa9,0xad,0xfd,0x34,0xd6,0x8a,0x8d,0x22,0xa2,0x54,0x0b,0x56,0x85,0x82,
13 | 0x58,0xa9,0x28,0x6d,0x95,0x2c,0x04,0x11,0xc1,0x95,0xc8,0xfc,0x06,0x97,0xfe,0x01,
14 | 0x17,0xea,0x2e,0x1b,0x17,0xfa,0x0b,0x66,0xe1,0x47,0xa1,0xa0,0xa0,0x14,0x17,0xc5,
15 | 0xb6,0x0b,0xb1,0xd4,0x16,0x6b,0x69,0x9a,0x26,0x98,0x89,0xcd,0x47,0x33,0x37,0x33,
16 | 0xf7,0xba,0x49,0xc2,0x64,0x98,0xa4,0xb5,0x78,0xe0,0x30,0x70,0xcf,0xe1,0x39,0xef,
17 | 0xbc,0x73,0xe6,0x02,0xff,0x18,0xb1,0xb8,0x2e,0x63,0x71,0xfd,0xe0,0x6e,0x7d,0x0c,
18 | 0xfb,0x8b,0xed,0x58,0x5c,0xef,0xfc,0xef,0xe0,0x2b,0x13,0xe7,0x01,0x20,0xd3,0x0c,
19 | 0xbe,0x5f,0xc5,0xbb,0xc2,0x69,0x17,0x3f,0xc3,0x00,0x1e,0x02,0x78,0xee,0x87,0x6e,
20 | 0x97,0x53,0x68,0xd7,0xfa,0xf0,0xe9,0xdd,0x22,0x00,0x74,0x99,0x06,0xb7,0xf6,0x04,
21 | 0x8e,0xc5,0xf5,0x49,0x00,0x6f,0x26,0xf5,0xfe,0x45,0xf7,0xf2,0xc0,0xd9,0x62,0x5b,
22 | 0x49,0xad,0xd6,0xca,0x65,0x07,0x79,0x9e,0x81,0x9d,0x13,0x88,0x44,0x22,0x81,0x70,
23 | 0x6a,0x00,0xbd,0x09,0xe0,0xfd,0xed,0xf1,0x51,0x14,0x5a,0x5d,0xfc,0xc9,0x5a,0xe0,
24 | 0x72,0x07,0x8c,0x11,0x48,0x25,0x70,0xdb,0x06,0x53,0x09,0x56,0xb2,0x00,0x62,0x40,
25 | 0x34,0x1a,0xad,0xc2,0xc3,0xa6,0xc1,0x8b,0x81,0xe0,0x58,0x5c,0x3f,0x01,0x60,0xe5,
26 | 0xfa,0xad,0x51,0x94,0x65,0x11,0x69,0x2b,0x59,0x93,0x20,0x1c,0x09,0xa6,0x10,0xa4,
27 | 0x66,0xc3,0xce,0x49,0xd8,0x79,0x01,0xaa,0x7c,0x25,0x0f,0x5c,0x33,0x0d,0xee,0xa8,
28 | 0x01,0x82,0x5f,0x5c,0xbd,0x74,0xda,0x26,0x50,0x28,0x65,0x6d,0x42,0xba,0xf5,0x45,
29 | 0x97,0x6c,0xa8,0x0a,0xc1,0xb1,0x45,0xed,0xcc,0x03,0xed,0x32,0x0d,0xee,0x00,0x40,
30 | 0x10,0x78,0x4a,0xf6,0x86,0x90,0xcc,0xaf,0x42,0x51,0x18,0xba,0x3b,0x0f,0x03,0x60,
31 | 0xd0,0x28,0x04,0x59,0x69,0x90,0x70,0xb1,0x2d,0x96,0xa0,0x87,0x09,0x03,0x91,0xc1,
32 | 0x40,0x8f,0x83,0xc0,0xd0,0xa8,0x15,0x0a,0xa9,0xe8,0xe8,0x69,0x87,0xb6,0x55,0xc4,
33 | 0xcc,0xec,0x72,0x5d,0xfd,0xda,0xd4,0x45,0xa8,0x2d,0x68,0x08,0x6d,0xb2,0xc7,0x84,
34 | 0xb6,0x8e,0x56,0x6c,0xa5,0x13,0x72,0x66,0x76,0x39,0x0b,0xe0,0x8c,0x69,0x70,0x32,
35 | 0x0d,0x4e,0x00,0xa0,0x90,0xd6,0x14,0xda,0x10,0xac,0x40,0x45,0x44,0x19,0x92,0x4b,
36 | 0x9f,0xb3,0x2e,0x80,0xbb,0xa6,0xc1,0xbf,0x7b,0xeb,0xb6,0x5b,0xa8,0x42,0x8f,0x05,
37 | 0x41,0x1b,0x5a,0x61,0xcb,0x9c,0x5b,0x92,0xaa,0x03,0x20,0x74,0x2a,0xc1,0xbf,0xf9,
38 | 0xb7,0xc7,0x03,0xdd,0xd8,0xeb,0x2f,0x4d,0x00,0x56,0x8f,0xce,0xbb,0xb9,0x3f,0xa5,
39 | 0x34,0x00,0xe0,0xe9,0x13,0x24,0x2b,0x7d,0x54,0x1d,0xc0,0x0b,0xf2,0xb8,0x69,0xf0,
40 | 0x84,0xf7,0xac,0x99,0x62,0x02,0x40,0x52,0xca,0x2f,0xbf,0xad,0x85,0x09,0xc2,0xb0,
41 | 0xa8,0x39,0xe3,0x09,0xd3,0xe0,0xba,0x4f,0x94,0xf4,0x65,0x5d,0xb1,0x3a,0x99,0xe5,
42 | 0x37,0xf1,0x78,0x7a,0x47,0xe9,0x74,0x5c,0x2e,0xd5,0x52,0x28,0x3b,0xf9,0x4c,0xbb,
43 | 0x5f,0x81,0xab,0xbe,0xd4,0x2a,0x4f,0xc5,0xff,0x46,0x5e,0x35,0x54,0x29,0xb2,0x9f,
44 | 0x1f,0x44,0xf1,0xe4,0x0d,0x96,0x4a,0xac,0x65,0x62,0x17,0xc6,0xa3,0x22,0xb9,0x91,
45 | 0x19,0xb3,0x56,0x65,0xbc,0x98,0x06,0x55,0xfa,0xbd,0xc9,0x3c,0x50,0x78,0x15,0x2b,
46 | 0x3e,0xc5,0x04,0x80,0x96,0xdf,0x8a,0xaf,0x83,0x63,0x6c,0x2e,0x95,0xb4,0x1e,0xf4,
47 | 0x77,0x1f,0x58,0x6f,0x1f,0x72,0xef,0x1d,0x19,0x61,0x3f,0xd6,0x3e,0x8a,0x84,0x07,
48 | 0x56,0x05,0x2a,0x15,0xa0,0xf0,0xda,0xa1,0xf8,0x2e,0xa3,0x1a,0x7c,0x65,0x5a,0xac,
49 | 0x1c,0x8a,0xd2,0x4b,0xae,0x3a,0x1a,0x01,0x44,0x8c,0x72,0x91,0x61,0x66,0x87,0x7b,
50 | 0xc9,0xc9,0xfe,0x92,0xb6,0x70,0x6a,0x10,0x11,0x00,0x26,0xf2,0x81,0x99,0xc7,0x96,
51 | 0x9a,0xef,0x23,0x8f,0x94,0xee,0xbe,0x73,0xec,0x0e,0x31,0xf4,0x49,0x17,0x5b,0x0b,
52 | 0xaf,0xdc,0xd7,0xc2,0x95,0xa2,0x47,0x28,0x22,0xd2,0x4f,0x6a,0xa8,0x45,0x8a,0x8d,
53 | 0x75,0xb9,0x33,0x3f,0xe7,0x3a,0xd5,0x21,0x14,0xb0,0x6e,0x41,0xd9,0xe8,0x8a,0xf5,
54 | 0x6e,0x43,0x9d,0x15,0x7f,0x01,0xf2,0x1c,0x3a,0x00,0x9b,0x63,0x01,0x1f,0x00,0x00,
55 | 0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
56 | };
57 |
58 |
--------------------------------------------------------------------------------
/tango/edit-redo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/edit-redo.png
--------------------------------------------------------------------------------
/tango/edit-redo.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file edit-redo.png */
4 | const unsigned char editredo[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0d,0xd7,0x00,
9 | 0x00,0x0d,0xd7,0x01,0x42,0x28,0x9b,0x78,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd7,0x0a,0x1b,0x15,0x35,0x07,0x28,0xff,0x78,0x86,0x00,0x00,0x02,0x0d,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xc5,0xd4,0xcd,0x6b,0x13,0x41,0x18,0xc7,0xf1,0xef,0xec,
12 | 0x5b,0x0c,0xa9,0x2d,0x89,0x9a,0x46,0xed,0xc1,0x78,0x11,0x8a,0x78,0xb2,0x42,0x50,
13 | 0xc4,0x17,0x10,0x13,0x35,0x37,0x2f,0x1e,0x3d,0xac,0x78,0xf2,0x6f,0x50,0xf0,0x0f,
14 | 0xa8,0x3d,0x99,0x3f,0x63,0x2b,0xe2,0xeb,0x4d,0x29,0xe2,0x45,0x7b,0xb1,0x41,0xda,
15 | 0x9b,0x9a,0x36,0xd8,0xa4,0x79,0x6b,0x76,0xb3,0xbb,0xe3,0xa5,0x09,0x6d,0xd9,0xcd,
16 | 0xb6,0x21,0xe0,0xef,0x38,0xcf,0xcc,0x87,0x87,0x67,0x98,0x81,0x43,0xa6,0x58,0x32,
17 | 0x64,0xb1,0x64,0x1c,0x8d,0xda,0xa7,0x30,0x5a,0x1a,0xc5,0x92,0x91,0x1c,0x3b,0x7c,
18 | 0xe5,0xf6,0x05,0x80,0xcd,0x61,0xf8,0xa8,0x1d,0x47,0xe2,0x22,0x62,0x9e,0x09,0xe0,
19 | 0x21,0xf0,0x62,0x3f,0xda,0xe8,0x6d,0x30,0xa9,0xa7,0xf9,0xf4,0x66,0x19,0x20,0x65,
20 | 0x99,0x4e,0xed,0x40,0x70,0xb1,0x64,0xe4,0x81,0xd7,0x79,0xe3,0xd4,0xb2,0x77,0x69,
21 | 0x66,0xb6,0x33,0xd1,0xd5,0xfa,0xb5,0x5e,0xcf,0xa5,0xe5,0x6c,0x62,0x37,0x7d,0x32,
22 | 0x99,0x4c,0x20,0x2e,0x42,0xd0,0x5b,0xc0,0xdb,0xbb,0x37,0x72,0xb4,0xe3,0x1e,0x5b,
23 | 0xf5,0x1a,0x8e,0xdc,0x46,0x51,0x04,0x42,0x13,0x38,0xb6,0x8d,0xa2,0x09,0x6a,0x95,
24 | 0x36,0x42,0x81,0x6c,0x36,0xdb,0xc7,0x13,0x96,0xe9,0x74,0x02,0xe1,0x62,0xc9,0x38,
25 | 0x0b,0xac,0xde,0xbc,0x93,0xa3,0x27,0x3b,0x54,0x6b,0x95,0x41,0x0b,0xbe,0x2b,0x51,
26 | 0x54,0x81,0xd4,0x6d,0xec,0xa6,0xc4,0x6e,0xf9,0x88,0x9d,0x5b,0xda,0x85,0xeb,0x96,
27 | 0xe9,0xb8,0x5a,0x40,0xc3,0x0b,0x57,0xe7,0xce,0xd9,0x02,0x11,0xdb,0xa8,0xfd,0x41,
28 | 0x7a,0x7b,0x8b,0x9e,0xb0,0xd1,0x54,0x81,0x6b,0xfb,0x83,0xb5,0x5d,0x68,0xca,0x32,
29 | 0x1d,0x17,0x20,0x08,0x2e,0xc8,0x13,0x31,0x2a,0xad,0x35,0x54,0x55,0xe1,0x58,0x72,
30 | 0x1a,0x50,0xd0,0x45,0x0c,0xb9,0xb3,0x41,0xe2,0xd1,0xf0,0xcb,0x18,0x09,0xc1,0x4c,
31 | 0xe6,0x4c,0xe0,0x8c,0x83,0x60,0x74,0x11,0x47,0x15,0x1a,0x53,0xc7,0x27,0xd1,0xd7,
32 | 0x3b,0x7c,0x5c,0xfa,0xb9,0xa7,0x7e,0xad,0x70,0x11,0xed,0x08,0xa1,0x68,0x28,0x0c,
33 | 0x82,0x89,0xa9,0x38,0xeb,0xd5,0xdf,0xb2,0xbc,0x54,0xdf,0x02,0x72,0x96,0xe9,0xac,
34 | 0xf4,0x9f,0xb4,0x2a,0xf4,0x01,0x6a,0x99,0x8e,0x38,0xf0,0x03,0x51,0xd1,0xc8,0xa8,
35 | 0xe7,0x65,0xf9,0x73,0xdd,0x03,0xee,0xf7,0xd1,0x7e,0x6c,0xaf,0x3d,0x14,0x0d,0xed,
36 | 0xd8,0x96,0x4d,0xaf,0x2b,0x35,0x17,0x88,0x59,0xa6,0xf3,0x61,0x7f,0x3d,0x0a,0x0d,
37 | 0xeb,0x78,0xed,0xf4,0x37,0xaf,0xb9,0xd5,0xad,0x86,0x1e,0x8a,0x42,0x03,0x61,0x29,
38 | 0xe5,0x97,0xbf,0xb5,0xef,0x52,0x20,0xfc,0x51,0xd1,0x40,0x78,0xf1,0x51,0xef,0xc1,
39 | 0xbb,0x6d,0x35,0xe9,0x7a,0x8e,0xd4,0xba,0xb1,0x3a,0xe3,0x4e,0xb1,0x64,0xc8,0x67,
40 | 0x2b,0xb3,0xed,0x7b,0x2f,0xf5,0xca,0x28,0xe7,0xa3,0x7e,0x37,0x79,0x32,0x15,0xff,
41 | 0xf1,0xab,0xda,0x69,0xbf,0x7a,0xdc,0x9b,0x3b,0x0c,0xac,0x0e,0x2b,0x96,0x17,0xbd,
42 | 0xa7,0xe9,0xcb,0x7e,0x5a,0x80,0xc8,0x5e,0x57,0xa7,0x57,0xdf,0xfb,0x5f,0xc7,0x3e,
43 | 0x9a,0xfc,0xbc,0xfe,0xa4,0xb0,0xa0,0x3f,0xe7,0x7f,0xe7,0x1f,0xb4,0xb4,0xec,0x15,
44 | 0x26,0xad,0xc4,0x2f,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
45 | };
46 |
47 |
--------------------------------------------------------------------------------
/tango/format-indent-less.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/format-indent-less.png
--------------------------------------------------------------------------------
/tango/format-indent-less.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file format-indent-less.png */
4 | const unsigned char formatindentless[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,
9 | 0x00,0x0b,0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd5,0x0b,0x04,0x0d,0x16,0x29,0x20,0x67,0x3f,0x92,0x00,0x00,0x02,0x38,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xad,0x55,0x4f,0x6f,0x12,0x41,0x1c,0x7d,0xb3,0xb0,0x1c,
12 | 0xf8,0x13,0xaa,0x41,0x58,0x75,0x21,0xb1,0x1f,0xc7,0x4f,0xa0,0x67,0x23,0xb6,0xa8,
13 | 0x89,0x31,0xd1,0xac,0x45,0x2f,0xac,0x36,0xc4,0xc6,0xc6,0x86,0xa2,0xf1,0x13,0xe8,
14 | 0xdd,0xc4,0xef,0xb3,0x90,0x70,0xb0,0x07,0x53,0x83,0x2d,0x45,0x98,0xe7,0x61,0xfe,
15 | 0xb0,0x4b,0x61,0xed,0x81,0xd9,0x10,0x96,0x99,0xe1,0xcd,0x7b,0xef,0xf7,0x66,0x46,
16 | 0x00,0xc0,0xe1,0xc7,0x83,0xaf,0xd3,0xe9,0xf4,0x1e,0x36,0xd0,0x72,0xb9,0xdc,0xb7,
17 | 0xe7,0xcf,0x5e,0xdc,0x07,0x00,0x74,0xdf,0xbf,0xe3,0xa6,0xda,0xc1,0x87,0x2e,0x01,
18 | 0x20,0x1b,0x5f,0xed,0x62,0x32,0x01,0x84,0xf9,0x45,0x50,0x02,0xd4,0x0f,0x48,0x50,
19 | 0x12,0x54,0x23,0x80,0xd4,0x23,0x24,0x40,0xd5,0x57,0x2e,0x5f,0xb3,0x58,0x09,0x60,
20 | 0x03,0xda,0xeb,0x1f,0xad,0x94,0xb9,0xd3,0x6c,0x81,0xd4,0x0b,0x81,0xa0,0x5a,0xcf,
21 | 0xbe,0xc7,0x5b,0x02,0x58,0xcd,0x21,0x1e,0xb7,0x9e,0x6a,0x46,0x50,0x40,0xf6,0xcf,
22 | 0x0b,0x86,0x31,0x2d,0xf6,0x7d,0x2d,0xb0,0x20,0x21,0x01,0xf4,0x3f,0xf5,0x52,0x0b,
23 | 0xf4,0xf0,0x41,0xd3,0x60,0x2b,0x8b,0x68,0x58,0xad,0x01,0x96,0x5a,0x66,0x6b,0xe7,
24 | 0xc9,0x82,0x1d,0x00,0x50,0x82,0x7a,0x1c,0x86,0x31,0x89,0xf8,0xb3,0xdc,0xb2,0xcb,
25 | 0x1d,0x94,0xc4,0xe7,0x2f,0xfd,0xf5,0x4c,0x63,0xc5,0x4a,0x2e,0x9e,0x62,0x05,0x29,
26 | 0x01,0x41,0xec,0xda,0x22,0x29,0x8f,0xa3,0x61,0x84,0x86,0x5f,0xb7,0x7d,0x71,0xbf,
27 | 0x6d,0x62,0x96,0x48,0x38,0x49,0x60,0x1d,0x31,0x0b,0x2a,0x31,0x18,0x46,0x08,0xc3,
28 | 0x8e,0x66,0x4a,0x90,0x32,0x56,0x44,0xcd,0x5e,0xf9,0x94,0x62,0x85,0x96,0x68,0xe2,
29 | 0x13,0x0d,0x07,0x08,0xc3,0x4e,0x52,0x69,0xcc,0x86,0x44,0xe4,0xd2,0xac,0x90,0x76,
30 | 0x32,0x11,0x0d,0x06,0x08,0xdf,0x76,0xec,0xd8,0xa3,0xdd,0x26,0x0a,0x85,0x02,0x3c,
31 | 0xcf,0x83,0x57,0xf3,0x50,0xad,0x55,0xe1,0x55,0x3d,0xd4,0x6a,0x55,0x54,0x2a,0x37,
32 | 0xd2,0xe3,0x66,0x2a,0x1d,0x0d,0x93,0xa0,0x2b,0x55,0xe9,0x6f,0x69,0xed,0x49,0xdd,
33 | 0x20,0xaa,0x50,0x61,0x18,0xa6,0x9f,0x34,0x44,0x22,0x09,0xbc,0x4a,0xf1,0x1a,0x7e,
34 | 0x03,0x6f,0xda,0xaf,0xff,0x8b,0x1a,0x4f,0x8d,0xf2,0x99,0x69,0xc0,0x6a,0x82,0xef,
35 | 0xd7,0xd1,0x7e,0xd5,0x5e,0x0b,0x6b,0xf9,0x71,0xb1,0xa1,0xd3,0x73,0x6c,0x32,0x49,
36 | 0xc2,0xaf,0xfb,0xd8,0x0b,0xf6,0xb0,0xdf,0xdd,0x07,0x00,0xf4,0x7b,0xc7,0x31,0x66,
37 | 0xe6,0xa4,0x53,0x5e,0x4b,0x5e,0x06,0x76,0x56,0x15,0xcf,0x64,0xd4,0xf7,0x6f,0x23,
38 | 0x08,0x82,0x85,0xf4,0xf8,0xc7,0x28,0xc4,0x8a,0x83,0xe2,0xf2,0xce,0xe3,0x42,0xac,
39 | 0x54,0x7d,0xfe,0x2d,0x1f,0xc1,0xcb,0x00,0xb0,0x6a,0x92,0xa7,0x99,0x21,0x21,0xd3,
40 | 0xac,0xd8,0xda,0xba,0xbe,0xd2,0xd7,0x4a,0xa5,0x7a,0xa5,0x6b,0x49,0x08,0x91,0x04,
41 | 0x76,0x5d,0xf7,0xfb,0x51,0xef,0xf0,0xee,0x26,0xee,0x3c,0x21,0xc4,0x0f,0x7b,0x67,
42 | 0x6c,0x6f,0xdf,0xc9,0x7a,0x37,0xbd,0xf2,0xc9,0xcf,0x93,0xfc,0xd9,0xf9,0x79,0xfe,
43 | 0xef,0x74,0x9a,0x9f,0xcd,0x66,0xf9,0xf9,0x5c,0x16,0xa5,0x9c,0x17,0xa5,0x64,0x81,
44 | 0x94,0x25,0x12,0xae,0x10,0xe2,0x42,0x08,0x31,0x76,0x1c,0x67,0xec,0x38,0xce,0x9f,
45 | 0x4c,0x26,0x33,0xce,0xba,0xd9,0xb3,0x5c,0xce,0x3d,0x2b,0x15,0x4b,0xe3,0xd1,0x68,
46 | 0xf4,0xeb,0xf4,0xf4,0xf7,0xe4,0x1f,0x8b,0x8b,0x0c,0x60,0x1d,0x0a,0x25,0xa9,0x00,
47 | 0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
48 | };
49 |
50 |
--------------------------------------------------------------------------------
/tango/format-indent-more.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/format-indent-more.png
--------------------------------------------------------------------------------
/tango/format-indent-more.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file format-indent-more.png */
4 | const unsigned char formatindentmore[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,
9 | 0x00,0x0b,0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd5,0x0b,0x04,0x0d,0x16,0x0e,0x85,0x6d,0x8a,0xf9,0x00,0x00,0x02,0x47,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xad,0x55,0xcd,0x6e,0xd3,0x40,0x18,0x9c,0x75,0xe2,0x1c,
12 | 0x42,0xa2,0x14,0x48,0xa5,0x10,0x93,0x03,0xbd,0x96,0x27,0xe1,0x09,0xe0,0x54,0x91,
13 | 0xd2,0x50,0xf1,0x23,0x21,0xd4,0xfc,0xdc,0xab,0x04,0xab,0x15,0x15,0x08,0x15,0x4a,
14 | 0x79,0x00,0xb8,0x23,0xf1,0x3e,0x38,0x51,0x62,0xd2,0x03,0x2a,0x72,0xd3,0x34,0x24,
15 | 0x3b,0x1c,0xec,0x5d,0xdb,0xf9,0x31,0x97,0x6e,0xe4,0x43,0xbc,0xab,0xf9,0xe6,0x9b,
16 | 0x99,0x6f,0x2d,0x00,0xe0,0xe8,0xdd,0xe1,0xd7,0xc9,0x64,0xf2,0x10,0xd7,0xb0,0x32,
17 | 0x99,0xcc,0xb7,0xd7,0xaf,0xea,0x8f,0x00,0x00,0xf6,0x41,0x9b,0xd7,0xb5,0x0e,0xdf,
18 | 0xda,0x04,0x80,0x74,0xb4,0xda,0xd5,0x78,0x0c,0x08,0xf5,0x8f,0xa0,0x04,0x18,0xfc,
19 | 0x40,0x82,0x92,0xa0,0xbf,0x03,0xc8,0x60,0x87,0x04,0xe8,0xbf,0x2b,0x14,0x6e,0x6a,
20 | 0xac,0x18,0xb0,0x06,0xa5,0x86,0x03,0x29,0x01,0x00,0x1f,0x4f,0x8e,0x97,0xb6,0xfe,
21 | 0xa4,0x5a,0xf3,0x4b,0x31,0xfe,0x3e,0x06,0xcc,0x08,0x28,0x14,0x3b,0x9f,0x2c,0x76,
22 | 0x6b,0xcf,0x40,0x86,0x0c,0x01,0x09,0xa9,0x18,0x6b,0x1a,0x2b,0x80,0x05,0x09,0x19,
23 | 0x54,0xf0,0x41,0x35,0x6f,0x9c,0x9c,0x7e,0x4a,0x34,0xad,0xba,0xb5,0xbd,0x1a,0x58,
24 | 0x2a,0x20,0x22,0x64,0x17,0x74,0xf1,0x74,0x67,0x17,0x52,0xd1,0x67,0x58,0x54,0xe9,
25 | 0x4c,0x26,0x30,0x06,0x00,0x4a,0x6d,0x4f,0xac,0xcd,0xd3,0x2f,0x9f,0x97,0x32,0x7d,
26 | 0xbc,0x55,0xd5,0xc5,0x57,0x6b,0x4c,0x09,0x08,0x02,0x32,0x3c,0xa8,0x24,0xdd,0xd9,
27 | 0xae,0xc1,0x71,0x1c,0xdc,0xad,0x54,0x7c,0x1f,0xd4,0xa3,0x12,0x33,0x57,0xd0,0x88,
28 | 0x03,0x07,0x11,0x63,0x34,0x11,0xd4,0x40,0xfb,0xed,0x7d,0x38,0xce,0xcf,0x88,0x89,
29 | 0x4a,0x16,0x00,0x92,0xab,0x81,0x55,0x1e,0xb5,0x6e,0x4a,0x77,0x86,0x9d,0xb6,0x3b,
30 | 0x6d,0x38,0x5d,0x27,0xd4,0x58,0xef,0x33,0xd9,0xbc,0xe1,0xf0,0x17,0x06,0x83,0x01,
31 | 0x06,0xae,0xff,0xb8,0x03,0x17,0xae,0xeb,0xc2,0xbb,0xf0,0xf4,0xb9,0xce,0x9b,0x0e,
32 | 0x5a,0xad,0x16,0x2a,0x56,0x45,0x85,0x74,0x21,0x6e,0x73,0x8c,0x19,0x91,0x41,0xe5,
33 | 0x75,0xf9,0xb2,0x6d,0x1b,0xdd,0x6e,0x17,0x52,0x12,0xa4,0x5c,0x18,0x90,0xb8,0xc6,
34 | 0x7a,0x7c,0xa5,0x06,0xe5,0x92,0xf0,0x6b,0xf0,0x03,0x1b,0xbd,0x5e,0x2f,0x92,0xf7,
35 | 0x04,0xf3,0xf4,0x04,0x2e,0x69,0x6f,0x7e,0x35,0xea,0x4d,0x58,0x96,0xf5,0x7f,0x8d,
36 | 0xf5,0x81,0xc0,0xc4,0x24,0xdc,0x66,0xbd,0x01,0xcb,0x2a,0xc7,0x2e,0xa9,0x84,0xbb,
37 | 0x82,0x58,0x2f,0xae,0xa3,0x78,0xbb,0x88,0xcd,0xfb,0x9b,0x7a,0xc2,0xd4,0xfd,0xf1,
38 | 0xfc,0xe5,0x8b,0x10,0xb4,0x6c,0xcd,0x91,0x48,0x9a,0xbc,0x48,0x84,0x10,0x89,0x1c,
39 | 0x22,0x1a,0x36,0xf6,0x1a,0x91,0xf6,0x95,0x70,0x8b,0xad,0xa5,0x17,0x35,0xa6,0xbe,
40 | 0x8b,0xa3,0xba,0x03,0x44,0x73,0xaf,0x8e,0xb2,0x65,0xc5,0xcc,0x52,0x1d,0xc9,0x24,
41 | 0xc6,0x6b,0x6b,0xb7,0x12,0xcd,0x2a,0x16,0x4b,0x89,0xfb,0x42,0x88,0x38,0xb0,0x69,
42 | 0x9a,0xdf,0xdf,0x7f,0x38,0x7a,0x70,0x1d,0xdf,0x3c,0x21,0xc4,0x0f,0xfd,0xcd,0xd8,
43 | 0xd8,0xb8,0x97,0x2e,0xdd,0x29,0x15,0xce,0x86,0x67,0xd9,0xd1,0xe5,0x65,0xf6,0xef,
44 | 0x64,0x92,0x9d,0x4e,0xa7,0xd9,0xd9,0x4c,0xe6,0xa4,0x9c,0xe5,0xa4,0xe4,0x0d,0x52,
45 | 0xe6,0x49,0x98,0x42,0x88,0x2b,0x21,0x84,0x67,0x18,0x86,0x67,0x18,0xc6,0x45,0x2a,
46 | 0x95,0xf2,0xd2,0x66,0x7a,0x94,0xc9,0x98,0xa3,0x7c,0x2e,0xef,0xf5,0xfb,0xfd,0xdf,
47 | 0xe7,0xe7,0x7f,0xc6,0xff,0x00,0x74,0x45,0x14,0x74,0x46,0xdd,0x21,0x5b,0x00,0x00,
48 | 0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
49 | };
50 |
51 |
--------------------------------------------------------------------------------
/tango/format-justify-fill.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/format-justify-fill.png
--------------------------------------------------------------------------------
/tango/format-justify-fill.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file format-justify-fill.png */
4 | const unsigned char formatjustifyfill[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,
8 | 0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,
9 | 0x65,0x00,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,0x6f,
10 | 0x72,0x67,0x9b,0xee,0x3c,0x1a,0x00,0x00,0x01,0x81,0x49,0x44,0x41,0x54,0x38,0x8d,
11 | 0xb5,0x94,0xcb,0x4e,0xc2,0x50,0x10,0x86,0x67,0x4e,0x2f,0x98,0x0a,0x31,0xec,0x70,
12 | 0x2b,0x4f,0xa3,0x44,0x16,0x08,0x44,0x05,0xe4,0x11,0x8c,0x89,0xaf,0x60,0x42,0xbc,
13 | 0x86,0xf8,0x04,0x98,0xa0,0x86,0xad,0x89,0x8f,0xc4,0x42,0x16,0x06,0x52,0xb9,0x54,
14 | 0x38,0xbf,0x8b,0x06,0x68,0x2b,0x3d,0x34,0x15,0x27,0x69,0x9a,0x33,0x3d,0xf9,0xe6,
15 | 0x9f,0x7f,0x26,0x65,0x00,0xf4,0xd0,0xbc,0x7d,0x71,0x1c,0xe7,0x98,0x36,0x10,0xa6,
16 | 0x69,0xbe,0x5e,0x9c,0x5f,0x9e,0x10,0x00,0x6a,0x5c,0x5f,0x61,0x53,0x71,0x73,0xd7,
17 | 0x00,0x00,0xd2,0xbd,0xd5,0x26,0x93,0x71,0x6c,0xa5,0x00,0x28,0x91,0xd8,0x5a,0x9c,
18 | 0x75,0xc5,0xdd,0xc8,0x40,0x80,0x88,0x08,0xbe,0xfc,0x2f,0x70,0xab,0xf5,0x14,0xab,
19 | 0x40,0xa5,0x72,0xaa,0x06,0xd7,0xeb,0x67,0x6b,0x21,0xae,0x4a,0xef,0x43,0x24,0xe5,
20 | 0x1a,0xc5,0xd1,0x80,0x44,0x44,0x41,0xf8,0x3f,0x59,0x51,0x2e,0x97,0xd5,0xe0,0x6a,
21 | 0xb5,0x12,0xa2,0x72,0xa9,0x76,0xa9,0xd0,0x9b,0x97,0x6a,0xb0,0xa6,0x69,0x3e,0xa0,
22 | 0x1b,0x4c,0xcc,0x41,0x38,0x11,0xc0,0xe4,0x6e,0x03,0xd6,0x7b,0x1c,0xd7,0x8a,0x42,
23 | 0xa1,0x10,0x0e,0x06,0x40,0xb5,0x5a,0x35,0x62,0xeb,0xfe,0x6f,0x52,0x2a,0xac,0x90,
24 | 0x52,0x2e,0x2e,0xaf,0x9a,0xba,0x17,0x14,0xdc,0x06,0xe5,0x56,0x00,0xa0,0x76,0xfb,
25 | 0x39,0x96,0x15,0xf9,0xfc,0xa1,0x5a,0x71,0xa9,0x54,0x0a,0x69,0x3d,0x4c,0x2d,0x3c,
26 | 0x5d,0x2a,0x14,0x0b,0xc1,0x2b,0xa7,0xee,0xfd,0x17,0x30,0xb3,0xaf,0xb0,0xfb,0x56,
27 | 0x7a,0x0c,0xea,0x74,0x3a,0xb1,0xac,0xc8,0xe5,0xf6,0x55,0x8a,0x25,0x15,0x8b,0x47,
28 | 0xa1,0xad,0xcf,0xdb,0xf6,0x2b,0x8d,0xa8,0x58,0x3d,0xf5,0x20,0x30,0x98,0x0f,0x01,
29 | 0xa7,0xd3,0xe9,0x58,0x36,0xcc,0x83,0x99,0xfd,0x60,0xc3,0x30,0xde,0x9a,0x8f,0xf7,
30 | 0x07,0x7f,0xa2,0x2e,0xe1,0xef,0x44,0x44,0x0c,0x80,0xb2,0xd9,0x3d,0x3d,0xb3,0x9b,
31 | 0xd9,0xe9,0x7d,0xf4,0xac,0xe1,0x68,0x64,0x7d,0x3b,0x8e,0x35,0x9d,0x4e,0xad,0xd9,
32 | 0x4c,0x26,0xa5,0x9c,0x25,0xa5,0xc4,0x36,0x20,0x53,0x00,0x19,0xcc,0x3c,0x61,0x66,
33 | 0x5b,0x08,0x61,0x0b,0x21,0xbe,0x34,0x4d,0xb3,0x75,0x43,0x1f,0x9a,0xa6,0x31,0x4c,
34 | 0x25,0x53,0x76,0xb7,0xdb,0xfd,0xec,0xf7,0x07,0xe3,0x1f,0x7f,0x19,0xe6,0x58,0xb9,
35 | 0x47,0xa2,0x2b,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
36 | };
37 |
38 |
--------------------------------------------------------------------------------
/tango/media-floppy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/media-floppy.png
--------------------------------------------------------------------------------
/tango/media-floppy.png.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2009/10/17 12:37:08 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file media-floppy.png */
4 | const unsigned char mediafloppy[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,
8 | 0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,
9 | 0x65,0x00,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,0x6f,
10 | 0x72,0x67,0x9b,0xee,0x3c,0x1a,0x00,0x00,0x02,0xa5,0x49,0x44,0x41,0x54,0x38,0x8d,
11 | 0xa5,0x95,0xc1,0x6b,0x54,0x57,0x14,0xc6,0x7f,0x67,0xe6,0xbd,0x20,0xa3,0x46,0x1a,
12 | 0xd3,0x2e,0x2c,0x44,0x52,0x70,0x63,0xdb,0x95,0xe8,0xba,0xa1,0xab,0x82,0x90,0xbf,
13 | 0xa0,0xe0,0xc6,0xd6,0x95,0x2e,0xe3,0x46,0xa1,0x50,0x70,0x51,0x0a,0x52,0xdc,0x04,
14 | 0xc4,0x55,0xec,0xba,0xe0,0x4a,0xa9,0x68,0x37,0xdd,0x04,0xcc,0xa6,0x1b,0x17,0x42,
15 | 0x1b,0x0c,0x96,0x81,0x40,0x26,0x9a,0x91,0x7b,0xf3,0xee,0xf9,0xba,0xb8,0xef,0xcd,
16 | 0xcc,0x33,0x56,0xa6,0xf5,0xc0,0xf0,0xee,0xbb,0xef,0xbd,0xdf,0x7c,0xf7,0x9c,0xfb,
17 | 0x9d,0x6b,0xe7,0xbe,0xfd,0xf9,0x9a,0xbb,0x7f,0x07,0x18,0x39,0xc4,0xc1,0x78,0x73,
18 | 0xee,0x5f,0xdf,0x31,0x70,0xcc,0xae,0x14,0xee,0x7e,0xed,0xea,0x85,0x25,0x2b,0x8b,
19 | 0x2e,0x67,0xef,0xff,0x00,0xee,0x86,0x04,0x12,0x92,0x40,0x0e,0x92,0xe1,0x9e,0xef,
20 | 0xdd,0x41,0xca,0x1c,0x09,0x35,0xf7,0x12,0xbf,0x7e,0x75,0x9d,0xd7,0xa1,0xe2,0xce,
21 | 0xbd,0xf5,0x5b,0x05,0x60,0x1d,0x33,0x7e,0xfb,0x63,0x9b,0x4f,0x6e,0xdf,0x7c,0x8b,
22 | 0x90,0xe9,0xe3,0xc9,0xa9,0xcb,0x7c,0xbe,0x78,0x0c,0xa0,0x5b,0x00,0x96,0xdc,0x49,
23 | 0xc9,0x39,0xf1,0xfd,0xad,0xf7,0x02,0x57,0x83,0xcc,0x01,0x28,0x00,0x52,0xca,0x4b,
24 | 0x9e,0xfb,0xfa,0xd2,0x7b,0x81,0xf9,0x69,0x9d,0xe4,0x93,0x60,0x77,0xbc,0x9e,0x00,
25 | 0x88,0x31,0xb2,0xb5,0xb5,0x35,0x15,0x6b,0x71,0x71,0x71,0x34,0x96,0x3b,0x3e,0xa9,
26 | 0xd8,0x5d,0xc8,0xc7,0x85,0x9e,0x99,0x99,0x69,0x7d,0x30,0x6d,0x48,0x4e,0x95,0x32,
27 | 0xa7,0x03,0x50,0x25,0x21,0xf9,0x3b,0x3f,0x9a,0x0a,0xec,0x6a,0xa5,0xc2,0xdc,0xbd,
28 | 0xa5,0x38,0xa5,0xc4,0xe6,0xe6,0xe6,0x54,0xb0,0xc9,0x95,0xb9,0x9c,0x54,0xb5,0x8a,
29 | 0xe7,0x2d,0xc5,0xdd,0x6e,0xf7,0xff,0xa5,0xc2,0x45,0x4a,0x09,0xa8,0x53,0x91,0x92,
30 | 0xe3,0xfe,0x36,0x33,0xfd,0x57,0xb0,0x93,0x6a,0x4e,0x5d,0x3c,0x47,0xee,0x5c,0xfc,
31 | 0xf1,0xf7,0x6c,0x2a,0xc8,0xae,0x42,0xd9,0x60,0xf5,0x15,0x54,0x3f,0x6f,0xe6,0x19,
32 | 0xb9,0x50,0x82,0x8e,0x19,0x55,0x95,0x46,0x60,0xab,0xea,0x54,0xc8,0x21,0xfc,0xbd,
33 | 0xc1,0xf0,0xcf,0x47,0x53,0x29,0x3c,0xb4,0xf0,0x05,0xc5,0xfc,0xa7,0x35,0x5b,0xc8,
34 | 0xec,0xe0,0x3e,0x96,0x0b,0x97,0x18,0xfe,0xf5,0x98,0xe5,0xe5,0x65,0x66,0x67,0x67,
35 | 0x29,0xcb,0x92,0xa2,0x28,0x28,0xcb,0x72,0x34,0x2e,0x8a,0x82,0x18,0x23,0xfd,0x7e,
36 | 0x9f,0xb5,0xb5,0x35,0x7a,0x73,0xa7,0x69,0x96,0xe9,0x52,0x7b,0x1f,0xa7,0x2a,0x37,
37 | 0x93,0xe6,0x9f,0xe7,0xe7,0xe7,0x29,0x8a,0x82,0xd5,0xd5,0xd5,0x91,0xba,0x95,0x95,
38 | 0x15,0x42,0x08,0x0c,0x87,0x43,0x62,0x8c,0x98,0xe5,0x66,0xe8,0x29,0xe5,0x71,0xce,
39 | 0x45,0x2b,0x15,0xa4,0x94,0x70,0x8d,0x4d,0xd2,0xeb,0xf5,0x28,0xcb,0xb2,0xb5,0xec,
40 | 0xc1,0x60,0x40,0x8c,0x91,0x18,0x23,0x21,0x04,0x62,0x8c,0x4d,0x31,0x90,0x0b,0x01,
41 | 0x1d,0x57,0x6e,0x0f,0x4d,0x8e,0x1b,0xa8,0x34,0x06,0x37,0xdb,0xa6,0x89,0xdd,0xdd,
42 | 0xdd,0x16,0xb4,0x01,0x67,0xc5,0x1d,0x24,0xe1,0x40,0x95,0x26,0x14,0x57,0x95,0x03,
43 | 0x63,0x93,0xec,0xed,0xed,0x4d,0x28,0x7a,0x17,0xd8,0xb2,0x20,0xab,0x7b,0xb2,0x31,
44 | 0xee,0x6e,0x06,0x2f,0x9f,0xf7,0x07,0x47,0x4f,0x1c,0xef,0xf1,0xbc,0xff,0x6a,0x04,
45 | 0x09,0x21,0x1c,0x00,0x4f,0x42,0x47,0xcf,0xe5,0x48,0xf5,0xe1,0xa3,0xb1,0x41,0x0a,
46 | 0xc1,0x97,0x1b,0xcf,0x5e,0x3c,0xfc,0xec,0xe4,0x47,0x47,0x3f,0xfe,0xf0,0x08,0x4f,
47 | 0x81,0x9d,0x9d,0x1d,0x42,0x08,0x2c,0x2d,0x2d,0xb1,0xbf,0xbf,0x4f,0x08,0x81,0xc1,
48 | 0x60,0xd0,0x02,0xa7,0xba,0x68,0x73,0xb3,0x33,0x98,0x75,0x01,0xe1,0x82,0xb8,0x9f,
49 | 0x00,0x64,0x92,0x38,0xfb,0xcd,0xdd,0x33,0x06,0x0f,0x04,0xc7,0x16,0xb6,0x7f,0xe9,
50 | 0x8e,0x4e,0xbf,0x37,0x42,0x6a,0xbb,0xd3,0x30,0x36,0x3f,0x38,0x0f,0xd6,0xad,0x4f,
51 | 0x4c,0xcb,0x50,0xb8,0x61,0x07,0x5e,0x36,0xeb,0x00,0x25,0x70,0x08,0x38,0x0c,0x1c,
52 | 0x99,0xb8,0x02,0x0c,0x81,0xbd,0x89,0xdf,0x6b,0x20,0x4a,0x6a,0x55,0xfb,0x1f,0xaf,
53 | 0xe9,0xeb,0x83,0x19,0xb4,0xf8,0xcb,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,
54 | 0x42,0x60,0x82
55 | };
56 |
57 |
--------------------------------------------------------------------------------
/tango/media-playback-pause.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/media-playback-pause.png
--------------------------------------------------------------------------------
/tango/media-playback-pause.png.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2009/10/17 12:37:08 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file media-playback-pause.png */
4 | const unsigned char mediaplaybackpause[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0xff,0x00,0xff,0x00,0xff,0xa0,
8 | 0xbd,0xa7,0x93,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0d,0xd7,0x00,
9 | 0x00,0x0d,0xd7,0x01,0x42,0x28,0x9b,0x78,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd5,0x0c,0x08,0x15,0x21,0x0e,0xff,0xa9,0xbb,0xad,0x00,0x00,0x02,0x1c,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0xed,0x55,0xcb,0x8a,0x13,0x41,0x14,0x3d,0xb7,0xaa,0x2b,
12 | 0xdd,0xa9,0xf4,0x2b,0x9d,0x37,0x31,0x84,0x2c,0x1c,0x10,0xdc,0xfa,0x1b,0x32,0x0c,
13 | 0xbe,0xb7,0x82,0x6e,0x44,0xfc,0x24,0x41,0xc2,0x30,0x1b,0x19,0xfc,0x0e,0x3f,0x42,
14 | 0x25,0x08,0x83,0x88,0xf8,0x48,0x52,0x71,0x86,0xba,0x2e,0x92,0xae,0x54,0x9b,0xc4,
15 | 0x9d,0xbb,0xa9,0x55,0x75,0xdf,0x73,0xcf,0x3d,0x9c,0x7b,0xab,0x0a,0xb8,0x5e,0xff,
16 | 0x7b,0x91,0xb7,0xef,0x02,0xc8,0x0f,0xe0,0xbe,0x03,0xb8,0x00,0x30,0x04,0xd0,0x38,
17 | 0x80,0xf9,0x06,0xe0,0x4b,0xf9,0x11,0x94,0x1b,0x21,0x44,0x72,0x7c,0x72,0xf7,0x5c,
18 | 0x4a,0x79,0xcb,0x47,0x4b,0x29,0x7f,0x9f,0xbf,0x7d,0x77,0xdb,0x18,0x73,0x21,0x84,
19 | 0xd0,0x27,0xf7,0x8e,0xdf,0x13,0x51,0xe2,0x63,0xea,0xba,0xfe,0xf5,0xcd,0xeb,0xe9,
20 | 0x1d,0x66,0xde,0x25,0xd6,0x5a,0xb3,0x10,0x62,0x78,0x3a,0x3d,0x83,0x94,0xd2,0x25,
21 | 0xbd,0x7c,0xf5,0x42,0xa5,0x69,0x4a,0xc6,0x18,0x68,0xad,0x39,0x08,0x82,0xe4,0x74,
22 | 0x7a,0x56,0x91,0xfa,0xec,0xf9,0xd3,0xa6,0xd6,0x9a,0xe7,0xf3,0x39,0x76,0x88,0x1b,
23 | 0x8d,0x86,0x2d,0xf7,0x9f,0x66,0x1f,0x40,0x04,0x74,0x3b,0x83,0x4d,0xd1,0x3a,0xfb,
24 | 0x18,0x66,0xc6,0xec,0xf3,0x47,0x00,0xc0,0xa0,0x77,0xa3,0xcc,0xaf,0x10,0x0b,0x8f,
25 | 0x98,0x0f,0x35,0xa2,0xae,0x35,0xff,0x1b,0x43,0x88,0xe3,0xd8,0xfa,0x7f,0x9c,0xe2,
26 | 0x24,0x49,0x5c,0x80,0x88,0x2a,0x69,0xf1,0x86,0x30,0x4d,0x53,0xbb,0xbf,0xef,0x40,
27 | 0x1c,0xc7,0xbc,0x97,0x38,0xcb,0x32,0x26,0x22,0x10,0x61,0xed,0x31,0x6f,0x53,0xcb,
28 | 0xa2,0x69,0x9a,0xb2,0xd7,0x54,0x30,0x6f,0x41,0x7e,0xac,0x62,0x45,0x96,0x65,0x5c,
29 | 0x2a,0x91,0x32,0x80,0x90,0xd2,0x29,0x8f,0x93,0x84,0x01,0x20,0xcf,0x73,0xa7,0x78,
30 | 0xb1,0x5c,0xe0,0xd7,0xfc,0x07,0x68,0xc3,0xec,0xc7,0x2a,0xc4,0x45,0x51,0xb8,0xc0,
31 | 0xd5,0xe5,0x25,0x8c,0x59,0x00,0x1b,0xe2,0xb2,0x68,0xb3,0xd9,0x74,0xaa,0x02,0x29,
32 | 0x51,0x53,0xa1,0x23,0xf2,0x63,0x7f,0x13,0xf3,0x76,0xa6,0x09,0x41,0xa0,0x9c,0x9a,
33 | 0x2c,0xcd,0xac,0x5f,0x9c,0x08,0xa8,0xa9,0x1a,0x94,0x52,0xce,0x8a,0x76,0xbb,0xbd,
34 | 0x9f,0xb8,0xdb,0xed,0x72,0xd9,0x13,0xa5,0x6a,0x50,0x81,0x2a,0x05,0xa3,0x28,0xd6,
35 | 0x6a,0x7a,0xbd,0x9e,0xb3,0x4b,0xa9,0x1a,0x82,0xa0,0xe6,0x8a,0x77,0x3a,0x9d,0xfd,
36 | 0x56,0xf4,0xfb,0x7d,0x0b,0x80,0x09,0x6b,0xb5,0xeb,0x43,0xb2,0x4e,0x6a,0xb5,0x5a,
37 | 0xbc,0xc1,0x78,0x56,0x28,0x04,0xe5,0x41,0x22,0xc2,0x60,0x30,0xd8,0x3f,0x15,0xc3,
38 | 0xe1,0xd0,0x05,0xf2,0xac,0x59,0x19,0xa5,0x76,0xbb,0x6d,0x01,0x60,0x34,0x1a,0xd9,
39 | 0xad,0xa7,0x45,0x05,0xe3,0xe7,0x57,0x88,0x27,0x93,0x89,0x15,0x42,0xcc,0x1e,0x3d,
40 | 0x79,0x90,0xf9,0x00,0xa5,0x94,0xbd,0x79,0x74,0x74,0x05,0x00,0xe3,0xf1,0x98,0xad,
41 | 0xb5,0x3f,0x1f,0x3e,0xbe,0x5f,0xb9,0x2b,0xf2,0xbc,0xb9,0x1c,0x8f,0xc7,0x76,0xef,
42 | 0xed,0xc6,0xcc,0x8d,0xd5,0x6a,0x15,0x19,0x63,0x2a,0x93,0x1f,0x86,0x21,0x47,0x51,
43 | 0x64,0x88,0x68,0xce,0xcc,0x0d,0x63,0x4c,0xb4,0x5a,0xad,0x2a,0x98,0x28,0x8a,0x38,
44 | 0x0c,0xc3,0x25,0x11,0x2d,0xae,0x1f,0x8c,0x9d,0xf5,0x07,0x63,0xdb,0x9a,0x21,0xc9,
45 | 0x10,0x21,0x07,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
46 | };
47 |
48 |
--------------------------------------------------------------------------------
/tango/media-playback-start.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/media-playback-start.png
--------------------------------------------------------------------------------
/tango/media-playback-start.png.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2009/10/17 12:37:08 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file media-playback-start.png */
4 | const unsigned char mediaplaybackstart[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,
8 | 0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,
9 | 0x65,0x00,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,0x6f,
10 | 0x72,0x67,0x9b,0xee,0x3c,0x1a,0x00,0x00,0x03,0x53,0x49,0x44,0x41,0x54,0x38,0x8d,
11 | 0xb5,0xd5,0xdf,0x6b,0x14,0x57,0x14,0x07,0xf0,0xef,0xb9,0x93,0xd9,0xd9,0xcc,0x2e,
12 | 0xdb,0x04,0xeb,0xea,0x2a,0x6d,0x93,0xdd,0x4d,0xad,0x8d,0x18,0x4b,0xdf,0x2a,0x42,
13 | 0x21,0xd4,0x10,0x6c,0x0b,0x86,0x5a,0x63,0xd4,0x82,0xf5,0xa5,0xea,0x8b,0xf8,0x0b,
14 | 0x41,0x04,0x05,0xc1,0xda,0x2e,0x18,0x6b,0x5b,0x6a,0x1b,0x62,0x5a,0xb3,0xfd,0xf1,
15 | 0x0f,0x94,0xda,0x26,0xf1,0x17,0xa2,0x49,0x56,0x6d,0x41,0x2b,0xe8,0x53,0x29,0x99,
16 | 0x4d,0xb2,0x9b,0x64,0x76,0x93,0xec,0xec,0xcc,0x8e,0x73,0x7c,0x88,0xbb,0xec,0xe6,
17 | 0x17,0xa9,0xd5,0x03,0x07,0xee,0x7d,0x98,0xcf,0xdc,0x7b,0xce,0xdc,0x3b,0xc4,0xcc,
18 | 0x78,0x1e,0x51,0x56,0x3c,0x21,0xa2,0x65,0x00,0x64,0x00,0x23,0xcc,0x3c,0xf1,0xcc,
19 | 0x60,0x00,0xde,0x86,0xc6,0x77,0x9a,0x12,0x43,0x23,0x77,0x89,0xe8,0x4f,0x00,0x09,
20 | 0x66,0x36,0x9f,0x05,0x8c,0x8a,0x8a,0x8a,0x63,0x7e,0xbf,0x1f,0xc1,0x70,0xf5,0xaf,
21 | 0xb1,0xbe,0x5b,0xa7,0x88,0xe8,0x1f,0x00,0x49,0x66,0xb6,0xff,0x17,0x0c,0x02,0xbe,
22 | 0x3d,0xd7,0xa6,0xfc,0xd1,0x75,0xf1,0x7d,0x59,0x96,0xd7,0xbf,0xbe,0x6a,0xe5,0xd9,
23 | 0xae,0xdf,0xbb,0x3b,0x88,0x28,0x09,0x60,0x94,0x17,0xda,0x14,0x66,0x2e,0x24,0x80,
24 | 0x57,0x37,0xb7,0x6c,0xca,0x32,0x33,0x5b,0x39,0x8b,0xd3,0xe3,0x69,0x3e,0xf3,0x65,
25 | 0xab,0xd1,0xb2,0xb5,0x39,0xbe,0xee,0xed,0xb5,0x3b,0x01,0x04,0x01,0xf8,0x8a,0x9f,
26 | 0x99,0x2b,0xe7,0x84,0x07,0x87,0x35,0x4e,0xa5,0x75,0xb6,0x6d,0x9b,0x07,0xb4,0x7f,
27 | 0x79,0xff,0xa1,0x7d,0x99,0x2d,0x2d,0x9b,0xfb,0xea,0xea,0x6a,0xd7,0x03,0x78,0x05,
28 | 0x80,0xfa,0xd4,0xf0,0xe0,0xb0,0xc6,0x43,0x89,0x38,0x4f,0x4c,0x8e,0xb3,0x6d,0xdb,
29 | 0x7c,0xe7,0xaf,0x3b,0xce,0x8e,0x8f,0x3f,0xca,0x34,0x7d,0xb0,0x31,0x1a,0x08,0x04,
30 | 0xde,0x04,0xb0,0x0c,0x80,0x6b,0x36,0xb8,0xa4,0xc6,0x6e,0xb7,0x7b,0x66,0xfd,0x18,
31 | 0x98,0xcc,0x4c,0xc0,0xc8,0x1a,0x78,0x6d,0xc5,0x0a,0x3a,0xf7,0x4d,0x5b,0xf9,0xc5,
32 | 0xae,0xdf,0x36,0x29,0x6e,0xe5,0xbd,0x94,0xae,0x47,0x7a,0x6f,0xf4,0xff,0xec,0xf3,
33 | 0xf9,0xc6,0x84,0x10,0xa3,0xba,0xae,0x3f,0x2a,0xb4,0xaa,0xb8,0x17,0xb5,0xb5,0xb5,
34 | 0xa1,0xd5,0x6b,0x56,0xdd,0xfb,0x29,0xfa,0x8b,0x92,0x1c,0x4d,0x80,0x9e,0x34,0xb3,
35 | 0xa4,0xdb,0x92,0x0c,0x55,0xf5,0xc0,0x32,0x4d,0xb4,0x77,0xb4,0x1b,0xbd,0x7d,0x37,
36 | 0x13,0x63,0xc9,0xd4,0x61,0x4d,0xd3,0x6e,0x0a,0x21,0x46,0x89,0x28,0x1d,0x8b,0xc5,
37 | 0xb8,0x64,0xc5,0xa1,0x50,0xc8,0xc9,0x8f,0x25,0x49,0x02,0x81,0x4a,0x60,0x66,0x86,
38 | 0xfd,0x28,0x87,0x31,0x7d,0x04,0x2e,0x59,0xc1,0xae,0x4f,0x76,0x97,0x37,0x6d,0x6c,
39 | 0x7a,0xf9,0xcc,0x17,0xad,0x6d,0x8b,0x5e,0xac,0xec,0xcf,0x4c,0x66,0xf7,0x13,0xd1,
40 | 0x00,0x80,0x41,0x51,0x0c,0x07,0x83,0x41,0x27,0x0f,0xe5,0x6c,0x6b,0x2a,0x73,0x53,
41 | 0x69,0x9a,0x59,0x58,0x96,0x09,0xdb,0xb6,0xe1,0x38,0x0e,0xb2,0x66,0x06,0xa6,0x99,
42 | 0x45,0x60,0x69,0x00,0x1b,0x36,0xbc,0xeb,0xce,0xd9,0xd6,0x5b,0x3e,0x9f,0xba,0x34,
43 | 0x18,0x0c,0x32,0x30,0xed,0x3b,0x0e,0x85,0x42,0xce,0x70,0x32,0x0e,0x00,0x10,0x10,
44 | 0x20,0x21,0x20,0x88,0x40,0x44,0x00,0x51,0x7e,0xd9,0x90,0x65,0x17,0xca,0xdd,0x2a,
45 | 0xb4,0xb8,0x86,0x23,0x91,0x23,0x86,0x9e,0x1e,0xbb,0xf6,0xd2,0xf2,0xe5,0x47,0xc3,
46 | 0xe1,0x95,0xf7,0x01,0x4c,0xcc,0x80,0xab,0xab,0xab,0x9d,0x1b,0xbd,0xd7,0x19,0x00,
47 | 0xa4,0xb2,0x32,0x48,0x42,0x40,0x08,0x09,0x42,0x08,0x10,0x11,0x88,0x04,0x64,0x59,
48 | 0x86,0x99,0x35,0xf1,0xd5,0xd7,0x67,0x8d,0x5b,0xb7,0x63,0x5a,0xe5,0x0b,0x95,0x07,
49 | 0xb6,0x36,0x6f,0xbf,0x2a,0x84,0x48,0xd5,0xd7,0xd7,0x17,0x9a,0x57,0x02,0xd7,0xd4,
50 | 0xd4,0x14,0x6a,0x2c,0x88,0x20,0x9e,0xc0,0x92,0x24,0x41,0x2e,0x93,0x01,0x00,0xdd,
51 | 0x3d,0xdd,0xd6,0x0f,0x17,0xbe,0x37,0x3c,0x1e,0xef,0xf1,0x7d,0x7b,0x0f,0x76,0xaa,
52 | 0xaa,0x9a,0x0a,0x87,0xc3,0x16,0xa6,0x45,0x09,0x5c,0x55,0x55,0x55,0x80,0x1d,0xc7,
53 | 0x01,0x11,0x41,0x96,0x25,0xb8,0x64,0x17,0x1e,0x3c,0x7c,0xe0,0x44,0x22,0x9f,0x99,
54 | 0x92,0x24,0x5d,0xd8,0xd6,0xb2,0xfd,0xd3,0x86,0x86,0x86,0x21,0x00,0x99,0xe9,0xe0,
55 | 0xac,0xb0,0xa2,0x28,0x85,0xb1,0x10,0x02,0x1e,0xd5,0x0b,0x3d,0x95,0x42,0x6b,0xeb,
56 | 0x69,0x23,0x1e,0x1f,0xe8,0x7f,0x63,0x4d,0xdd,0xa1,0x3d,0x7b,0xf6,0xe6,0xeb,0xe8,
57 | 0x60,0x9e,0x98,0x79,0x09,0xe5,0x5f,0xe2,0x2a,0x47,0x67,0xb4,0xd3,0xe8,0xb9,0xd4,
58 | 0x93,0x08,0x2c,0x59,0x72,0xa0,0xed,0xbb,0xf3,0xdd,0x00,0xc6,0x01,0xe4,0xe6,0x03,
59 | 0xe7,0x81,0x19,0x97,0xaf,0xf4,0xd8,0xe7,0x3b,0x3a,0xb2,0x5e,0xaf,0xe7,0xe4,0xe7,
60 | 0xa7,0x22,0xed,0x7e,0xbf,0x3f,0x05,0xc0,0x58,0x08,0x38,0x27,0xac,0x28,0xee,0x7b,
61 | 0xd1,0x1f,0xa3,0x7f,0x37,0x7f,0xb8,0xe5,0x44,0x63,0x63,0xe3,0x20,0x16,0xb0,0xed,
62 | 0xd9,0xa2,0xe4,0x48,0x03,0x58,0x0c,0x40,0x60,0x6a,0xbb,0x69,0x00,0xff,0xe9,0x72,
63 | 0x9f,0x0f,0x76,0x61,0xea,0x10,0x3f,0xd5,0xef,0xa8,0x38,0x1e,0x03,0xb2,0x3b,0xc0,
64 | 0xef,0x52,0x2a,0x1c,0x4d,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
65 | 0x82
66 | };
67 |
68 |
--------------------------------------------------------------------------------
/tango/media-playback-stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/media-playback-stop.png
--------------------------------------------------------------------------------
/tango/media-playback-stop.png.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2009/10/17 12:37:08 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file media-playback-stop.png */
4 | const unsigned char mediaplaybackstop[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,
8 | 0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,
9 | 0x65,0x00,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,0x6f,
10 | 0x72,0x67,0x9b,0xee,0x3c,0x1a,0x00,0x00,0x01,0x93,0x49,0x44,0x41,0x54,0x38,0x8d,
11 | 0xd5,0x95,0xcb,0x8a,0xd4,0x40,0x14,0x86,0xbf,0x73,0xaa,0x92,0x8e,0x6d,0x5f,0xe8,
12 | 0x0e,0x7d,0x63,0x1a,0xb1,0xc1,0x17,0x71,0x27,0x88,0x3b,0x19,0x06,0x5f,0x4f,0xc4,
13 | 0x57,0x50,0xf1,0x65,0xbc,0x34,0x22,0xb3,0x94,0x41,0x98,0x99,0xd4,0x71,0x91,0x49,
14 | 0xd2,0x49,0xda,0x98,0x11,0x7b,0x61,0x6d,0x52,0x75,0x52,0x7c,0xf5,0xd5,0x5f,0xb9,
15 | 0x88,0x99,0x71,0x8a,0xa6,0x27,0xa1,0x9e,0x12,0xec,0x8f,0x15,0x45,0x44,0xee,0x0b,
16 | 0xb2,0x46,0xa6,0xd2,0xcc,0x58,0x44,0x56,0xc0,0xf4,0xbe,0x60,0xe0,0xca,0xcc,0xf6,
17 | 0xc5,0xa0,0x65,0x9c,0x24,0xc9,0x83,0xe7,0x2f,0x9e,0xbd,0x53,0x75,0xbb,0xbe,0x44,
18 | 0x0b,0xb6,0xff,0xf0,0xfe,0xe3,0xd3,0xc3,0x5a,0x0b,0xbc,0xd9,0x6c,0x4c,0xd5,0x9d,
19 | 0xbd,0x79,0xfd,0x96,0x28,0x8a,0x7a,0x81,0xcf,0x2f,0x5e,0x9e,0x4d,0xa7,0xd3,0xd0,
20 | 0x09,0x9e,0xcf,0xe7,0x65,0x36,0x5f,0xf7,0x9f,0xc8,0x42,0x3e,0xbf,0x9d,0x7a,0x5e,
21 | 0x78,0xb4,0x7d,0x0c,0xc0,0x7a,0xbd,0xae,0x65,0xda,0x02,0x2f,0x97,0xcb,0x72,0x65,
22 | 0x11,0xa1,0xef,0x39,0xa6,0x69,0x5a,0x33,0x6e,0x3d,0x6e,0x8b,0xc5,0xe2,0xaf,0xde,
23 | 0x98,0xc3,0x9d,0xc2,0x11,0xe3,0xc9,0x64,0x62,0x3f,0x2f,0xaf,0x10,0x01,0xe7,0x3c,
24 | 0x48,0x56,0x9f,0x60,0x46,0x45,0xa8,0x7a,0x4d,0xa1,0xa3,0xe0,0xef,0x97,0xdf,0x40,
25 | 0x84,0xeb,0x9b,0x6b,0x6e,0xb3,0x5b,0xcc,0x02,0x66,0x76,0x77,0xa5,0xec,0x87,0x50,
26 | 0xed,0x7e,0x36,0x9b,0x75,0x47,0xb1,0xdb,0xed,0x02,0x80,0x20,0xa8,0x2a,0x4e,0x15,
27 | 0xa7,0x1e,0xef,0x3c,0xde,0x45,0x78,0xef,0x89,0x7c,0x44,0xe4,0x63,0xe2,0x68,0x50,
28 | 0x13,0xea,0x34,0x4e,0xd3,0x34,0x9f,0x20,0x10,0x47,0x31,0x99,0x73,0x50,0x58,0x62,
29 | 0x07,0xe6,0x79,0xff,0x20,0x8a,0xee,0xc7,0x2d,0x49,0x12,0x2b,0x8c,0xe3,0x78,0x40,
30 | 0x96,0x65,0x25,0x28,0x14,0xd0,0x60,0x77,0xe3,0x8a,0xf5,0xc7,0xc3,0x2b,0xa2,0x00,
31 | 0x50,0xcd,0x6d,0x83,0x49,0x6e,0x67,0x01,0x0b,0x60,0x9a,0x43,0x35,0x54,0x49,0x6e,
32 | 0xb7,0xdb,0x6e,0xe3,0xd1,0x68,0x54,0xae,0x3c,0x19,0x4f,0x9a,0xb7,0x7f,0xdb,0x86,
33 | 0xc3,0x61,0xb7,0xf1,0x78,0x3c,0x36,0x75,0xfa,0xf9,0xe2,0xd5,0xf9,0x93,0xbe,0x50,
34 | 0x15,0xfd,0xb2,0x5a,0xad,0x6a,0xc6,0xad,0xaf,0x1b,0xf0,0x10,0x18,0x34,0x8b,0x3d,
35 | 0xda,0x0d,0xf0,0xa3,0x0b,0xfc,0x4f,0xda,0xff,0xf7,0x6b,0xfa,0x05,0x45,0x3a,0xa8,
36 | 0xcc,0x28,0xe1,0xd8,0x1f,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
37 | 0x82
38 | };
39 |
40 |
--------------------------------------------------------------------------------
/tango/media-skip-backward.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/media-skip-backward.png
--------------------------------------------------------------------------------
/tango/media-skip-backward.png.h:
--------------------------------------------------------------------------------
1 | /*********** Generated on 2009/10/17 12:37:08 by reswrap version 5.1.1 *********/
2 |
3 | /* Created by reswrap from file media-skip-backward.png */
4 | const unsigned char mediaskipbackward[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,
8 | 0x88,0x00,0x00,0x00,0x19,0x74,0x45,0x58,0x74,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,
9 | 0x65,0x00,0x77,0x77,0x77,0x2e,0x69,0x6e,0x6b,0x73,0x63,0x61,0x70,0x65,0x2e,0x6f,
10 | 0x72,0x67,0x9b,0xee,0x3c,0x1a,0x00,0x00,0x03,0xaa,0x49,0x44,0x41,0x54,0x38,0x8d,
11 | 0xed,0x95,0x4d,0x4c,0x5c,0x75,0x14,0xc5,0xcf,0x7d,0xf3,0xbe,0x19,0xe6,0x0d,0x6f,
12 | 0x18,0x18,0x25,0x22,0x38,0xa8,0x03,0xd8,0x45,0x33,0x13,0xd0,0x36,0xa5,0xd0,0x16,
13 | 0x83,0xb5,0xb5,0x34,0x75,0x9c,0x82,0x32,0x50,0x3f,0x43,0x80,0x92,0x58,0x85,0x48,
14 | 0x4d,0x89,0x68,0x95,0xe8,0xa6,0x86,0x04,0x09,0x0b,0xad,0x61,0xd1,0x76,0x63,0xab,
15 | 0x58,0x65,0x85,0x26,0x2e,0x6c,0xb4,0x5d,0x94,0xc4,0x8d,0x1f,0x41,0x13,0x42,0x68,
16 | 0x6c,0xe0,0x95,0x42,0x99,0x19,0xde,0xcc,0x75,0xc1,0x0c,0x19,0xb0,0xdd,0xc9,0xce,
17 | 0xbb,0xbd,0xf7,0xfd,0xde,0xf9,0x9f,0xff,0x79,0xf7,0x11,0x33,0x63,0x2b,0x4a,0xd8,
18 | 0x12,0xea,0x56,0x82,0x45,0x00,0x20,0x22,0x02,0x40,0x00,0x98,0xff,0x23,0x6f,0x44,
19 | 0x22,0x72,0xab,0xaa,0xea,0x53,0x14,0x59,0x8a,0xc7,0x13,0xab,0x44,0x34,0xc7,0xcc,
20 | 0xd6,0xdd,0x86,0x89,0x28,0x07,0x80,0x17,0x40,0x82,0x99,0x67,0xef,0xd2,0xd7,0x01,
21 | 0xe4,0x03,0x58,0x11,0x55,0x55,0x2d,0x3c,0x74,0xf8,0xe0,0x15,0x66,0x76,0x12,0xd1,
22 | 0xd2,0x97,0x17,0xc7,0xab,0x89,0xe8,0x56,0xb6,0x72,0x22,0x92,0x01,0x78,0x77,0xd5,
23 | 0xee,0x6c,0x70,0xe5,0x1a,0x35,0x97,0xc7,0xbf,0x39,0xbd,0x09,0x28,0x03,0xc8,0xdf,
24 | 0xbb,0xb7,0xee,0xa8,0x9e,0xa3,0x57,0x8d,0x7f,0x75,0xf9,0x6d,0x41,0x51,0x64,0x99,
25 | 0x99,0x9d,0x43,0x43,0x43,0x0e,0x66,0x76,0x2a,0x8a,0x2c,0xa7,0x6d,0x01,0x11,0x09,
26 | 0x44,0xe4,0xf5,0xfb,0xfd,0xa1,0x67,0x1a,0x0f,0x8e,0xd6,0x3f,0x59,0x7f,0x5a,0xd7,
27 | 0xb5,0x28,0x00,0xce,0xee,0x57,0x57,0x87,0x0e,0x1c,0x3e,0x72,0xe8,0xeb,0xa7,0x0f,
28 | 0xec,0x3f,0xa1,0x6a,0x6a,0x04,0x48,0x7b,0x0c,0x00,0xd6,0xe2,0xc2,0x26,0x11,0x64,
29 | 0xc8,0xb2,0x5c,0x50,0xbb,0xa7,0xa6,0xb9,0xb0,0xa0,0xf0,0x78,0x5f,0x5f,0xdf,0xca,
30 | 0x23,0x0f,0x07,0x0a,0x8f,0x36,0x3f,0x97,0x19,0x30,0xca,0x02,0x65,0x15,0xe5,0x81,
31 | 0xc0,0x9b,0xfe,0xd2,0xd2,0xba,0xde,0xde,0xb7,0x56,0x0b,0x0b,0x7c,0xde,0x1f,0xaf,
32 | 0x84,0xb1,0x01,0x2c,0x89,0x52,0x36,0xf8,0x81,0xed,0xa1,0xed,0xdb,0x4a,0x1f,0x2c,
33 | 0x7e,0xb7,0xb1,0xb1,0xd1,0x13,0x0e,0x47,0x5c,0xb6,0x6d,0x9b,0x82,0xb0,0x16,0xa2,
34 | 0xbc,0xbc,0x3c,0xf5,0xf1,0x1d,0x55,0xfd,0x1e,0xd3,0x7c,0xa9,0xa7,0xa7,0xd7,0x2a,
35 | 0x2f,0xaf,0x34,0x96,0x96,0x16,0xd3,0x19,0x48,0x5f,0x9e,0xdb,0xed,0x66,0x00,0x90,
36 | 0x24,0x19,0x00,0x70,0x7f,0x51,0x91,0x5a,0xb3,0x7b,0x57,0x77,0xc9,0x43,0xa5,0xcf,
37 | 0x9e,0xec,0x3b,0x99,0x34,0xf3,0x3c,0xa6,0x75,0x6b,0x1e,0xa9,0x54,0x0a,0xce,0x9c,
38 | 0x5c,0x00,0xc0,0x9e,0x7d,0xb5,0xdf,0x46,0x5b,0xa2,0xab,0x0d,0x0d,0xfb,0xf5,0x78,
39 | 0x3c,0xe6,0x9a,0x9f,0xff,0x1b,0xd9,0x51,0x52,0x14,0x05,0x62,0x45,0x65,0x65,0x92,
40 | 0x88,0x20,0x89,0x12,0x88,0x88,0x1e,0xdb,0x56,0x71,0xa9,0xab,0xab,0xcb,0x7e,0xa2,
41 | 0x7a,0xa7,0x6b,0x25,0x76,0x87,0x16,0x17,0x2d,0x08,0x82,0x00,0x41,0x70,0x00,0x00,
42 | 0x82,0xc1,0x20,0x3a,0x3b,0x8e,0x1b,0xa2,0xe8,0x70,0x2e,0x2f,0xdf,0x06,0x33,0x43,
43 | 0x70,0x38,0x90,0x4a,0xa5,0xd6,0xc1,0xa1,0x50,0x28,0x29,0x94,0x07,0x02,0xc9,0x6c,
44 | 0xc5,0x92,0x2c,0x39,0x7d,0xbe,0xfb,0x84,0xcc,0xb9,0x48,0x10,0x40,0x24,0x20,0x73,
45 | 0xc8,0xe6,0xa6,0xe7,0xa1,0x6b,0x9a,0x33,0x16,0x8f,0x21,0x16,0x8f,0x21,0xb1,0x9a,
46 | 0x40,0x32,0x69,0x6f,0x00,0x07,0x83,0xc1,0xa4,0xf0,0x68,0x06,0xbc,0xe6,0x31,0x17,
47 | 0x17,0x95,0x3c,0x75,0xaa,0xff,0xd4,0x2f,0x83,0x1f,0x0d,0xde,0x90,0x24,0x79,0xc9,
48 | 0xc8,0x35,0xa0,0x2a,0x2a,0x64,0x59,0x01,0x00,0x9c,0x78,0xe3,0x75,0x0c,0x8f,0x0c,
49 | 0xdf,0x94,0x45,0x65,0xb9,0xc0,0xeb,0x83,0xe1,0x72,0x43,0xd7,0x9c,0xd0,0x34,0x7d,
50 | 0xa3,0xe2,0x32,0xbf,0xdf,0x06,0x00,0x31,0x7d,0x79,0xf5,0xf5,0xf5,0xb3,0x1f,0xbc,
51 | 0x37,0xd8,0x76,0x63,0x6e,0xb6,0xaf,0xb5,0xad,0xe5,0xf6,0xd5,0x6b,0x57,0x7f,0xd7,
52 | 0x54,0x3d,0xa5,0x67,0x3d,0x38,0xfd,0xc7,0x9f,0xaf,0xbd,0xf8,0x72,0xeb,0xaf,0x17,
53 | 0x2f,0x7d,0x31,0x2b,0x4b,0x4a,0xdc,0x99,0x93,0x0b,0x4d,0xd1,0x36,0x80,0x31,0x35,
54 | 0x75,0xbd,0x38,0xd2,0x14,0xb6,0xe3,0xf1,0x18,0x47,0x9a,0xc2,0xf6,0xd4,0xd4,0xf5,
55 | 0x62,0x66,0x16,0x99,0xd9,0x3d,0x39,0x39,0x59,0xd6,0x7a,0xec,0x85,0xcf,0x3a,0x3a,
56 | 0xdb,0xe7,0x17,0xac,0x85,0x59,0x66,0xe6,0x70,0xe4,0x08,0x33,0x73,0x81,0x65,0x59,
57 | 0x66,0x77,0x77,0xe7,0x2b,0x91,0xa6,0xf0,0xf4,0x77,0xdf,0x4f,0xfe,0x65,0xdb,0x76,
58 | 0x22,0xbb,0xbf,0xbe,0x84,0xb2,0x3d,0x02,0x90,0x04,0x60,0xd5,0xd5,0xd5,0xcd,0x9c,
59 | 0xfd,0x74,0xac,0xc7,0xcc,0xcb,0x6f,0x69,0x6f,0x7f,0x75,0xf1,0xf3,0xb1,0xb3,0xbf,
60 | 0x65,0x06,0x0c,0xc3,0x98,0x3f,0x73,0x66,0x68,0x6c,0xf0,0xfd,0x0f,0x77,0x9c,0xbf,
61 | 0x70,0x6e,0xb4,0xf5,0x58,0xd4,0xfa,0xf9,0xda,0x4f,0xd3,0xeb,0x71,0x33,0x4d,0x8f,
62 | 0x2d,0x8a,0xa2,0x15,0x6d,0x6b,0xf1,0xc8,0xb2,0x6c,0x99,0xa6,0xc7,0xce,0x7a,0x41,
63 | 0x0c,0x40,0x7c,0x60,0x60,0xe0,0x87,0x99,0x99,0x99,0x7d,0xef,0x0c,0xf4,0x77,0x88,
64 | 0x92,0xb8,0x1b,0x58,0x4f,0x57,0xac,0xa4,0xa4,0x64,0x6e,0x64,0x78,0xf4,0xe3,0x89,
65 | 0x89,0x89,0x0b,0x23,0x23,0x9f,0x74,0x89,0xa2,0x54,0x05,0x00,0xc4,0xcc,0x3a,0x00,
66 | 0x27,0xd2,0xdb,0x0d,0xc0,0x12,0x80,0x3b,0xf8,0x77,0x49,0x00,0x5c,0x58,0xfb,0xa8,
67 | 0x92,0x00,0x6e,0x6e,0xea,0x3b,0x00,0xe4,0x02,0x50,0x00,0xa4,0x28,0xbd,0x6b,0xd6,
68 | 0xd7,0x66,0x96,0x9a,0x7b,0x95,0x96,0x06,0x27,0xee,0xd1,0x97,0x00,0x30,0xfd,0xff,
69 | 0x6b,0xca,0xd4,0x3f,0x16,0x27,0x50,0x05,0xdd,0xe4,0x86,0x41,0x00,0x00,0x00,0x00,
70 | 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
71 | };
72 |
73 |
--------------------------------------------------------------------------------
/tango/network-transmit-receive-48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/network-transmit-receive-48.png
--------------------------------------------------------------------------------
/tango/network-transmit-receive-48.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file network-transmit-receive-48.png */
4 | const unsigned char networktransmitreceive48[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x30,0x08,0x06,0x00,0x00,0x00,0x57,0x02,0xf9,
7 | 0x87,0x00,0x00,0x00,0x04,0x73,0x42,0x49,0x54,0x08,0x08,0x08,0x08,0x7c,0x08,0x64,
8 | 0x88,0x00,0x00,0x0c,0xc1,0x49,0x44,0x41,0x54,0x68,0x81,0xdd,0x59,0x6b,0x8c,0x5d,
9 | 0xd5,0x75,0xfe,0xf6,0xde,0xe7,0x71,0xef,0xdc,0x7b,0xee,0xcc,0x5c,0xdf,0xf1,0x3c,
10 | 0xf0,0x6b,0x02,0x63,0x6c,0x3c,0x60,0xa8,0x04,0x85,0x04,0x05,0xca,0x0f,0x54,0x03,
11 | 0x19,0xa9,0x6a,0x69,0x93,0x11,0x54,0x34,0xa6,0x32,0x42,0x15,0xa5,0x45,0x91,0x90,
12 | 0xaa,0xaa,0x56,0xa5,0x06,0xa9,0x69,0x49,0x44,0x50,0x25,0x57,0x6e,0x41,0x56,0xd5,
13 | 0x14,0x15,0x27,0x4e,0x2a,0x88,0x4d,0x23,0x4b,0x49,0xc8,0x93,0x87,0xeb,0x81,0x04,
14 | 0x0f,0xe3,0x21,0xc3,0x60,0x0f,0x8e,0xc7,0xe3,0x99,0xfb,0xbe,0xe7,0x9c,0xbd,0xd7,
15 | 0xea,0x8f,0x73,0xee,0x6b,0xe6,0xce,0xc3,0xd4,0xfd,0xd1,0x2e,0x69,0xe6,0x9c,0xb3,
16 | 0x1f,0xe7,0xac,0x6f,0xaf,0xb5,0xd7,0xb7,0xd6,0xbe,0xc0,0xff,0x71,0x11,0x9f,0x74,
17 | 0xe2,0xf3,0xcf,0x3f,0x7f,0x28,0x99,0x4c,0x7e,0x51,0x4a,0x69,0xad,0x36,0x86,0x88,
18 | 0xc0,0xcc,0x60,0xe6,0xc6,0x7d,0x6b,0x1b,0x33,0x43,0x29,0x05,0x00,0x2b,0xc6,0x31,
19 | 0x33,0x2f,0x2d,0x2d,0xbd,0xef,0xfb,0xfe,0x67,0x9e,0x79,0xe6,0x99,0x85,0xd5,0xbe,
20 | 0xb1,0xea,0xc7,0xd7,0x92,0xe7,0x9e,0x7b,0x6e,0x4b,0x2e,0x97,0xfb,0xc3,0xfb,0x1f,
21 | 0xd8,0x67,0x19,0x32,0xcd,0x0e,0xae,0x5f,0x78,0xc5,0x1c,0xe6,0x15,0x83,0xc0,0x00,
22 | 0x98,0x68,0xe5,0x78,0x06,0x84,0x14,0x62,0x6a,0xf2,0xec,0xc8,0xcb,0x2f,0x1f,0x3d,
23 | 0x00,0xe0,0xcb,0x57,0x15,0x80,0x31,0x26,0x97,0xcd,0xf6,0x9a,0x9a,0x5f,0xc5,0x0b,
24 | 0xdf,0xfe,0x25,0xe6,0xe6,0x6b,0x2d,0x0a,0x02,0xb6,0x25,0x5a,0x35,0x06,0x83,0x20,
25 | 0x44,0xd3,0xd8,0xcc,0x40,0xa0,0x5b,0x26,0x70,0xf4,0x8f,0x19,0x18,0xbd,0xd6,0xc3,
26 | 0x9d,0x37,0xf7,0xc0,0xb5,0x5d,0xf4,0x64,0x7b,0x24,0x24,0xb6,0xae,0xa5,0xcb,0x27,
27 | 0x02,0xc0,0xcc,0x9e,0xe3,0xba,0x60,0x66,0x2c,0x16,0x02,0x6c,0x1b,0xea,0x01,0xc5,
28 | 0x0a,0x33,0xc7,0xee,0x10,0x8d,0x03,0x18,0xa0,0x4e,0xcf,0xb1,0xd2,0x44,0x91,0xc5,
29 | 0x88,0x80,0x42,0xd9,0xc7,0xd9,0x73,0x25,0x6c,0xeb,0x29,0x61,0x68,0xcb,0x20,0xbc,
30 | 0xae,0x6e,0x80,0x28,0x7b,0xd5,0x01,0x08,0x21,0x32,0x8e,0xe3,0x08,0x22,0x82,0x31,
31 | 0x40,0xa0,0xeb,0x7e,0x1b,0x29,0xd3,0x00,0xb1,0xfc,0x0a,0x80,0x28,0x52,0xbc,0x53,
32 | 0x9f,0x31,0x0c,0x4d,0x84,0x4d,0x7d,0x39,0x48,0xa1,0x60,0x59,0x16,0x00,0xd9,0x7d,
33 | 0xd5,0x01,0x00,0xc8,0x38,0x8e,0x2d,0x89,0x09,0x86,0x19,0xa1,0x26,0x70,0xbc,0xb2,
34 | 0x88,0x15,0xa2,0xf8,0x0a,0xa0,0xd1,0xc7,0x91,0x19,0x62,0x8b,0xd4,0xc7,0xd6,0xfb,
35 | 0xa2,0xfe,0x90,0x18,0xa1,0x1f,0x42,0x29,0x1f,0x96,0x52,0x20,0xa2,0xff,0x15,0x00,
36 | 0x9e,0xe3,0x38,0x92,0x88,0x40,0x04,0xf8,0x21,0xb5,0xb9,0x46,0x5d,0xb9,0x56,0x57,
37 | 0xe1,0x0e,0xcf,0x0d,0x8b,0x11,0x10,0x1a,0x83,0xc5,0x42,0x0d,0xdd,0x49,0x89,0x20,
38 | 0x08,0x20,0xa5,0x84,0x54,0x0a,0x5a,0x6b,0xef,0xaa,0x03,0x60,0x66,0xcf,0xb6,0x6d,
39 | 0xc5,0xcc,0xd0,0x06,0x0d,0x0b,0xb4,0x2a,0x54,0x77,0xa5,0x78,0xfc,0x8a,0xbd,0x41,
40 | 0x0c,0x04,0xa1,0xc6,0x42,0xbe,0x8a,0x62,0x39,0x40,0xa5,0x16,0x02,0x00,0xba,0xb6,
41 | 0x64,0xd0,0x9b,0xed,0x01,0x71,0xe4,0x96,0x96,0x65,0x5d,0x7d,0x00,0xc6,0x18,0x4f,
42 | 0x29,0x4b,0x11,0x19,0x18,0xe6,0x28,0xa2,0xc4,0x61,0x91,0xa8,0xee,0x36,0xdc,0x58,
43 | 0x71,0x21,0x5a,0x95,0x07,0x2a,0xb5,0x10,0xf3,0x8b,0x15,0x14,0xca,0x7e,0x33,0x58,
44 | 0x09,0x09,0x00,0x08,0x0d,0xa3,0x5c,0xaa,0x44,0xf3,0xfb,0x08,0x10,0x48,0x5f,0x75,
45 | 0x00,0x52,0xca,0x9c,0x6d,0x2b,0x10,0x31,0xb4,0x06,0xa4,0x69,0xba,0x06,0xd0,0x12,
46 | 0x89,0xea,0x4a,0x53,0xf4,0x6c,0x88,0x71,0xf1,0x72,0x05,0x8b,0xc5,0x5a,0x43,0x69,
47 | 0xb1,0x8c,0x4a,0xb5,0x61,0x40,0x02,0x14,0x46,0x26,0x15,0x10,0xc9,0x0d,0x03,0x78,
48 | 0xf6,0xd9,0x67,0x6f,0x4c,0x26,0x93,0x47,0x2d,0xcb,0xda,0xb2,0x36,0x04,0xb6,0xbf,
49 | 0xf7,0x9f,0x27,0xc1,0x4c,0xb8,0x69,0x13,0x35,0xd9,0x33,0x26,0xa5,0xba,0x15,0xa2,
50 | 0x3d,0xd2,0x64,0x60,0x12,0x84,0xc1,0x0c,0x61,0x22,0xc8,0x62,0x31,0xe8,0xbc,0x37,
51 | 0xb5,0x61,0xa4,0x53,0x29,0xe8,0x50,0x47,0x18,0x85,0x70,0x36,0x0c,0xc0,0x75,0xed,
52 | 0xbf,0xbb,0xff,0x81,0xfb,0x46,0x32,0xdd,0x99,0x95,0xac,0xda,0xba,0xc2,0x0d,0x1c,
53 | 0x6d,0xa0,0xa2,0xff,0xdc,0xd6,0xb8,0x6c,0x3c,0x43,0x6b,0x83,0xaf,0x7d,0xfd,0x1f,
54 | 0xf1,0xfa,0xc5,0xde,0x8e,0x0a,0x19,0x03,0x68,0x43,0x50,0x96,0x02,0x33,0x41,0x29,
55 | 0x85,0x47,0x1e,0x79,0x24,0xf1,0xe2,0x8b,0x2f,0xd6,0xd6,0x05,0x20,0x84,0xba,0x26,
56 | 0xe3,0x65,0x30,0x7b,0xfe,0x63,0xfc,0xd3,0xb7,0x3f,0x80,0x6d,0x4b,0x18,0x43,0x10,
57 | 0x00,0x6c,0x4b,0x36,0xfc,0x1c,0x88,0x3e,0x42,0x24,0xda,0x41,0x2e,0xd3,0xd8,0xb6,
58 | 0x22,0xff,0x4f,0x38,0x0a,0x7f,0x70,0xef,0x20,0x00,0xa0,0x3f,0x37,0x88,0x94,0xab,
59 | 0x20,0x62,0x9f,0x5f,0x2e,0x9a,0x81,0xaa,0x6f,0x90,0x4e,0x5a,0x30,0x64,0x60,0xdb,
60 | 0xb6,0x2e,0x97,0xcb,0x1e,0x80,0xf5,0x01,0x58,0x96,0xf2,0x18,0x8c,0xcb,0x05,0x1f,
61 | 0xa9,0x54,0x17,0x72,0x3d,0x89,0x0d,0x33,0x6c,0x2b,0x31,0x2d,0x67,0xd8,0x73,0x17,
62 | 0xf2,0xa8,0x96,0xab,0x58,0x5a,0x2a,0x60,0x73,0x6e,0x00,0xca,0x52,0x90,0x02,0x60,
63 | 0xac,0x04,0x61,0xb4,0x40,0xd5,0x27,0xa4,0x12,0x91,0xdb,0xb9,0xae,0x6b,0x88,0xc8,
64 | 0x03,0x30,0xbf,0x2e,0x00,0x29,0x55,0x9a,0xc1,0xa8,0xd4,0x08,0x61,0x68,0x56,0x32,
65 | 0x6c,0x4b,0x78,0xbc,0x12,0x86,0xd5,0xc4,0x70,0xdd,0x04,0x7a,0xb3,0x12,0x1c,0xdf,
66 | 0x4b,0x61,0x60,0xa0,0x56,0x28,0xe4,0x13,0x50,0xf5,0xa3,0xbd,0x64,0x8c,0x81,0xe3,
67 | 0x3a,0x14,0x03,0xe8,0x28,0xcb,0x2d,0x90,0x04,0x80,0x7c,0x29,0x04,0x35,0x18,0x96,
68 | 0x5b,0x18,0xb6,0x73,0x1e,0x13,0x31,0x2c,0x56,0x65,0x58,0x62,0x46,0xa9,0xe2,0xa3,
69 | 0x5a,0x2e,0x60,0x68,0xd0,0xc0,0x71,0x5c,0x28,0x10,0xa8,0x83,0x1b,0x69,0x62,0x94,
70 | 0xab,0x26,0x7a,0x1f,0x11,0x5c,0xc7,0x01,0x80,0x8d,0x01,0x90,0x52,0x39,0x00,0x23,
71 | 0x5f,0x0e,0x40,0x90,0x1d,0x19,0xb6,0xb9,0xba,0xcd,0x15,0x5f,0x8b,0x61,0x6b,0x81,
72 | 0x46,0xa5,0x4a,0xa8,0x06,0x8c,0x30,0xd0,0x91,0x5f,0x3b,0x0e,0xa4,0xa0,0xce,0xfb,
73 | 0x40,0x12,0x0a,0x65,0x1d,0xbb,0x9f,0x81,0xe3,0xd8,0x30,0xc6,0xac,0x9a,0x4e,0x34,
74 | 0x00,0x1c,0x3c,0x78,0x30,0x21,0x84,0x10,0xcc,0x8c,0x62,0x49,0x83,0x68,0x63,0x0c,
75 | 0xdb,0xb0,0x4e,0xe3,0x19,0x28,0x55,0x7c,0x2c,0x16,0x6a,0x28,0x56,0x02,0x04,0xa1,
76 | 0x41,0xc2,0xb1,0x10,0x84,0x8c,0x6c,0xae,0x17,0x64,0x22,0x0b,0x48,0x98,0x06,0x79,
77 | 0x2d,0x97,0x62,0x39,0x5e,0x38,0x62,0x58,0xb6,0x23,0x8d,0x31,0xeb,0x5b,0x20,0x9b,
78 | 0xcd,0x7a,0xae,0xeb,0x84,0xc4,0xe4,0x96,0x6a,0x1a,0xc4,0xb2,0xc1,0xb0,0xcd,0x15,
79 | 0x5e,0x83,0x61,0x89,0xb1,0x50,0xa8,0xe1,0xd2,0x52,0x05,0x7e,0xd0,0x52,0xe4,0x08,
80 | 0x89,0x20,0x04,0xca,0x35,0x83,0xb0,0xb4,0x80,0xbe,0x5c,0x0e,0xae,0xeb,0x40,0x72,
81 | 0xb1,0xad,0x46,0x68,0x8a,0x42,0xa9,0x56,0xe7,0x0e,0x03,0xd7,0x75,0xe4,0x86,0xf6,
82 | 0x40,0xb9,0x5c,0xf6,0x2c,0xdb,0x26,0x26,0x46,0xcd,0x27,0x18,0x02,0x58,0x8b,0x48,
83 | 0x71,0xd1,0xf4,0xeb,0x15,0x9b,0x19,0x40,0xa5,0x1a,0xe2,0xe3,0x85,0x52,0x43,0xf1,
84 | 0x4e,0x8a,0x15,0xca,0x06,0x43,0xdd,0x0e,0xc8,0x10,0x1c,0xc7,0x46,0xb7,0xed,0x23,
85 | 0x9d,0x34,0xad,0x05,0x5a,0x43,0x6a,0xb5,0x68,0x7e,0x1c,0x46,0x2d,0x00,0x99,0x75,
86 | 0x01,0x08,0x21,0x3c,0xc7,0xb6,0x99,0x88,0xa0,0x0d,0x01,0x42,0x41,0x53,0x4b,0x8e,
87 | 0x13,0xfb,0x52,0xdd,0xa5,0xea,0x1b,0xf4,0xd2,0x52,0x15,0x4b,0x45,0x3f,0x7e,0x47,
88 | 0x67,0x97,0x00,0x03,0x85,0xb2,0xc6,0xae,0xad,0x1e,0xb4,0xd1,0xe8,0x4a,0x3a,0xf8,
89 | 0xed,0x5b,0xbb,0x30,0x7a,0xe3,0x40,0xdc,0xdd,0x24,0x98,0x66,0x0a,0x1e,0xbd,0xdf,
90 | 0x71,0x1c,0x4b,0x08,0xb1,0xbe,0x05,0xb4,0xd6,0x9e,0xe3,0x38,0x60,0x26,0x68,0x8a,
91 | 0x4a,0xbe,0x7a,0x1c,0x47,0xcb,0x6a,0x53,0x0c,0xca,0x10,0xe1,0xe2,0x62,0x05,0xb5,
92 | 0xc0,0x00,0x72,0x15,0xc5,0x5b,0xa4,0x58,0xd1,0x48,0x76,0x75,0x47,0x19,0xa6,0x6d,
93 | 0x61,0xfe,0xe2,0x3c,0xe6,0xe6,0x3e,0x6e,0x61,0xee,0x95,0x20,0xbc,0x4c,0x37,0x98,
94 | 0x09,0x52,0xca,0x55,0xf3,0xa1,0x56,0x0b,0x74,0xbb,0x89,0x04,0x88,0x08,0x86,0xa2,
95 | 0x0c,0xb3,0xb5,0x20,0x69,0x8d,0xff,0x41,0x48,0x58,0xc8,0x57,0x61,0x88,0x57,0x5f,
96 | 0xf5,0x16,0x11,0x00,0xca,0xd5,0xfa,0xc6,0x34,0xb0,0x2d,0x1b,0x42,0x28,0x64,0xd2,
97 | 0x3d,0xf1,0x4a,0xc7,0x39,0x13,0x10,0xe5,0x53,0xb1,0xa5,0xcb,0xc5,0x32,0x8e,0x1f,
98 | 0x7f,0xad,0x6c,0x8c,0xf9,0xce,0xba,0x00,0x8c,0x31,0x9e,0x65,0x29,0x49,0x44,0xd0,
99 | 0x9a,0xa1,0x0d,0x35,0x56,0x1d,0x2d,0x15,0x56,0xd5,0xd7,0x28,0x56,0x82,0x78,0x13,
100 | 0x6f,0xfc,0x54,0x26,0x30,0xf5,0x8d,0xc9,0xb0,0x6d,0x1b,0x6f,0xbf,0xfd,0x36,0x7e,
101 | 0xf6,0xd3,0x9f,0x42,0x08,0x09,0x66,0x46,0xb9,0x5c,0x5a,0xf2,0x7d,0xff,0x03,0xa5,
102 | 0x54,0xcd,0xb2,0xac,0x8a,0x6d,0xdb,0x25,0x16,0x58,0xf4,0xab,0xfe,0x4b,0xc7,0x8f,
103 | 0x1f,0xff,0xd1,0xba,0x00,0xb4,0xd6,0x9e,0x6d,0xdb,0xd2,0x90,0x81,0x26,0x20,0x34,
104 | 0xcd,0xb0,0x08,0x66,0x18,0x66,0x54,0xaa,0x1a,0x7e,0x68,0x00,0xc8,0x2b,0x3e,0x51,
105 | 0x8a,0x93,0x4b,0x10,0x19,0x28,0xa5,0xe0,0x79,0x1e,0xdc,0x84,0x0d,0xdb,0x72,0x60,
106 | 0xd9,0x36,0x12,0x4e,0xa2,0x87,0x88,0xba,0x82,0x20,0xb8,0x50,0xad,0x56,0x7f,0xb2,
107 | 0xb0,0xb0,0x70,0x72,0x62,0x62,0xe2,0xf4,0xc4,0xc4,0x44,0x79,0xad,0xf7,0xb6,0x59,
108 | 0x40,0x29,0xa5,0x98,0x28,0xae,0xb2,0x9a,0x24,0x15,0x84,0x06,0x7e,0x68,0xe2,0x55,
109 | 0x5f,0xdf,0x65,0x3a,0x89,0x36,0xdc,0xb0,0x80,0x65,0x29,0x48,0x25,0x71,0xc3,0x0d,
110 | 0xbb,0x01,0x29,0x30,0xfb,0xe1,0x47,0x98,0x7c,0x7f,0xb2,0x70,0xfd,0xce,0xeb,0xcf,
111 | 0x8f,0x8c,0x8c,0x0c,0x74,0x75,0x75,0x1d,0x90,0x52,0xfe,0xd9,0xd8,0xd8,0x98,0x76,
112 | 0x1c,0xe7,0x03,0xad,0xf5,0x07,0xbe,0xef,0xbf,0x57,0x2a,0x95,0x8e,0x1c,0x38,0x70,
113 | 0x60,0xb6,0x23,0x80,0x7a,0x99,0x68,0x98,0xa0,0x35,0xa1,0x1a,0x44,0xa7,0x04,0x86,
114 | 0x28,0xe6,0x80,0x95,0xc5,0xc7,0x7a,0xd2,0x1a,0x1a,0x75,0x8b,0x05,0x2c,0xcb,0x86,
115 | 0xa5,0x14,0x6a,0x3a,0xc0,0xf9,0xd9,0xf3,0x74,0xf6,0xfd,0xf7,0x83,0x1f,0xff,0xf8,
116 | 0x67,0x87,0xbf,0xf1,0xaf,0xdf,0x78,0x17,0xc0,0x02,0x80,0x4b,0x7b,0xf6,0xec,0x09,
117 | 0xc7,0xc6,0xc6,0xfa,0x46,0x47,0x47,0x6f,0x4d,0x24,0x12,0x23,0x5d,0x5d,0x5d,0x63,
118 | 0xae,0xeb,0x3e,0x79,0xec,0xd8,0xb1,0xa9,0x62,0xb1,0xf8,0xef,0x0f,0x3d,0xf4,0xd0,
119 | 0x57,0x85,0x10,0xdc,0x00,0x20,0xa5,0xdc,0xa4,0x94,0x02,0x1b,0x82,0xaf,0x01,0x3f,
120 | 0xac,0x7f,0xfe,0xca,0xdd,0xa5,0x2e,0x2d,0x47,0x59,0x08,0xa9,0x19,0x14,0x2c,0x25,
121 | 0x71,0xe1,0xc2,0xaf,0x31,0xf3,0xab,0x99,0x20,0x08,0xc3,0x82,0x0e,0xf5,0xfc,0x4d,
122 | 0x37,0xde,0x74,0xf7,0xcd,0x7b,0x6f,0xbe,0x43,0x29,0xe5,0x2b,0xa5,0x6a,0x4a,0x29,
123 | 0xff,0xbd,0xf7,0xde,0x5b,0x3c,0x75,0xea,0xd4,0x3f,0x1c,0x3f,0x7e,0xfc,0x0d,0x00,
124 | 0x38,0x7c,0xf8,0xf0,0x75,0xc9,0x64,0xf2,0xc9,0x4c,0x26,0xf3,0xe4,0x4b,0x2f,0xbd,
125 | 0xb4,0x13,0xc0,0x63,0xad,0xb9,0x50,0x56,0x29,0x85,0x5a,0x60,0x40,0x66,0x63,0xd1,
126 | 0xe5,0x4a,0xa0,0x18,0x43,0x11,0x94,0x7a,0x88,0xf4,0x3c,0x7c,0x61,0xfc,0x41,0x87,
127 | 0x85,0xc8,0x49,0x81,0x5c,0x04,0x57,0x40,0x80,0x23,0xe8,0x02,0x28,0x16,0x4b,0x38,
128 | 0x76,0xf4,0x3b,0xb7,0x01,0xb8,0x05,0x40,0xf0,0xe8,0xa3,0x8f,0x9e,0x05,0xf0,0x27,
129 | 0x47,0x8e,0x1c,0x79,0x37,0x9d,0x4e,0x3f,0x0d,0xb4,0x87,0xd1,0x1e,0xa5,0x14,0x4a,
130 | 0x35,0x1f,0x41,0xa0,0xd1,0xb3,0x66,0x21,0xb7,0x9a,0xac,0xac,0xc6,0xea,0x4d,0xe5,
131 | 0x8a,0x69,0x86,0x65,0x30,0xc8,0x10,0xf2,0x8b,0xcd,0xfd,0x79,0xeb,0xed,0xb7,0x60,
132 | 0xf2,0xcc,0x14,0x0a,0x4b,0xa5,0x46,0xdb,0xa6,0xbe,0x2c,0xb2,0xb9,0xec,0xc8,0x8e,
133 | 0x1d,0x3b,0xee,0x98,0x99,0x99,0x99,0x1a,0x1f,0x1f,0xb7,0xf7,0xed,0xdb,0xf7,0x47,
134 | 0xe9,0x74,0x7a,0x3c,0x08,0x82,0x9f,0xb4,0x01,0xd0,0x5a,0xf7,0x28,0xa5,0x90,0x74,
135 | 0x05,0xfe,0xea,0x8b,0xc3,0x30,0xa0,0x98,0x5b,0x5a,0x08,0xa6,0x9e,0x2a,0xc7,0xd7,
136 | 0xb9,0xf3,0xe7,0x11,0x04,0x21,0x06,0x06,0xfa,0xe1,0x24,0x12,0x2b,0xc7,0xb7,0xb0,
137 | 0xaa,0x92,0xa2,0x79,0xaf,0x24,0x8c,0x31,0x70,0x5d,0xb7,0xa1,0xec,0xec,0xcc,0x47,
138 | 0x50,0x96,0x6a,0x6b,0x2b,0x2c,0x15,0xf1,0xe9,0xcf,0xdc,0xae,0xfc,0xaa,0x7f,0xf8,
139 | 0xf1,0xc7,0x1f,0x0f,0xd2,0xe9,0xf4,0x00,0x33,0xcf,0xd5,0x6a,0xb5,0x7f,0x9b,0x9c,
140 | 0x9c,0x3c,0xd8,0x06,0xc0,0x18,0x93,0x02,0x18,0x97,0xe6,0x17,0xa0,0x49,0x37,0x6b,
141 | 0xe0,0x35,0x40,0xa4,0x92,0x36,0xd2,0x5d,0x0e,0x42,0xbf,0x8c,0xd0,0x2f,0x37,0x13,
142 | 0xbe,0x55,0x40,0xd4,0x65,0xcb,0x35,0xdb,0x60,0x8c,0x6e,0x53,0xb6,0x54,0xaa,0x60,
143 | 0xd7,0xe8,0x08,0xce,0xbc,0x33,0x05,0xa5,0x9a,0x9e,0xbd,0x7d,0x70,0xab,0x7c,0xed,
144 | 0xbb,0xdf,0xeb,0x3f,0x77,0xee,0xdc,0x91,0xe9,0xe9,0xe9,0x63,0xaf,0xbc,0xf2,0xca,
145 | 0x29,0x00,0x4b,0x00,0xa8,0xdd,0x02,0xa4,0x5f,0xf9,0xf9,0xcf,0xdf,0xd8,0x3d,0x3a,
146 | 0xba,0xc7,0x25,0x8a,0xd8,0xb1,0xbd,0x54,0x6c,0x39,0xeb,0xaf,0xe7,0x45,0xa8,0x33,
147 | 0x27,0x1a,0xfd,0xf5,0x03,0x29,0xa6,0x66,0xed,0x40,0x6c,0x9a,0x0b,0x01,0xe0,0xcd,
148 | 0x37,0xde,0x84,0x97,0xf1,0xda,0x00,0x00,0x2e,0x6c,0xcb,0x81,0x1f,0xf8,0x48,0x75,
149 | 0x59,0x90,0x32,0xaa,0xd6,0x7c,0xdf,0xc7,0xd0,0x35,0x83,0x89,0x6f,0x7d,0xf3,0xd8,
150 | 0xd1,0xe9,0xe9,0xe9,0x33,0x00,0xaa,0x00,0x1a,0xe9,0x6e,0x03,0x40,0x26,0x9d,0xf9,
151 | 0xeb,0x1f,0xbd,0xfe,0x7a,0xed,0xad,0x37,0xdf,0xfe,0xac,0x31,0x26,0x11,0x86,0xa1,
152 | 0x1b,0x86,0x61,0xc2,0x18,0xe3,0x00,0xd8,0xce,0x4c,0x09,0x11,0x53,0xaf,0xb2,0xa2,
153 | 0x69,0x14,0xff,0x36,0x40,0x51,0xc2,0x04,0x22,0x46,0x10,0x04,0x60,0x22,0x40,0x08,
154 | 0xe8,0x30,0x84,0xb2,0x2c,0xd8,0x96,0x05,0xcb,0xb6,0xe1,0x38,0x36,0x94,0x52,0x48,
155 | 0xa7,0xd3,0xb8,0x7f,0x6c,0x1f,0xaa,0xb5,0xc8,0xdf,0x45,0xbc,0x69,0x83,0xc0,0xc7,
156 | 0x75,0xd7,0x0f,0x23,0xbf,0x94,0x47,0x7d,0x23,0x3b,0x09,0x1b,0x77,0xdf,0xf3,0x59,
157 | 0xbc,0x33,0xf1,0xee,0x9d,0xd3,0xd3,0xd3,0xdf,0xaf,0xaf,0x7c,0x5d,0x3a,0x05,0x48,
158 | 0x01,0x20,0x0b,0x60,0x10,0xc0,0x8e,0xde,0xde,0xee,0x3d,0xf7,0x8f,0x3d,0xf0,0xe5,
159 | 0xa1,0xa1,0x21,0x29,0x00,0xd4,0x6a,0x35,0x64,0x7b,0x7b,0x61,0xdb,0x76,0x63,0x42,
160 | 0xeb,0xd6,0xbd,0x74,0xe9,0x12,0x98,0x01,0xdb,0xb2,0xe1,0x3a,0x09,0x38,0xae,0x83,
161 | 0x64,0x32,0x81,0x4c,0xc6,0xc3,0xd0,0xb6,0x41,0xf4,0x6f,0xee,0x47,0xda,0x4b,0x47,
162 | 0x4a,0x03,0x2d,0xdc,0xd2,0x54,0x45,0x00,0x60,0x51,0x6f,0x61,0xb8,0x89,0x24,0x9e,
163 | 0x7a,0xe2,0x4b,0x67,0x8e,0x1e,0xfd,0xe6,0xee,0xe5,0xca,0x76,0x3a,0x99,0x4b,0x23,
164 | 0xaa,0x41,0x5d,0x00,0x21,0x11,0x96,0x7c,0x3f,0xa0,0x9e,0x9e,0x6e,0xd9,0xd7,0x97,
165 | 0x43,0x10,0x84,0x08,0x02,0x1f,0xc6,0x34,0x5d,0x2a,0x52,0x44,0x40,0x4a,0x89,0xed,
166 | 0x3b,0xb6,0xc3,0x4d,0x24,0x50,0x2a,0x15,0x70,0xe6,0xcc,0x24,0x77,0xb9,0x69,0x33,
167 | 0xbc,0x63,0x18,0xb6,0xe5,0xca,0xc5,0x8b,0x05,0x71,0xf9,0xd7,0x79,0x0e,0x82,0x80,
168 | 0xf2,0xf9,0x3c,0x2d,0x2e,0x2e,0x9a,0xd9,0xd9,0x59,0xbf,0x58,0x2c,0xea,0x0e,0x7a,
169 | 0x34,0x01,0x09,0x90,0x94,0xea,0x87,0x1d,0xfb,0x3a,0xb4,0x79,0x00,0x72,0x00,0x36,
170 | 0xc5,0x7f,0xb9,0x5b,0x7e,0x63,0xef,0xe7,0x76,0xef,0xb9,0xe1,0x77,0x77,0xed,0xde,
171 | 0x65,0x6d,0xdd,0xbe,0x0d,0xd7,0x0c,0x0d,0xc2,0x71,0x2c,0x10,0x47,0xe6,0x27,0x8e,
172 | 0xac,0x2a,0x58,0xe0,0xe2,0xfc,0x45,0xcc,0xcc,0x7c,0x88,0xa9,0xc9,0x29,0x33,0x35,
173 | 0x39,0x75,0xfa,0x07,0xdf,0xff,0xe1,0x61,0x44,0xec,0xba,0xb0,0x77,0xef,0x5e,0xba,
174 | 0xf7,0xde,0x7b,0x37,0xef,0xde,0xbd,0xfb,0xc6,0xee,0xee,0xee,0x1d,0x4a,0xa9,0x4f,
175 | 0x85,0x61,0x38,0x62,0x59,0xd6,0xb9,0x5a,0xad,0xf6,0x83,0xf9,0xf9,0xf9,0xbf,0x7c,
176 | 0xe2,0x89,0x27,0x0a,0x6b,0x81,0x59,0x13,0xc0,0x63,0x8f,0x3d,0xf6,0x37,0xbe,0xef,
177 | 0x3f,0x15,0x86,0xa1,0xdb,0xe9,0x87,0xb9,0xb6,0x63,0xc2,0x0e,0x3f,0xda,0x6d,0x44,
178 | 0xa4,0x94,0xe4,0x38,0xce,0x3b,0xb3,0xb3,0xb3,0xb7,0xbe,0xf5,0xd6,0x5b,0xe1,0xa1,
179 | 0x43,0x87,0x06,0x3d,0xcf,0xfb,0xe3,0x54,0x2a,0xf5,0x3b,0x61,0x18,0xca,0x7c,0x3e,
180 | 0x7f,0xe7,0xfe,0xfd,0xfb,0x8b,0x57,0x0c,0xe0,0xc1,0x07,0x1f,0x54,0x69,0x2f,0xbd,
181 | 0xf4,0xe7,0x5f,0xfa,0xd3,0x74,0x26,0x53,0x2f,0x80,0x62,0x56,0x6c,0x5c,0xd1,0xfe,
182 | 0x2c,0x9a,0xfd,0xf5,0x3b,0xb1,0x7c,0xcc,0xf2,0x67,0x66,0x7c,0xe5,0x6f,0xbf,0x5a,
183 | 0xfa,0xc5,0x3b,0xbf,0x18,0x3f,0x79,0xf2,0xe4,0x7f,0xd4,0xbf,0xff,0xc2,0x0b,0x2f,
184 | 0x24,0xb2,0xd9,0xec,0xa9,0x42,0xa1,0xf0,0xcf,0x0f,0x3f,0xfc,0xf0,0x57,0x36,0x0a,
185 | 0xa0,0xb1,0x07,0x12,0x89,0xc4,0x5d,0x43,0x43,0x83,0x3c,0xfb,0xe1,0x47,0x98,0xbf,
186 | 0x70,0x69,0xa3,0xf3,0xd7,0x94,0xcd,0x03,0x7d,0xe8,0x1f,0xdc,0x8c,0x5f,0x4e,0x9c,
187 | 0x69,0x9c,0xf0,0x09,0x21,0xf0,0x5b,0xf7,0xdc,0x95,0x3a,0x7b,0xf6,0xec,0xa3,0x00,
188 | 0x4e,0x03,0xc8,0x1f,0x3a,0x74,0xe8,0xda,0x54,0x2a,0xf5,0x34,0x11,0xa5,0x83,0x20,
189 | 0x78,0xed,0x4a,0xbe,0xd1,0x00,0xa0,0x94,0xfa,0xfc,0x6f,0xde,0x71,0x5b,0x2a,0x7f,
190 | 0xb9,0x08,0xc7,0x71,0xd7,0x9a,0xb3,0x61,0xb9,0xbc,0xb0,0x84,0x6b,0x47,0x86,0x61,
191 | 0x88,0xe0,0xd8,0xcd,0xdc,0x64,0x68,0x68,0x50,0xb8,0xb6,0xbb,0xef,0xe0,0xc1,0x83,
192 | 0x2f,0x6e,0xda,0xb4,0x69,0x9b,0x65,0x59,0xdd,0x44,0xf4,0x46,0xb5,0x5a,0xfd,0xfd,
193 | 0xfd,0xfb,0xf7,0x9f,0xfe,0x24,0x00,0x04,0x33,0xff,0xde,0xc0,0x40,0xbf,0xfc,0xa8,
194 | 0x36,0xd7,0xe8,0x0c,0x82,0x00,0xc5,0x52,0x7e,0x45,0xe5,0xb5,0x5a,0xa2,0x67,0x59,
195 | 0x36,0xbc,0x74,0x7b,0xfd,0x1d,0x04,0x21,0x94,0x92,0xed,0xac,0x5b,0xac,0x60,0xf8,
196 | 0xda,0x61,0x39,0x37,0x37,0x67,0x5f,0xbe,0x7c,0xf9,0x5f,0x26,0x27,0x27,0xbf,0x75,
197 | 0xe2,0xc4,0x89,0x29,0x00,0x95,0x2b,0x51,0x1e,0x88,0x9d,0x74,0x7c,0x7c,0xfc,0xb6,
198 | 0xeb,0x76,0x7e,0xea,0xe4,0x5d,0x77,0xdf,0x9d,0xaa,0x96,0x9a,0x87,0xc0,0xa5,0x4a,
199 | 0x11,0xa9,0x64,0x7a,0xc3,0xa5,0xa3,0x36,0x01,0x2c,0xd5,0x9e,0x05,0xda,0xae,0x82,
200 | 0x21,0x0d,0x0a,0x5b,0xe2,0xbc,0x00,0xa4,0x0d,0xfa,0xda,0xdf,0x7f,0xfd,0xe5,0x13,
201 | 0x27,0x4e,0x3c,0x0d,0x20,0x8f,0x96,0xf4,0xe0,0x4a,0xa4,0x6e,0x81,0xcf,0xdf,0xf1,
202 | 0xe9,0xdb,0x13,0xa5,0x72,0x01,0xa5,0x72,0x33,0x1b,0xcc,0xe5,0x72,0xb8,0x34,0x7f,
203 | 0x19,0x1d,0xb8,0xa6,0xa3,0x0c,0x0d,0xf5,0xe3,0xe3,0x0b,0x17,0xda,0xda,0xfa,0x52,
204 | 0x9b,0x31,0xd4,0xbf,0x05,0xbf,0x9a,0x99,0x69,0xb4,0x05,0x7e,0x80,0x3d,0xd7,0x8f,
205 | 0xca,0x64,0x32,0x79,0x0f,0x80,0x8b,0x00,0xd6,0x2c,0x1b,0xd7,0x05,0xc0,0xcc,0x5f,
206 | 0xd8,0xb9,0x6b,0xa7,0x0a,0xc3,0xb0,0x11,0x45,0xa2,0x45,0x17,0x18,0x1e,0xde,0x81,
207 | 0x7a,0x14,0x11,0x02,0xe0,0x06,0x87,0x46,0x77,0x2c,0x9a,0x2d,0x02,0x02,0x5b,0xb7,
208 | 0x6e,0x6d,0xd0,0x6b,0x1d,0x2f,0x0b,0x81,0xd1,0xd1,0x3d,0xcd,0xb8,0x24,0x00,0x2f,
209 | 0x93,0x41,0x6f,0xb6,0xc7,0xbb,0xef,0xbe,0xfb,0x46,0x5e,0x7d,0xf5,0xd5,0xff,0xfa,
210 | 0x1f,0x01,0x10,0x42,0x9c,0x7e,0xfa,0xa9,0xbf,0xf0,0x88,0x48,0x2e,0x8f,0xef,0xab,
211 | 0x09,0x33,0xaf,0xeb,0x57,0x42,0x88,0x35,0xc9,0x41,0x4a,0xb1,0xc8,0xcc,0x1b,0x8e,
212 | 0xf9,0xff,0x2f,0xe5,0xbf,0x01,0x87,0x4a,0x9f,0xc8,0x90,0x96,0xd3,0x01,0x00,0x00,
213 | 0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
214 | };
215 |
216 |
--------------------------------------------------------------------------------
/tango/network-transmit-receive.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/network-transmit-receive.png
--------------------------------------------------------------------------------
/tango/network-transmit-receive.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file network-transmit-receive.png */
4 | const unsigned char networktransmitreceive[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0xf9,
8 | 0x43,0xbb,0x7f,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x12,0x00,
9 | 0x00,0x0b,0x12,0x01,0xd2,0xdd,0x7e,0xfc,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd6,0x02,0x10,0x15,0x39,0x27,0x93,0x09,0x08,0x27,0x00,0x00,0x00,0x3e,0x74,
11 | 0x45,0x58,0x74,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x00,0x43,0x72,0x65,0x61,0x74,
12 | 0x65,0x64,0x20,0x77,0x69,0x74,0x68,0x20,0x54,0x68,0x65,0x20,0x47,0x49,0x4d,0x50,
13 | 0x0a,0x0a,0x28,0x63,0x29,0x20,0x32,0x30,0x30,0x33,0x20,0x4a,0x61,0x6b,0x75,0x62,
14 | 0x20,0x27,0x6a,0x69,0x6d,0x6d,0x61,0x63,0x27,0x20,0x53,0x74,0x65,0x69,0x6e,0x65,
15 | 0x72,0x27,0x33,0xef,0x58,0x00,0x00,0x02,0x61,0x49,0x44,0x41,0x54,0x38,0xcb,0x9d,
16 | 0x94,0xb1,0x4f,0x13,0x51,0x18,0xc0,0x7f,0x77,0xbd,0x96,0x46,0x88,0xa6,0xc5,0xb0,
17 | 0xb0,0x48,0xce,0x0e,0x2c,0x06,0x30,0xe9,0xa0,0x83,0x98,0x18,0x23,0x93,0x31,0x75,
18 | 0x77,0x14,0x22,0x89,0x31,0x71,0x24,0x77,0xb9,0x4a,0xa2,0x13,0x83,0x1a,0x21,0xc4,
19 | 0x19,0x5a,0x05,0x8c,0x2e,0xfd,0x13,0x1c,0x8a,0x75,0x70,0x40,0x83,0x0d,0x45,0x4c,
20 | 0x91,0x92,0x16,0x8a,0xa7,0x94,0xa6,0xed,0x39,0xdc,0xf5,0xd2,0xb3,0x2d,0x47,0xf9,
21 | 0x92,0xcb,0x4b,0xde,0xbd,0xf7,0xfb,0xbe,0xbc,0xef,0xf7,0x9e,0xc0,0x31,0x11,0x9d,
22 | 0x56,0x97,0x80,0x08,0x27,0x8f,0x39,0x65,0x4a,0x9b,0x00,0x90,0x5c,0x16,0x46,0x6e,
23 | 0xde,0xb8,0x85,0x3c,0x38,0xe4,0x4a,0xdc,0xdb,0xf9,0x41,0xec,0xcd,0xc2,0x38,0x70,
24 | 0x22,0x30,0xf2,0xe0,0x10,0x77,0x26,0x97,0xf1,0xf9,0xda,0x2f,0x2d,0x97,0x2b,0x7c,
25 | 0x98,0xbd,0xeb,0x98,0x73,0x05,0x77,0x79,0x3d,0xf8,0x7c,0x12,0x97,0x46,0x06,0xc0,
26 | 0x00,0x03,0x10,0x04,0x6b,0xc4,0x1c,0xbf,0xa4,0x36,0x9a,0xf6,0xb9,0x82,0x2b,0xb5,
27 | 0x1a,0x00,0xa2,0xe8,0x01,0xa1,0x11,0x27,0x00,0xf0,0x2d,0xbd,0xdb,0x72,0x9f,0x2b,
28 | 0xd8,0xe2,0xe2,0x91,0x44,0x7b,0xee,0xd7,0xae,0xce,0xfe,0x41,0x09,0xfd,0x4f,0x09,
29 | 0x10,0xcd,0x54,0x46,0x87,0xe0,0x7a,0x88,0x1e,0x91,0x5c,0x5e,0x67,0x6b,0xfb,0x00,
30 | 0x0c,0xc1,0x4a,0xe6,0x05,0x0c,0x6a,0xad,0xc0,0x6e,0x4a,0xbd,0x7a,0xfe,0x94,0xd1,
31 | 0x01,0x20,0xbb,0xc6,0x00,0x70,0xc6,0xe7,0x67,0xbd,0x76,0x19,0xec,0x43,0x11,0xa8,
32 | 0xb5,0x39,0x8a,0x4e,0x95,0x62,0x6d,0xa3,0xd0,0x64,0x85,0xf1,0x5f,0xc9,0xd2,0x69,
33 | 0x94,0x8a,0xcf,0xdc,0x6e,0xfa,0xbf,0xb3,0x95,0x6e,0x06,0x77,0xaa,0xd4,0xec,0x8b,
34 | 0x67,0xed,0xf2,0x2b,0x0e,0x70,0xa7,0x4a,0x4d,0xdc,0x9f,0x04,0x20,0x9d,0x4e,0x53,
35 | 0xad,0x56,0xcd,0x8b,0x24,0xcb,0xcc,0xbf,0x9e,0x8d,0x02,0x4f,0x6c,0x70,0xa7,0x4a,
36 | 0x15,0x0a,0xe6,0x19,0x07,0x02,0x01,0x7b,0x7d,0xb1,0x58,0xb4,0x05,0x02,0x6a,0xd2,
37 | 0x69,0x94,0x8a,0xbf,0x5d,0x70,0x6d,0xb4,0x03,0xfc,0xf9,0x6b,0xce,0x4c,0x60,0xc1,
38 | 0xda,0x29,0xa5,0x4c,0x69,0xf7,0xea,0x3d,0x55,0x55,0x65,0x71,0x6c,0x6c,0x8c,0x44,
39 | 0x22,0x81,0xa6,0x45,0xbd,0x80,0x17,0x38,0x92,0x00,0x7c,0x92,0x48,0xb9,0x5c,0x81,
40 | 0x7c,0xe1,0x58,0x2b,0x1a,0x94,0x7a,0x6f,0x37,0x00,0xe8,0xee,0xee,0xb1,0x5f,0x00,
41 | 0xeb,0x33,0x2b,0xfe,0x99,0xf9,0xce,0xbb,0x97,0xee,0xcf,0x6e,0x83,0x52,0x45,0xa0,
42 | 0x2b,0x12,0x89,0x0c,0x03,0xac,0xac,0x2c,0x03,0xa0,0xaa,0x4a,0x48,0xd3,0xa2,0xeb,
43 | 0x75,0xf0,0xdc,0xd2,0x4a,0x7c,0xbc,0x83,0xc7,0x5c,0x51,0x55,0xc5,0x2e,0x3d,0x14,
44 | 0x0a,0x31,0x3c,0x3c,0x82,0x28,0x8a,0xc4,0x62,0x8b,0xf3,0xc0,0xf5,0x3a,0x78,0xfc,
45 | 0xd1,0xc3,0xc7,0x54,0xab,0x55,0x36,0x37,0x37,0xe9,0xef,0xef,0x77,0xdc,0xa2,0x56,
46 | 0x4a,0x05,0x02,0x41,0x64,0x59,0x26,0x95,0xfa,0x44,0x30,0xd8,0x4b,0x5f,0x5f,0x1f,
47 | 0xb9,0x5c,0x0e,0xe0,0x8a,0xa3,0x79,0xd9,0x6c,0x16,0x00,0xbf,0xdf,0x4f,0x3e,0x9f,
48 | 0x77,0x94,0xd7,0x4a,0xa9,0xbd,0xbd,0x02,0xab,0xab,0x66,0x3f,0xb6,0xb7,0xb3,0x24,
49 | 0x93,0x49,0x0e,0x0f,0xff,0x62,0x18,0xc6,0x47,0x07,0xf8,0x24,0xfa,0x34,0x86,0xa6,
50 | 0x45,0x2f,0x02,0xa5,0x70,0x38,0x7c,0x75,0x74,0xf4,0xda,0x74,0x26,0x93,0xb9,0x50,
51 | 0xa9,0x54,0x52,0xba,0xae,0x3f,0xa8,0xaf,0x11,0x80,0xf3,0x0d,0x49,0x7a,0x81,0xb3,
52 | 0x80,0xa7,0xa1,0xcb,0x47,0x56,0xb3,0x74,0xcb,0x41,0x11,0x38,0x00,0xca,0x40,0x0f,
53 | 0x70,0xce,0xe2,0xec,0x03,0xbf,0xc1,0x34,0xf3,0x1f,0xce,0xc9,0x1c,0x00,0xb5,0xfc,
54 | 0x01,0x11,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
55 | };
56 |
57 |
--------------------------------------------------------------------------------
/tango/process-stop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/signal11/PlayCap/27191cbbd8579a85835d87ce8d1225c6622bbd1e/tango/process-stop.png
--------------------------------------------------------------------------------
/tango/process-stop.png.h:
--------------------------------------------------------------------------------
1 | /* Generated by reswrap version 4.0.0 */
2 |
3 | /* created by reswrap from file process-stop.png */
4 | const unsigned char processstop[]={
5 | 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52,
6 | 0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x16,0x08,0x06,0x00,0x00,0x00,0xc4,0xb4,0x6c,
7 | 0x3b,0x00,0x00,0x00,0x06,0x62,0x4b,0x47,0x44,0x00,0x00,0x00,0x00,0x00,0x00,0xf9,
8 | 0x43,0xbb,0x7f,0x00,0x00,0x00,0x09,0x70,0x48,0x59,0x73,0x00,0x00,0x0b,0x13,0x00,
9 | 0x00,0x0b,0x13,0x01,0x00,0x9a,0x9c,0x18,0x00,0x00,0x00,0x07,0x74,0x49,0x4d,0x45,
10 | 0x07,0xd5,0x0a,0x11,0x17,0x2b,0x00,0x43,0x2b,0x47,0xfb,0x00,0x00,0x04,0x85,0x49,
11 | 0x44,0x41,0x54,0x38,0xcb,0x8d,0x95,0x5b,0x68,0x54,0x47,0x18,0xc7,0x7f,0x73,0xce,
12 | 0x6e,0xf6,0x92,0x6c,0xe2,0x0d,0xb5,0xb5,0x6a,0x48,0x5b,0x4d,0x0d,0x16,0xdc,0x66,
13 | 0xc5,0x18,0x0d,0x16,0x95,0x52,0x0a,0x81,0xbe,0x44,0xc4,0x06,0x94,0xb6,0xd8,0x42,
14 | 0x29,0xb6,0x54,0x8b,0xd1,0x07,0x95,0xc4,0x7a,0x81,0xfa,0xd0,0x87,0x42,0xfb,0x16,
15 | 0xa1,0x50,0x41,0x10,0xa9,0xad,0xb6,0x09,0xa5,0x28,0xda,0x82,0xa6,0x18,0x73,0xd1,
16 | 0xb4,0x49,0x9b,0xdb,0xba,0xbb,0x49,0xdc,0xdd,0xec,0xd9,0xeb,0x39,0x73,0xa6,0x0f,
17 | 0xbb,0xae,0xc6,0x44,0xe9,0xc0,0xc7,0x3c,0xcc,0xcc,0x6f,0xbe,0xf9,0x2e,0xff,0x11,
18 | 0x3c,0x63,0x1c,0x87,0x25,0x80,0x78,0xc6,0x96,0x48,0x0b,0xd8,0x73,0x2d,0x3c,0xf5,
19 | 0xd0,0x49,0xf8,0x42,0xc1,0xa7,0x02,0xe4,0x5c,0xeb,0x0a,0x34,0x01,0xe7,0x25,0xbc,
20 | 0xd3,0x02,0xea,0x7f,0x81,0x4f,0xc2,0xe9,0xea,0x86,0x86,0x8f,0xb6,0x36,0x35,0xb9,
21 | 0x75,0x97,0x0b,0x94,0x2a,0x9a,0xb2,0x6d,0xb0,0x2c,0xac,0x54,0x8a,0x9f,0xdb,0xdb,
22 | 0x33,0x83,0x7d,0x7d,0xdf,0x4b,0xd8,0xf3,0x24,0x7c,0x16,0xf8,0x04,0x9c,0xa9,0xae,
23 | 0xaf,0xff,0x60,0xdb,0xce,0x9d,0xee,0x78,0x5f,0x1f,0xa9,0xf1,0x71,0xb0,0x6d,0xb0,
24 | 0xed,0x3c,0x54,0x4a,0x94,0x94,0xb8,0x17,0x2d,0x62,0xfe,0x9a,0x35,0x5c,0x39,0x77,
25 | 0x2e,0x33,0xd4,0xdb,0xfb,0xdd,0xe7,0xf0,0xee,0xe3,0x1c,0xfd,0x09,0xe8,0x57,0xd5,
26 | 0x75,0x75,0xef,0x6f,0xdb,0xb5,0xcb,0x13,0xef,0xeb,0x23,0x1d,0x0a,0x21,0x44,0xe1,
27 | 0x6e,0xa5,0x1e,0xcd,0x4a,0x61,0x19,0x06,0x96,0x61,0x50,0x53,0x5f,0xef,0x88,0xc6,
28 | 0xe3,0xd5,0xaf,0x85,0xc3,0xcb,0x3b,0xe0,0x87,0x59,0xe0,0x13,0xf0,0xf5,0xea,0x40,
29 | 0x60,0xcf,0xf6,0xe6,0x66,0x4f,0xac,0xa7,0x87,0x74,0x24,0x42,0xcc,0xe3,0x41,0x2a,
30 | 0x85,0xcb,0xb6,0x67,0x84,0xc3,0x10,0x82,0xe9,0x92,0x12,0x1c,0xb1,0x18,0x66,0x32,
31 | 0xc9,0x9a,0xf5,0xeb,0x9d,0x53,0xb1,0x58,0x4d,0xed,0xc4,0xc4,0xd2,0x0e,0xf8,0xa9,
32 | 0x08,0x3e,0x01,0xdf,0xae,0xf6,0xfb,0x9b,0xb7,0xef,0xde,0xed,0x89,0xde,0xbe,0x4d,
33 | 0x3a,0x12,0x21,0xea,0x76,0x23,0xaa,0xaa,0xc8,0x98,0x26,0x76,0x36,0x5b,0x84,0x27,
34 | 0x84,0x20,0xe1,0xf3,0xe1,0x5d,0xbb,0x96,0x78,0x38,0x8c,0x23,0x16,0xc3,0x4a,0xa5,
35 | 0x78,0xc5,0xef,0x77,0x46,0x13,0x89,0xb5,0xb5,0x13,0x13,0x0b,0x3b,0xe0,0x8a,0x06,
36 | 0x20,0x1c,0x8e,0xf7,0xb6,0x37,0x37,0x7b,0xa2,0x5d,0x5d,0x64,0x42,0x21,0x72,0x4a,
37 | 0x91,0xb5,0x2c,0x16,0xec,0xd8,0xc1,0xd2,0x7d,0xfb,0x48,0xf9,0x7c,0x4c,0x0b,0x81,
38 | 0xa1,0x69,0x18,0x65,0x65,0xac,0x6a,0x6d,0x65,0xc5,0xde,0xbd,0x98,0x42,0x90,0x56,
39 | 0x0a,0x23,0x12,0xe1,0xc1,0xe0,0x20,0x5b,0xb7,0x6c,0xf1,0x68,0x1e,0xcf,0x27,0x00,
40 | 0x1a,0x80,0xae,0xeb,0x68,0x42,0x90,0xbe,0x7f,0x1f,0x0a,0x4f,0xf7,0x5a,0x16,0xa1,
41 | 0x33,0x67,0x10,0x42,0xb0,0xec,0xc0,0x01,0x52,0xe5,0xe5,0x18,0xa5,0xa5,0xbc,0xdc,
42 | 0xda,0x8a,0xb3,0xb4,0x94,0xbf,0x0e,0x1d,0xc2,0x6d,0x9a,0xb8,0x00,0xa5,0x14,0x46,
43 | 0x38,0x8c,0xae,0x69,0xa8,0x42,0x2e,0x1c,0xc5,0xba,0x54,0x2a,0x9f,0x79,0x21,0x40,
44 | 0x29,0x2a,0x6c,0x9b,0xf8,0xd4,0x14,0xc1,0xd3,0xa7,0x59,0x71,0xf0,0x20,0x2f,0x1e,
45 | 0x3f,0x8e,0xae,0x69,0x68,0x4a,0x31,0x70,0xf8,0x30,0x04,0x83,0xf8,0x72,0x39,0x94,
46 | 0x52,0x28,0xa5,0xb0,0x95,0x02,0x29,0x8b,0x49,0xd6,0x1e,0x55,0xbc,0x2a,0x96,0xd3,
47 | 0xc3,0x92,0x2a,0xcf,0xe5,0x60,0x72,0x92,0xa9,0x0b,0x17,0x70,0x7a,0x3c,0x38,0xbd,
48 | 0x5e,0x22,0x17,0x2f,0x62,0x8d,0x8d,0x15,0xa1,0xb6,0x6d,0x63,0x3f,0x84,0xcb,0x47,
49 | 0xbd,0xe4,0x78,0x1c,0x8c,0x6d,0xe7,0x3d,0xd7,0xf2,0xf7,0x25,0x74,0x1d,0xe9,0x76,
50 | 0xb3,0xb8,0xb1,0x11,0x4d,0x08,0x34,0xe0,0xb9,0xc6,0x46,0xe2,0xb7,0x6e,0x61,0x49,
51 | 0x89,0xea,0xee,0x46,0x9a,0x26,0xb6,0x69,0xa2,0x34,0x0d,0x4a,0x4a,0xf2,0xce,0xcd,
52 | 0xf2,0x58,0xca,0x7c,0x33,0x48,0x49,0x02,0x30,0x3c,0x1e,0x5e,0x3a,0x76,0x0c,0x67,
53 | 0x59,0x19,0xff,0x9c,0x3a,0x45,0xdf,0xfe,0xfd,0x68,0x42,0x50,0x73,0xf4,0x28,0x53,
54 | 0xe3,0xe3,0xc4,0xa5,0x24,0xd9,0xd3,0x43,0xf2,0xde,0x3d,0x8c,0xfe,0x7e,0xe4,0xf0,
55 | 0x30,0xb6,0x69,0xce,0x04,0x3f,0x84,0x2a,0x29,0xc9,0x48,0x49,0x72,0xde,0x3c,0x56,
56 | 0xb5,0xb5,0xa1,0x7b,0xbd,0xfc,0xdd,0xd6,0x46,0xa6,0xab,0x8b,0xe8,0xd9,0xb3,0xf4,
57 | 0x1f,0x39,0x82,0xd3,0xe5,0x62,0x63,0x7b,0x3b,0x19,0x97,0x8b,0x14,0x79,0x15,0x72,
58 | 0x2c,0x5e,0x8c,0xf2,0xf9,0x66,0x86,0x42,0x4a,0x89,0x39,0x38,0x88,0x98,0x9a,0x22,
59 | 0x15,0x0c,0x62,0x99,0x26,0x6c,0xda,0x44,0xe2,0xe6,0x4d,0xee,0x5f,0xba,0x44,0xee,
60 | 0xfa,0x75,0x4a,0x47,0x47,0x29,0x07,0x12,0x97,0x2f,0xd3,0xad,0x69,0xbc,0xd0,0xd4,
61 | 0x84,0xab,0xa2,0x02,0x2b,0x2f,0x48,0xe8,0x2e,0x17,0x62,0xe9,0xd2,0x99,0x2d,0xbd,
62 | 0xcd,0xb6,0xad,0xb1,0xe1,0xe1,0xba,0x75,0x0d,0x0d,0xce,0x5c,0x24,0x42,0x6e,0x62,
63 | 0x02,0x67,0x22,0xc1,0x83,0x70,0x18,0x35,0x32,0x82,0x67,0x60,0x00,0xbb,0x00,0xd0,
64 | 0xa6,0xa7,0x89,0xde,0xb9,0x43,0x2e,0x99,0xc4,0x15,0x8d,0x92,0x1b,0x19,0xc1,0xb3,
65 | 0x72,0x25,0x55,0x81,0x00,0x3d,0x37,0x6e,0x98,0xa1,0xc9,0xc9,0xdb,0x1d,0xf0,0x8d,
66 | 0x0e,0xd0,0x01,0x57,0xeb,0x52,0x29,0x35,0x3a,0x36,0xb6,0x71,0xdd,0xe6,0xcd,0xce,
67 | 0x9c,0x61,0x90,0x09,0x06,0xd1,0x86,0x86,0xd0,0x43,0xa1,0x22,0xd4,0x2e,0x98,0x53,
68 | 0x4a,0x72,0xbd,0xbd,0x64,0x47,0x46,0x28,0xad,0xac,0xa4,0x32,0x10,0xe0,0x4e,0x6f,
69 | 0xaf,0xf9,0xe7,0xdd,0xbb,0x7f,0xd8,0xf0,0x7a,0x27,0x58,0x45,0xad,0xe8,0x80,0xab,
70 | 0x1b,0xd3,0x69,0x39,0x3a,0x3e,0x5e,0xef,0xaf,0xaf,0x77,0xe6,0x92,0x49,0xb2,0xf1,
71 | 0x78,0x11,0xa6,0xe6,0x98,0xcb,0x2a,0x2b,0x59,0x59,0x5b,0xcb,0xef,0x9d,0x9d,0xd9,
72 | 0xfe,0xb1,0xb1,0x5f,0x6d,0x78,0xb3,0x05,0xb2,0xb3,0xd4,0xad,0x03,0xae,0xd5,0x65,
73 | 0x32,0xe6,0x68,0x30,0xb8,0xc9,0x1f,0x08,0x38,0x73,0x99,0x0c,0xd9,0x74,0x1a,0x74,
74 | 0x1d,0xa5,0xeb,0xa0,0x69,0xa8,0x82,0x95,0x57,0x55,0xb1,0xdc,0xef,0xe7,0xda,0x2f,
75 | 0xbf,0x64,0x86,0x62,0xb1,0x1f,0x6d,0x78,0xbb,0x05,0xac,0xa7,0xe9,0xb1,0x13,0x58,
76 | 0xf2,0x31,0x7c,0x56,0xe3,0xf3,0x7d,0xf8,0xd6,0x86,0x0d,0x25,0xce,0xf9,0xf3,0x11,
77 | 0x65,0x65,0xf9,0xe2,0x2f,0x68,0xb2,0x92,0x12,0xe5,0xf5,0xd2,0x79,0xfe,0xbc,0xd9,
78 | 0x1d,0x8f,0xff,0xf6,0x25,0x1c,0xb2,0x21,0x02,0x84,0x81,0xf4,0x93,0xe0,0x52,0x60,
79 | 0x39,0xf0,0x3c,0xb0,0xac,0x09,0x76,0xbc,0x0a,0x6f,0x00,0x42,0xe5,0xf7,0x09,0x05,
80 | 0x42,0xe4,0xa3,0xa0,0x04,0xa8,0x01,0xe8,0x6f,0x87,0x73,0xc0,0x38,0x10,0x04,0xfe,
81 | 0x05,0x06,0x01,0x53,0xcc,0xf1,0x55,0x79,0x01,0x1f,0x50,0x01,0x2c,0x04,0x16,0x00,
82 | 0x8b,0x80,0x79,0x85,0x17,0x19,0x40,0x1c,0x78,0x50,0xb0,0x28,0x30,0x0d,0xc4,0x28,
83 | 0xc4,0x17,0xe0,0x3f,0x98,0x97,0x64,0xf0,0xa2,0x79,0x08,0xf3,0x00,0x00,0x00,0x00,
84 | 0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82
85 | };
86 |
87 |
--------------------------------------------------------------------------------