Add original resources back and update code to match

https://codereview.appspot.com/6842061/



git-svn-id: http://skia.googlecode.com/svn/trunk@6484 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/debugger/QT/Icons/.qrc b/debugger/QT/Icons/.qrc
new file mode 100644
index 0000000..043daa1
--- /dev/null
+++ b/debugger/QT/Icons/.qrc
@@ -0,0 +1,16 @@
+ <!DOCTYPE RCC><RCC version="1.0">

+ <qresource>

+   <file>skia.png</file>

+   <file>delete.png</file>

+   <file>breakpoint_16x16.png</file>

+   <file>blank.png</file>

+   <file>breakpoint.png</file>

+   <file>inspector.png</file>

+   <file>reload.png</file>

+   <file>play.png</file>

+   <file>pause.png</file>

+   <file>rewind.png</file>

+   <file>previous.png</file>

+   <file>next.png</file>

+ </qresource>

+ </RCC>
\ No newline at end of file
diff --git a/debugger/QT/Icons/blank.png b/debugger/QT/Icons/blank.png
new file mode 100644
index 0000000..97246fb
--- /dev/null
+++ b/debugger/QT/Icons/blank.png
Binary files differ
diff --git a/debugger/QT/Icons/breakpoint.png b/debugger/QT/Icons/breakpoint.png
new file mode 100644
index 0000000..b6290b4
--- /dev/null
+++ b/debugger/QT/Icons/breakpoint.png
Binary files differ
diff --git a/debugger/QT/Icons/breakpoint_16x16.png b/debugger/QT/Icons/breakpoint_16x16.png
new file mode 100644
index 0000000..a25ece8
--- /dev/null
+++ b/debugger/QT/Icons/breakpoint_16x16.png
Binary files differ
diff --git a/debugger/QT/Icons/delete.png b/debugger/QT/Icons/delete.png
new file mode 100644
index 0000000..50b604f
--- /dev/null
+++ b/debugger/QT/Icons/delete.png
Binary files differ
diff --git a/debugger/QT/Icons/doit.bat b/debugger/QT/Icons/doit.bat
new file mode 100644
index 0000000..09d7149
--- /dev/null
+++ b/debugger/QT/Icons/doit.bat
@@ -0,0 +1 @@
+c:\Qt\4.8.3\bin\rcc.exe .qrc -o qrc_SkIcons.cpp -no-compress

diff --git a/debugger/QT/Icons/next.png b/debugger/QT/Icons/next.png
new file mode 100644
index 0000000..aae8934
--- /dev/null
+++ b/debugger/QT/Icons/next.png
Binary files differ
diff --git a/debugger/QT/Icons/pause.png b/debugger/QT/Icons/pause.png
new file mode 100644
index 0000000..a026a54
--- /dev/null
+++ b/debugger/QT/Icons/pause.png
Binary files differ
diff --git a/debugger/QT/Icons/play.png b/debugger/QT/Icons/play.png
new file mode 100644
index 0000000..5528baf
--- /dev/null
+++ b/debugger/QT/Icons/play.png
Binary files differ
diff --git a/debugger/QT/Icons/previous.png b/debugger/QT/Icons/previous.png
new file mode 100644
index 0000000..3396a3f
--- /dev/null
+++ b/debugger/QT/Icons/previous.png
Binary files differ
diff --git a/debugger/QT/Icons/reload.png b/debugger/QT/Icons/reload.png
new file mode 100644
index 0000000..316f36c
--- /dev/null
+++ b/debugger/QT/Icons/reload.png
Binary files differ
diff --git a/debugger/QT/Icons/rewind.png b/debugger/QT/Icons/rewind.png
new file mode 100644
index 0000000..d8d4902
--- /dev/null
+++ b/debugger/QT/Icons/rewind.png
Binary files differ
diff --git a/debugger/QT/Icons/skia.png b/debugger/QT/Icons/skia.png
new file mode 100644
index 0000000..017ee4f
--- /dev/null
+++ b/debugger/QT/Icons/skia.png
Binary files differ
diff --git a/debugger/QT/SkDebuggerGUI.cpp b/debugger/QT/SkDebuggerGUI.cpp
index 20fb5ec..d548d7b 100644
--- a/debugger/QT/SkDebuggerGUI.cpp
+++ b/debugger/QT/SkDebuggerGUI.cpp
@@ -305,14 +305,14 @@
         QListWidgetItem* item = fListWidget.item(row);
         item->setCheckState(Qt::Unchecked);
         item->setData(Qt::DecorationRole,
-                QPixmap(":/images/Icons/blank.png"));
+                QPixmap(":/blank.png"));
     }
 }
 
 void SkDebuggerGUI::actionClearDeletes() {
     for (int row = 0; row < fListWidget.count(); row++) {
         QListWidgetItem* item = fListWidget.item(row);
-        item->setData(Qt::UserRole + 2, QPixmap(":/images/Icons/blank.png"));
+        item->setData(Qt::UserRole + 2, QPixmap(":/blank.png"));
         fDebugger.setCommandVisible(row, true);
     }
     if (fPause) {
@@ -337,10 +337,10 @@
     QListWidgetItem* item = fListWidget.currentItem();
 
     if (fDebugger.isCommandVisible(currentRow)) {
-        item->setData(Qt::UserRole + 2, QPixmap(":/images/Icons/delete.png"));
+        item->setData(Qt::UserRole + 2, QPixmap(":/delete.png"));
         fDebugger.setCommandVisible(currentRow, false);
     } else {
-        item->setData(Qt::UserRole + 2, QPixmap(":/images/Icons/blank.png"));
+        item->setData(Qt::UserRole + 2, QPixmap(":/blank.png"));
         fDebugger.setCommandVisible(currentRow, true);
     }
 
@@ -505,11 +505,11 @@
     if (item->checkState() == Qt::Unchecked) {
         item->setCheckState(Qt::Checked);
         item->setData(Qt::DecorationRole,
-                QPixmap(":/images/Icons/breakpoint_16x16.png"));
+                QPixmap(":/breakpoint_16x16.png"));
     } else {
         item->setCheckState(Qt::Unchecked);
         item->setData(Qt::DecorationRole,
-                QPixmap(":/images/Icons/blank.png"));
+                QPixmap(":/blank.png"));
     }
 }
 
@@ -526,7 +526,7 @@
 
 void SkDebuggerGUI::setupUi(QMainWindow *SkDebuggerGUI) {
     QIcon windowIcon;
-    windowIcon.addFile(QString::fromUtf8(":/images/Icons/skia.png"), QSize(),
+    windowIcon.addFile(QString::fromUtf8(":/skia.png"), QSize(),
             QIcon::Normal, QIcon::Off);
     SkDebuggerGUI->setObjectName(QString::fromUtf8("SkDebuggerGUI"));
     SkDebuggerGUI->resize(1200, 1000);
@@ -537,14 +537,14 @@
     fActionOpen.setText("Open");
 
     QIcon breakpoint;
-    breakpoint.addFile(QString::fromUtf8(":/images/Icons/breakpoint.png"),
+    breakpoint.addFile(QString::fromUtf8(":/breakpoint.png"),
             QSize(), QIcon::Normal, QIcon::Off);
     fActionBreakpoint.setShortcut(QKeySequence(tr("Ctrl+B")));
     fActionBreakpoint.setIcon(breakpoint);
     fActionBreakpoint.setText("Breakpoints");
 
     QIcon cancel;
-    cancel.addFile(QString::fromUtf8(":/images/Ico/reload.png"), QSize(),
+    cancel.addFile(QString::fromUtf8(":/reload.png"), QSize(),
             QIcon::Normal, QIcon::Off);
     fActionCancel.setIcon(cancel);
     fActionCancel.setText("Clear Filter");
@@ -597,7 +597,7 @@
     fActionPause.setText("Pause");
 
     QIcon rewind;
-    rewind.addFile(QString::fromUtf8(":/images/Ico/rewind.png"), QSize(),
+    rewind.addFile(QString::fromUtf8(":/rewind.png"), QSize(),
             QIcon::Normal, QIcon::Off);
     fActionRewind.setShortcut(QKeySequence(tr("Ctrl+R")));
     fActionRewind.setIcon(rewind);
@@ -614,14 +614,14 @@
     fActionShowDeletes.setText("Deleted Commands");
 
     QIcon stepBack;
-    stepBack.addFile(QString::fromUtf8(":/images/Ico/previous.png"), QSize(),
+    stepBack.addFile(QString::fromUtf8(":/previous.png"), QSize(),
             QIcon::Normal, QIcon::Off);
     fActionStepBack.setShortcut(QKeySequence(tr("[")));
     fActionStepBack.setIcon(stepBack);
     fActionStepBack.setText("Step Back");
 
     QIcon stepForward;
-    stepForward.addFile(QString::fromUtf8(":/images/Ico/next.png"),
+    stepForward.addFile(QString::fromUtf8(":/next.png"),
             QSize(), QIcon::Normal, QIcon::Off);
     fActionStepForward.setShortcut(QKeySequence(tr("]")));
     fActionStepForward.setIcon(stepForward);
diff --git a/debugger/QT/qrc_SkIcons.cpp b/debugger/QT/qrc_SkIcons.cpp
index 2e873b0..cda45f9 100644
--- a/debugger/QT/qrc_SkIcons.cpp
+++ b/debugger/QT/qrc_SkIcons.cpp
@@ -1,8 +1,8 @@
 /****************************************************************************
 ** Resource object code
 **
-** Created: Mon Jul 16 13:14:59 2012
-**      by: The Resource Compiler for Qt version 4.8.1
+** Created: Sat Nov 17 10:29:08 2012
+**      by: The Resource Compiler for Qt version 4.8.3
 **
 ** WARNING! All changes made in this file will be lost!
 *****************************************************************************/
@@ -10,7 +10,7 @@
 #include <QtCore/qglobal.h>
 
 static const unsigned char qt_resource_data[] = {
-  // /usr/local/google/home/chudy/Icons/skia.png
+  // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/skia.png
   0x0,0x0,0x4,0x1e,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -79,7 +79,7 @@
   0x69,0x86,0xa2,0x6f,0x34,0xf6,0x6,0x39,0x2f,0x1,0x98,0xc7,0xcc,0xe6,0x31,0xcc,
   0x43,0xe0,0x85,0xe9,0xf,0xe0,0xb7,0xf8,0x5,0xfe,0x47,0xd1,0xc6,0x31,0x88,0x99,
   0xe7,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Icons/delete.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/delete.png
   0x0,0x0,0x5,0x87,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -171,7 +171,195 @@
   0xe9,0x96,0xe,0x90,0x34,0x95,0x67,0xde,0xbc,0x1,0xfe,0x2f,0xbb,0xe1,0xff,0x8e,
   0xff,0x6,0xd,0xb3,0xf2,0x0,0x51,0x1b,0x2c,0x34,0x0,0x0,0x0,0x0,0x49,0x45,
   0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Icons/breakpoint_16x16.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/next.png
+  0x0,0x0,0x3,0xaa,
+  0x89,
+  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+  0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
+  0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
+  0x0,0x0,0x3,0x61,0x49,0x44,0x41,0x54,0x58,0x85,0xed,0x94,0xcf,0x6b,0x5c,0x55,
+  0x14,0xc7,0x3f,0xe7,0xce,0xbc,0x37,0x49,0x67,0xda,0x12,0xb1,0x58,0x1b,0x27,0xbf,
+  0x9a,0xa1,0x6a,0x2c,0xa9,0x82,0xc5,0x6c,0x5c,0x8a,0x8a,0x3f,0xa0,0xa2,0x36,0x41,
+  0xc1,0x85,0xe8,0xae,0x2b,0x45,0xff,0x5,0x75,0x33,0x71,0xab,0xd0,0xa0,0x55,0xa1,
+  0x25,0x14,0x71,0x21,0x76,0x84,0xce,0xc4,0x3f,0x41,0xb0,0x69,0x2b,0x46,0xd1,0x4a,
+  0xea,0xc2,0x4c,0x52,0xdb,0x79,0x3f,0xef,0x75,0x71,0xdf,0x1b,0x5e,0xa6,0x9d,0x8c,
+  0x29,0x63,0x5d,0x98,0x3,0x87,0xfb,0x2e,0xbc,0xf7,0xbe,0x9f,0xf3,0x3d,0xe7,0x5e,
+  0xd8,0x89,0x9d,0xe8,0x43,0x7c,0x39,0xc7,0xcc,0x17,0xb3,0xa5,0xb1,0xdb,0xf9,0x56,
+  0xf5,0x41,0xdf,0xdd,0xe3,0xf0,0xce,0xa1,0x89,0xb1,0xf9,0x8f,0x5e,0x28,0x4e,0xfc,
+  0x17,0x0,0xf9,0xc1,0x1c,0xf9,0xca,0xc3,0x8f,0x3f,0x37,0x33,0x7d,0xff,0xe2,0xc9,
+  0xe3,0x7b,0xf,0xde,0x69,0x0,0x44,0xc0,0x2d,0xc,0x32,0x7a,0x68,0xfa,0xc8,0x91,
+  0x83,0xf7,0x54,0x17,0xb6,0x1,0xd1,0x1f,0x0,0x5,0x98,0x10,0xb7,0x50,0x60,0x72,
+  0xea,0x91,0x67,0x8e,0x3e,0x58,0x5e,0x3c,0xf5,0xca,0xdd,0x93,0x77,0x1c,0x0,0x13,
+  0xe1,0xb8,0x3,0x94,0xc7,0x2b,0xd3,0x87,0xc7,0xf6,0xce,0x7f,0xf6,0xea,0xbe,0x9e,
+  0x10,0xf9,0xec,0xe6,0xab,0x17,0x99,0x19,0xd9,0xc5,0x30,0x62,0x6d,0x45,0xec,0xcf,
+  0x25,0x59,0x6f,0xda,0x3,0x1b,0x1,0x3,0x43,0x83,0xdc,0x8b,0xe,0xc0,0x44,0x8,
+  0x21,0x6e,0xc1,0x61,0xa2,0x32,0xf9,0xb4,0x5b,0x58,0x29,0x7f,0xfe,0x9a,0x3a,0x36,
+  0xb7,0x70,0xf5,0xc7,0xae,0xf0,0x99,0x67,0xb7,0x3e,0xcb,0xe9,0xa9,0xa3,0x4f,0x3c,
+  0x8f,0x52,0xa0,0x4,0x11,0xb1,0x1e,0x89,0x58,0x71,0x31,0x20,0x6,0x30,0x80,0x46,
+  0x30,0x8,0x9a,0xbc,0xd2,0xb8,0x77,0x95,0x41,0x47,0x60,0x22,0xd0,0x21,0x46,0x87,
+  0x84,0xde,0x35,0x56,0x7e,0x5a,0xf9,0xfa,0x87,0xdf,0x82,0x13,0xc7,0x4f,0xae,0xde,
+  0x12,0x22,0xeb,0x40,0x3e,0xf,0xf9,0xdd,0xfb,0x46,0x40,0x29,0xc8,0x25,0xa5,0xaa,
+  0x54,0x1c,0x2b,0xdc,0x6,0x88,0xc1,0x68,0x90,0x18,0x74,0x4c,0xea,0x40,0xa,0x21,
+  0x26,0xc0,0x75,0x72,0x8c,0x8f,0xee,0x7f,0xca,0x75,0xfe,0x38,0x7b,0xfa,0xf5,0xe1,
+  0x63,0x2f,0x7d,0x7c,0xe5,0x72,0x27,0xc0,0xe6,0x19,0x10,0xec,0x8f,0x74,0x0,0x71,
+  0x66,0x8d,0x3b,0xf6,0x3a,0x0,0x1d,0xda,0xbe,0xc7,0x41,0xd2,0xff,0x24,0x9,0xdb,
+  0xf3,0x0,0x11,0x8e,0x9b,0x63,0x78,0xff,0x9e,0x87,0x1e,0x38,0x60,0x3e,0x3c,0xf3,
+  0x46,0xb9,0xb2,0x35,0x0,0x40,0xe4,0x27,0xe9,0xd9,0x8c,0x3d,0x24,0xf6,0x30,0x69,
+  0x6a,0x1f,0x62,0xf,0xb4,0x97,0xac,0x1,0x68,0x3f,0xc9,0x4,0xce,0x4,0x6d,0x10,
+  0x31,0x21,0x8e,0xa3,0x18,0x3b,0x50,0x7a,0xf2,0xf0,0x7d,0xf1,0xd9,0x33,0x6f,0x8e,
+  0x6c,0x82,0xd8,0x34,0x84,0x22,0x60,0xe2,0x0,0x8c,0x20,0x28,0x30,0x2,0x46,0x30,
+  0xc9,0x40,0x22,0x26,0x59,0x35,0x90,0xa4,0x68,0x30,0x31,0x10,0xd9,0x96,0x68,0xb,
+  0x4a,0xd4,0x82,0xd8,0x87,0xd8,0xc7,0xe8,0x90,0x5c,0x1c,0x32,0xe4,0xb6,0xa6,0x4c,
+  0x34,0xf4,0x2c,0x30,0x6f,0x7b,0xd8,0x1,0x60,0x1d,0xf0,0x40,0x29,0x8c,0xb6,0xfd,
+  0x17,0x95,0xce,0x81,0x1,0x65,0xfb,0x6f,0x74,0x0,0x3a,0x11,0x8,0x9a,0x98,0xf8,
+  0x6,0x44,0xd7,0xad,0x2b,0xda,0x3,0x63,0xda,0xa7,0x8,0xb1,0x23,0xd3,0xbc,0x21,
+  0x7e,0xfd,0x62,0xf1,0x9b,0xb9,0x53,0x57,0x16,0xbb,0x3a,0xd0,0x9e,0x1,0x93,0x9c,
+  0xb9,0xb4,0x74,0x3,0x68,0x1f,0x13,0x6c,0x80,0xff,0x27,0x26,0xdc,0x80,0xb8,0x85,
+  0xa4,0xfd,0x4e,0x5e,0x27,0x73,0x54,0xc9,0x7c,0xea,0x45,0x50,0xbf,0x54,0x3c,0x57,
+  0x5d,0xa,0x3f,0x0,0x56,0xd3,0xea,0xbb,0x38,0xe0,0xdb,0x53,0xa0,0xd,0xe8,0x0,
+  0xed,0xaf,0x61,0xfc,0x35,0xf0,0xd7,0x10,0x22,0x2b,0xd2,0x99,0xdd,0xc4,0xc5,0x56,
+  0xde,0x58,0x2e,0xd6,0xe6,0x3e,0xfd,0xeb,0x6d,0xe0,0x67,0xc0,0xef,0xea,0xc0,0x7a,
+  0x8,0xab,0xbf,0x5c,0x0,0x95,0x9c,0x79,0xed,0x23,0x71,0xb,0x44,0xdb,0xb,0x28,
+  0x93,0x24,0xab,0xca,0xc1,0x40,0x1,0xa,0xb9,0x8c,0xb8,0xb2,0x95,0xfb,0x11,0x34,
+  0x2e,0x96,0x6a,0xd5,0x7a,0xf0,0xde,0xad,0xc4,0x53,0xd3,0xd3,0x70,0x81,0xa,0x30,
+  0x7a,0x93,0x2b,0x5b,0x87,0xf3,0xdd,0x9,0xde,0x7d,0x74,0x94,0xc7,0x52,0x47,0x8c,
+  0xc0,0x7a,0x4b,0xf9,0x8d,0xb,0xc5,0xda,0xcb,0xb,0xd7,0xde,0xea,0x26,0xde,0xe9,
+  0x40,0x0,0x5c,0x6,0x56,0xb6,0x9,0xb0,0x6b,0x77,0x81,0x66,0xb6,0xe7,0x7e,0x4,
+  0x4b,0xcb,0xc5,0x6f,0xab,0xe7,0xc3,0xf7,0xb7,0x12,0xef,0x4,0x48,0x21,0x82,0x6d,
+  0x2,0x90,0x57,0xc4,0xa9,0x78,0xb3,0x25,0xfe,0xd2,0x72,0xa9,0x67,0xe5,0xdd,0x0,
+  0x6e,0x2f,0x32,0x95,0x37,0x96,0x4b,0xb5,0xea,0xf9,0xee,0x3d,0xff,0x57,0x0,0x8c,
+  0x81,0xe6,0x75,0xf1,0xeb,0x97,0x8a,0xb5,0xd9,0x4f,0xfe,0x59,0xe5,0x7d,0x5,0x58,
+  0xf7,0xe0,0xfb,0xdf,0x8b,0xe7,0xe6,0x1b,0xbd,0x7b,0xde,0x19,0xd2,0xfb,0x95,0x9e,
+  0xe1,0x2,0xe3,0xd8,0xcb,0xe5,0xd7,0xed,0x88,0xf7,0x33,0x1c,0xfa,0x35,0x4f,0x3b,
+  0xf1,0xbf,0x8b,0xbf,0x1,0x89,0x9f,0x95,0xb4,0x21,0x16,0x51,0x5d,0x0,0x0,0x0,
+  0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/inspector.png
+  0x0,0x0,0x7,0xa8,
+  0x89,
+  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+  0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
+  0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
+  0x0,0x0,0x7,0x5f,0x49,0x44,0x41,0x54,0x58,0x85,0xa5,0x97,0x6b,0x8c,0x5d,0x55,
+  0x15,0xc7,0x7f,0x6b,0xef,0x73,0xee,0xb9,0xf7,0xce,0x9d,0xb9,0xf3,0x68,0x87,0x4e,
+  0x5b,0x18,0x79,0x98,0x62,0xa9,0x5,0x1,0x9,0x55,0x24,0x41,0x20,0x3e,0x12,0x13,
+  0x88,0x89,0x68,0x34,0x4,0x5f,0x1,0x62,0x8c,0x86,0x4f,0x9a,0x60,0x8c,0x8f,0xa8,
+  0xf1,0x83,0x1f,0x14,0x4b,0x48,0x88,0xc1,0x47,0x14,0x92,0xfa,0xf8,0xa0,0x41,0x54,
+  0x24,0x1,0x11,0x63,0x0,0x5b,0xc6,0xa6,0x15,0xa4,0x85,0x4c,0x3b,0x7d,0xcc,0xe3,
+  0xce,0xdc,0xc7,0xb9,0xe7,0xb9,0x97,0x1f,0xce,0x9d,0x99,0x3b,0xcc,0x4c,0x8b,0xba,
+  0x92,0x95,0x93,0xbd,0xcf,0xda,0x6b,0xfd,0xd7,0x7f,0xaf,0xbd,0xce,0xd9,0xc2,0x79,
+  0x44,0x55,0xfb,0x87,0x2,0x18,0xc0,0xf6,0xd4,0x2c,0x9b,0x1,0x19,0x90,0x3,0xe,
+  0x50,0x11,0x39,0x9f,0xeb,0x15,0x87,0x6f,0x26,0xb8,0x1,0x4a,0xaa,0x5a,0x5,0x86,
+  0xe2,0x34,0xaf,0xbf,0x7e,0xb6,0x35,0x96,0x64,0x6e,0x40,0x4,0x7c,0x6b,0xc2,0xc9,
+  0xf1,0xc1,0xf9,0xc0,0xb7,0x4b,0x22,0xb2,0x4,0x84,0x40,0x2,0xb8,0xf3,0x1,0x39,
+  0x1f,0x0,0x51,0xd5,0x92,0x88,0xc,0xfd,0x7b,0x66,0x71,0xe7,0xb3,0x47,0x4f,0xef,
+  0x5b,0x68,0xc5,0x37,0x8a,0x70,0xf9,0x40,0xb9,0x34,0x56,0xd,0xbc,0x92,0x8,0x74,
+  0x93,0x3c,0xe9,0x44,0xe9,0x82,0xaa,0x1e,0x1d,0xad,0x95,0x9e,0xd9,0xb7,0x6b,0xdb,
+  0x73,0x97,0x6d,0x1f,0x9e,0x6,0x9a,0x40,0x7c,0x2e,0x46,0xd6,0xcd,0xf6,0x67,0xad,
+  0xaa,0x95,0xd3,0x8d,0xce,0xc4,0xfe,0xdf,0x4d,0x7d,0xa4,0xd9,0x4d,0x3f,0x31,0x39,
+  0x5e,0xbf,0x64,0x72,0xbc,0x5e,0xb2,0xc6,0x4a,0x96,0x17,0xbc,0x4b,0xcf,0x8b,0x67,
+  0x20,0xce,0x32,0x9d,0x9e,0x6d,0x26,0x33,0xf3,0xad,0xd7,0x6,0x2b,0xde,0xcf,0xef,
+  0x7e,0xff,0x9e,0x47,0xb7,0x8f,0xd5,0x4e,0x2,0xdd,0xcd,0xd8,0x58,0x37,0xe3,0x9c,
+  0x3,0x30,0xed,0x6e,0x52,0xdb,0xff,0xdb,0x43,0xd7,0x1d,0x3c,0x3e,0xff,0x9d,0x8b,
+  0x27,0x46,0xae,0xbe,0x7c,0xe7,0x56,0x89,0x33,0x68,0xb4,0x53,0xdc,0xda,0xba,0x58,
+  0x11,0x23,0xc2,0x48,0xcd,0x27,0xf0,0xe1,0x95,0x99,0x79,0x3d,0x3e,0xd3,0x38,0xf8,
+  0xf6,0xc9,0x91,0x2f,0xdf,0xf3,0xc1,0xbd,0x7f,0xab,0xd7,0xca,0xad,0x8d,0x40,0xac,
+  0x19,0xa9,0x2a,0xaa,0x2a,0xc7,0x4f,0x35,0x6,0xbe,0xf4,0xa3,0x67,0x6e,0x6f,0x27,
+  0xee,0xdb,0x37,0xee,0xbd,0x78,0xc7,0x40,0xb9,0xca,0x52,0x98,0xe2,0x74,0xed,0x22,
+  0x65,0xe3,0xb1,0x11,0xa8,0x57,0x7d,0xe2,0x34,0xe2,0xe9,0xa9,0xd7,0x66,0xaa,0x9e,
+  0xdc,0xff,0xcd,0x3b,0xdf,0x75,0xe0,0xd2,0x1d,0xa3,0x6d,0x63,0xcc,0xba,0xaa,0x5e,
+  0x93,0xfd,0xe1,0x63,0xa7,0x4a,0xf7,0xfe,0xe0,0x4f,0xb7,0x5b,0x3f,0x78,0xe0,0xd6,
+  0x6b,0x77,0x8d,0xe5,0x6a,0x25,0xc9,0x36,0xce,0xd8,0xb3,0x82,0x0,0x69,0xbe,0xf1,
+  0xfb,0x92,0x67,0x8,0x3c,0xa7,0x7f,0x7c,0xe1,0xe5,0x85,0x2c,0x89,0xbf,0xf0,0xfd,
+  0x7b,0xde,0x7b,0x60,0xef,0x5b,0x27,0xe2,0x7e,0x16,0xd6,0x1,0xd8,0xfb,0xa9,0x7,
+  0xdf,0x11,0xa9,0xfd,0xcd,0x6d,0xef,0xb9,0xf2,0x42,0xcf,0x2b,0x4b,0xee,0x36,0x76,
+  0x7e,0xc5,0x45,0x75,0x6e,0xbe,0x72,0x1b,0x0,0x4f,0xbd,0x74,0x9a,0xa9,0xd7,0x97,
+  0x36,0xb4,0xb3,0x56,0xb0,0x64,0xfa,0xcb,0xa7,0xf,0xcd,0x94,0x25,0xbb,0xed,0xef,
+  0xfb,0x3f,0xfd,0x7c,0xa9,0xe4,0x6f,0x0,0xe0,0x9a,0x2f,0xb2,0xa5,0x5e,0x9,0xa2,
+  0x4a,0xfd,0xf,0x1f,0xba,0xe1,0xaa,0x1b,0xb7,0x6f,0xdd,0x42,0xba,0x49,0xf0,0xc1,
+  0xb2,0xe1,0xbe,0xdb,0x76,0x33,0x3a,0x58,0x6,0xa0,0xd1,0x8e,0xf9,0xde,0xaf,0xf,
+  0xd3,0x8c,0xdc,0x86,0xf6,0xbe,0x35,0x2c,0xb6,0x16,0x39,0xf0,0xe7,0x17,0x9f,0x1b,
+  0x48,0xdb,0xb7,0xcc,0x3c,0xfe,0xb5,0x70,0xf9,0x9d,0x59,0xb1,0x5a,0x6c,0x32,0x97,
+  0xda,0x3b,0x2e,0x18,0xad,0xdf,0x30,0x36,0x32,0x4c,0x98,0x64,0xa4,0x59,0xbe,0xa1,
+  0xe2,0x1c,0x65,0xdf,0x2,0x45,0xdd,0x4,0xbe,0x5,0x75,0x24,0x9b,0xd8,0x87,0x71,
+  0x4a,0xbd,0x36,0xc8,0xce,0xf1,0x91,0xeb,0x67,0x42,0xfd,0x28,0x3b,0x3f,0xcc,0x7a,
+  0x0,0xf5,0xe1,0x21,0x44,0x3e,0x7f,0xd5,0xae,0xb7,0x98,0x6e,0x92,0x13,0x67,0x39,
+  0x71,0xda,0xd3,0x6c,0xed,0xf8,0x54,0xa3,0xcb,0xc1,0x63,0x73,0x38,0x55,0x14,0x78,
+  0xe9,0xd8,0x2c,0x33,0xb,0x21,0xc9,0x26,0xf6,0x71,0x96,0xb3,0x14,0xa6,0xec,0xdb,
+  0x73,0xa9,0x20,0xe6,0x73,0x4c,0x4c,0xe,0x2f,0x87,0xf5,0x8a,0xc7,0x5d,0x10,0x78,
+  0xd7,0x8d,0x8f,0xe,0xed,0xae,0xd,0xd4,0x88,0xd3,0x7c,0x43,0x2a,0xfb,0xe5,0xe1,
+  0x27,0x5e,0xe6,0xd9,0xc3,0x67,0x40,0xe0,0xc8,0xf4,0x12,0xa9,0x1a,0x70,0xe7,0x5e,
+  0x57,0xd,0x2,0x76,0x8e,0xd7,0xdf,0x76,0xe2,0x44,0x77,0x1f,0xdc,0xf5,0x38,0x3c,
+  0x82,0x47,0xed,0x3,0x70,0x81,0x8,0xa2,0xef,0xdb,0x71,0xc1,0xd6,0x4a,0x37,0xce,
+  0x36,0x75,0xa0,0xc0,0x60,0xd9,0x3,0x55,0x14,0xc3,0x91,0x93,0xad,0xde,0xbc,0x90,
+  0xbc,0x9,0xd0,0x49,0x9a,0x73,0xf1,0x8e,0xf1,0xf2,0x89,0x13,0x67,0x6e,0xe5,0x92,
+  0xfc,0x9,0x8e,0xe1,0x3c,0xaa,0x13,0x50,0xf2,0x4b,0xc0,0x35,0x95,0x6a,0x55,0x92,
+  0x6c,0xe3,0x42,0x2,0xc8,0xf3,0x9c,0xfd,0xf7,0x5e,0x8f,0x5d,0x3e,0x46,0xbd,0xc7,
+  0x42,0x2b,0xe6,0x1b,0x8f,0x1e,0x64,0xa9,0x9b,0xad,0x36,0x83,0x4d,0xa4,0x3e,0x38,
+  0x8,0xa2,0x57,0x53,0xaa,0x94,0x80,0xc8,0x23,0x48,0x21,0xa8,0xe,0x19,0x23,0xdb,
+  0xac,0xf5,0x88,0xb3,0xcd,0x32,0x11,0xb2,0x2c,0xc7,0x1a,0xc1,0x33,0xc2,0x40,0xd9,
+  0xc7,0x98,0x2,0x41,0x96,0x3b,0x52,0x7,0x71,0x2e,0xa0,0xae,0xe0,0x6a,0x93,0x6e,
+  0xe9,0x19,0x8f,0x72,0xc9,0x9b,0x88,0x2a,0x41,0xbd,0x0,0xe0,0x47,0x60,0xea,0x15,
+  0x3,0x95,0x5c,0x37,0xa0,0x52,0x64,0x45,0x1d,0x96,0xcf,0x3c,0xf0,0x1c,0x83,0x65,
+  0xcb,0x77,0xef,0xba,0x96,0xf1,0xe1,0xa,0x14,0xe1,0x48,0x72,0x25,0x71,0x2,0x2a,
+  0xc5,0x84,0x6a,0x1,0xa6,0xf,0x48,0xc9,0x33,0xa8,0x80,0xa0,0x15,0x84,0x2a,0x80,
+  0x87,0x96,0x41,0x11,0x55,0x95,0x38,0xcd,0x31,0x76,0xb9,0x6,0x7a,0x81,0x8d,0x29,
+  0x54,0x4,0xc4,0x72,0xb6,0xb,0x49,0x9e,0xb3,0xa6,0x41,0x29,0x24,0x39,0xc4,0xe,
+  0x44,0xd,0xe0,0x30,0x2a,0x18,0x31,0x78,0xc6,0x21,0xaa,0x2c,0x76,0x22,0x66,0x16,
+  0xda,0x9c,0x98,0x6d,0x42,0x94,0xca,0xf2,0x6,0x7a,0xcc,0x77,0xa0,0x5e,0x8f,0x9d,
+  0xd3,0xa8,0xd5,0x8d,0xc1,0x58,0x8c,0x11,0x44,0xc,0x18,0xb,0x8,0xd2,0x7,0x46,
+  0x11,0x92,0xde,0xf1,0x5b,0xfe,0x72,0x2a,0x80,0x31,0x88,0x15,0x8c,0x80,0xa8,0xa3,
+  0x15,0xc6,0x2c,0xb5,0xbb,0x34,0x9a,0x21,0xcd,0x56,0x48,0x9a,0xa5,0x3d,0xb0,0xa,
+  0x68,0x84,0xd3,0xa8,0x0,0xd0,0xfc,0x15,0xc4,0xf7,0x34,0x35,0x70,0xb3,0xaf,0x9e,
+  0x6a,0xec,0xf2,0xfc,0x10,0xcf,0x5a,0xfc,0x52,0x89,0x52,0x10,0x60,0x7d,0x1f,0xeb,
+  0xf9,0x78,0xbe,0x8f,0xef,0xb,0xc6,0x58,0x8c,0x3a,0xa2,0x28,0x22,0x8a,0x4,0x55,
+  0xa5,0xdd,0xe,0x39,0x36,0x1f,0x71,0xa2,0x2d,0x44,0x49,0x4a,0x1c,0xa5,0x68,0x9e,
+  0x82,0xcb,0x20,0xcb,0x8a,0x6d,0x41,0x58,0xa9,0x50,0xe7,0x66,0x89,0xb3,0xa5,0x2,
+  0x0,0x40,0xa2,0x31,0xea,0xa6,0xf2,0x3c,0x7b,0x77,0x8e,0x27,0x71,0xe,0xe4,0x39,
+  0x24,0xe9,0xea,0xcf,0x97,0x55,0xb0,0xe,0x8c,0x65,0x5b,0x25,0xa3,0x13,0x46,0x44,
+  0x95,0xa2,0x8,0xa3,0x24,0xa1,0xd1,0x75,0x2c,0xc6,0x1e,0x38,0x5b,0xd8,0x2e,0x8b,
+  0xd5,0x5e,0x51,0xba,0xa2,0x4f,0xa8,0x3,0x75,0x53,0x24,0x1a,0xc3,0x72,0x27,0x3c,
+  0xbb,0x98,0xe3,0xf4,0x49,0xba,0x4b,0x31,0x36,0x0,0xb1,0x5,0xfd,0xc6,0x82,0xf5,
+  0x7a,0xea,0xf7,0xb4,0x4,0xc6,0x5b,0x7f,0xda,0x8c,0x5,0xaf,0x4,0xde,0xb2,0x5d,
+  0x6f,0x9d,0xe9,0x53,0x2f,0x80,0x68,0x31,0xc1,0xe9,0x53,0x74,0xe6,0xb3,0x55,0x0,
+  0xad,0xc7,0x20,0x4e,0xff,0x4a,0xd4,0x3a,0x86,0xb8,0xde,0x42,0xdb,0x5b,0xd8,0x7b,
+  0xf6,0x83,0x30,0xde,0x1b,0xbe,0xa3,0xd2,0xb3,0xf1,0xc1,0xf8,0x6b,0x83,0x1a,0x5b,
+  0x14,0xb1,0xf5,0x40,0x50,0xa2,0xe6,0x71,0xb2,0xec,0x2f,0x9c,0x3e,0xc0,0x2a,0x0,
+  0x80,0x66,0xe7,0xc,0x59,0xfa,0x8,0xad,0x33,0x8a,0x57,0x2,0xe9,0x55,0xbf,0xe9,
+  0x63,0xc3,0xe5,0x8c,0x78,0x31,0xc3,0x1,0xab,0xcd,0x8,0x30,0x46,0x18,0xe,0x94,
+  0x11,0x1b,0x15,0xfb,0xbe,0x92,0x40,0x9f,0x7a,0x1,0xb4,0x4e,0x41,0x9a,0xfc,0x94,
+  0x46,0x34,0xd3,0x7,0xbd,0x27,0x95,0x3b,0xe1,0xb2,0xc1,0x2d,0xd4,0x2a,0x4f,0x31,
+  0x71,0xc5,0x1e,0xca,0xc3,0x5,0x8,0x2f,0x28,0x68,0xf5,0x4a,0x90,0xc4,0x1c,0xfe,
+  0xca,0x15,0x94,0x3c,0xc3,0x70,0xd5,0xc3,0xf6,0x1a,0x51,0xee,0x94,0xc5,0xde,0x1f,
+  0xd3,0xee,0xaf,0x4f,0x91,0xfb,0x55,0xc8,0x92,0x55,0x55,0x7,0xdd,0x45,0xe5,0xd4,
+  0x3f,0x8f,0xd2,0xee,0xdc,0xc4,0x2b,0xcd,0x33,0x44,0x3f,0x7b,0x3,0x3,0xdd,0x9f,
+  0xc0,0x91,0xa5,0x39,0xe2,0xe4,0x3e,0xce,0xbe,0x32,0x8b,0xcb,0xb4,0xa0,0x54,0xa,
+  0x20,0x62,0xc0,0x16,0x47,0x54,0x11,0x1a,0x61,0xce,0x5c,0x3b,0x63,0xae,0x93,0xd1,
+  0x8,0x73,0x14,0x41,0x44,0x7a,0x54,0x9b,0xbe,0x35,0x9e,0xe2,0x52,0x65,0xf6,0xe5,
+  0x5,0xe2,0xe8,0x3e,0x5e,0x5b,0xd,0xbe,0x96,0x81,0x65,0xd9,0x73,0xb7,0x4f,0xb9,
+  0xfc,0x59,0x6a,0xa3,0xdf,0x62,0xc7,0x95,0x43,0x94,0x87,0x4,0x31,0xe0,0x97,0x40,
+  0x85,0xad,0x83,0x16,0xe9,0xd5,0x84,0xf6,0x6a,0x41,0xf2,0x1c,0x5c,0x8a,0xe6,0x19,
+  0xb3,0xed,0xbc,0xe8,0x19,0x69,0x2f,0xf3,0xa8,0xa9,0x9c,0x3c,0xd8,0xa2,0x35,0x7f,
+  0x3f,0xdd,0xe8,0x21,0xe,0x3f,0x94,0xf4,0x87,0xb3,0xeb,0x0,0x84,0xef,0x74,0x54,
+  0x75,0xa,0x4d,0x1a,0x84,0x73,0xd7,0x53,0x19,0xae,0x52,0x5d,0xde,0xe,0x9f,0x50,
+  0xca,0x74,0xa8,0xd0,0x91,0x2a,0xa1,0x54,0x9,0x29,0xd3,0x71,0x1e,0x9d,0xdc,0x23,
+  0xcc,0x4d,0x2f,0x27,0x57,0xd8,0xb7,0xce,0x2a,0xd3,0x2f,0x34,0xe8,0x2c,0x7e,0x95,
+  0x30,0x7d,0x98,0xe9,0x3c,0x26,0x79,0x91,0x73,0x3,0x48,0x9e,0x87,0xee,0xd,0x19,
+  0xd5,0xe8,0x10,0x9a,0x1f,0xa2,0x73,0xe6,0x5a,0xe2,0xd6,0x18,0xd5,0x11,0xa1,0x3c,
+  0xc8,0x4a,0x8b,0x16,0x1,0xe9,0x3b,0xdf,0x2e,0x3,0xd7,0xb,0xdc,0x5d,0x52,0x4e,
+  0xfe,0x3,0x4e,0x1f,0x79,0x95,0x6e,0xe7,0x5e,0xba,0xf1,0x63,0x4c,0x57,0x63,0x5a,
+  0x3f,0x5c,0x17,0xee,0xdc,0xf7,0xa6,0xc9,0x5b,0x60,0x78,0xd7,0x76,0x9,0xfc,0xbb,
+  0xd5,0x2f,0x7d,0x9c,0xa1,0x6d,0x17,0x31,0x76,0x89,0x47,0x6d,0xb,0x4,0xb5,0xe2,
+  0xd8,0x1,0xe4,0x29,0xc4,0x1d,0x68,0xcf,0xc2,0xfc,0xf1,0x8c,0xe6,0xe9,0x69,0x49,
+  0xe3,0x5f,0x68,0x9c,0x3e,0x48,0xf3,0xd5,0x93,0x1c,0xff,0xfd,0xa6,0x21,0xce,0x7f,
+  0x83,0xbc,0xf0,0x63,0x50,0xab,0x7b,0x52,0xf1,0x27,0xf1,0xed,0x4d,0x18,0x7b,0xb3,
+  0x5a,0x7f,0x37,0x5e,0x30,0x86,0xf5,0x82,0x2,0x40,0x96,0x90,0xc5,0x73,0x92,0xa7,
+  0x47,0x71,0xee,0x49,0xb2,0xfc,0x49,0xed,0x66,0xaf,0xd3,0xa,0x33,0xa6,0x1f,0x39,
+  0xa7,0xfb,0x37,0x77,0x85,0x5d,0x96,0xcb,0x3f,0x9,0xb6,0x1c,0xe0,0xfb,0x83,0x66,
+  0xc0,0x1f,0x55,0xe7,0x6,0x0,0xc4,0x98,0xd0,0x85,0xe9,0x3c,0x49,0xd6,0x22,0xeb,
+  0xc4,0xfc,0xeb,0xc7,0xff,0x95,0xdb,0xff,0x5d,0xb6,0xdd,0x1,0x13,0x77,0xfc,0x5f,
+  0x2e,0xfe,0x3,0x8e,0x26,0xc0,0xa6,0x8,0xff,0x6,0x23,0x0,0x0,0x0,0x0,0x49,
+  0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/breakpoint_16x16.png
   0x0,0x0,0x4,0x54,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -244,7 +432,7 @@
   0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe1,
   0xf,0x4b,0x5c,0x44,0xc0,0xce,0x74,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,
   0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Icons/blank.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/blank.png
   0x0,0x0,0x0,0x92,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -257,7 +445,131 @@
   0xcb,0x63,0x60,0x18,0x5,0xa3,0x60,0x14,0x8c,0x2,0x8,0x0,0x0,0x4,0x10,0x0,
   0x1,0x85,0x3f,0xaa,0x72,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,
   0x82,
-    // /usr/local/google/home/chudy/Icons/breakpoint.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/reload.png
+  0x0,0x0,0x7,0x8c,
+  0x89,
+  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
+  0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
+  0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
+  0x0,0x0,0x7,0x43,0x49,0x44,0x41,0x54,0x58,0x85,0xad,0x96,0x5b,0x6c,0x54,0xd7,
+  0x15,0x86,0xff,0xb5,0xf7,0x39,0x33,0x67,0x2e,0x67,0x6c,0x8f,0x1d,0x1b,0x63,0x63,
+  0x12,0x63,0x7,0xe2,0x81,0x70,0x89,0xcb,0x25,0x21,0x4d,0x68,0x9b,0xaa,0x17,0xa9,
+  0x8a,0xaa,0xaa,0x2f,0x51,0xa5,0x34,0xaa,0x54,0x45,0x6a,0x33,0xf,0xc9,0x4b,0xa4,
+  0x3e,0xb4,0x6a,0xa5,0x94,0x3e,0x54,0xa5,0xaa,0xa2,0x5e,0x22,0xb5,0xf,0x95,0xda,
+  0xaa,0x55,0xa4,0x84,0x40,0x9a,0x96,0x88,0x4b,0x1c,0xb0,0xc1,0x71,0x8d,0x31,0x36,
+  0x97,0x80,0x31,0xd8,0xd8,0x66,0x6c,0x8f,0xcd,0x8c,0x67,0xce,0x39,0xfb,0xd6,0x87,
+  0x31,0xc1,0x98,0x31,0x18,0xc8,0x92,0x8e,0x46,0xda,0xb3,0xf7,0xfa,0xbf,0xb5,0xd6,
+  0xd6,0x5e,0xb,0x78,0x40,0x73,0x53,0xe9,0xf5,0x6e,0x2a,0xbd,0xeb,0x7e,0xcf,0xb3,
+  0x7,0x5,0x0,0xd0,0x50,0x59,0x9d,0xfc,0xa9,0x9b,0x4a,0xb7,0xdd,0xcf,0x61,0xfe,
+  0xa0,0xea,0xe1,0xda,0xed,0x2d,0x2f,0xfe,0xf0,0x9b,0x3f,0xe,0xc7,0xe2,0x5f,0xcc,
+  0xb3,0xb6,0x8b,0xf9,0x91,0x23,0x43,0xf7,0x72,0xfe,0xf3,0xc8,0x0,0x38,0x1,0x5f,
+  0xfa,0xfa,0xb6,0x4d,0x8f,0x3f,0xf1,0xd8,0x2f,0xef,0x35,0x13,0xd6,0xbd,0x8a,0xb9,
+  0xa9,0x34,0x0,0x84,0x1,0xb8,0x0,0xa2,0x0,0x56,0x28,0xd,0xe4,0xb5,0x65,0x3d,
+  0xf7,0xfc,0xb3,0x4f,0x28,0x43,0x7f,0xe9,0x77,0x7f,0xf2,0xfa,0x44,0xe7,0x2f,0x3e,
+  0xfc,0x5c,0x1,0xdc,0x54,0x9a,0x0,0x34,0x2,0xf8,0x46,0x55,0x4d,0x72,0x73,0x53,
+  0xcb,0xea,0x95,0x55,0xc9,0x4a,0xd7,0xa,0x5b,0x35,0x89,0x64,0x32,0x9c,0xb,0xc,
+  0x2,0x29,0x69,0xe7,0x73,0xdb,0x37,0x1b,0x83,0x37,0xa,0xb9,0xf4,0x8b,0xb9,0xd3,
+  0x7b,0x6,0xee,0xe6,0x97,0x96,0x21,0x1c,0x6,0xb0,0xbe,0x79,0xed,0xea,0xd7,0x9a,
+  0x1e,0x69,0xf8,0xf2,0xba,0xd,0xad,0x55,0x15,0x55,0x71,0xae,0x89,0x93,0x34,0x80,
+  0x1,0xc1,0x80,0x21,0xe7,0x97,0xdc,0x31,0xc6,0x50,0x19,0xb5,0xcd,0xc1,0xbd,0x7,
+  0xbb,0x7,0x7a,0x4e,0xbf,0x7e,0xad,0xeb,0xce,0x99,0xb8,0xe3,0x25,0x74,0x53,0x69,
+  0xc4,0xe2,0xb1,0x57,0xbe,0xf0,0xe4,0xe3,0x3f,0xdf,0xf6,0xf4,0xa6,0x9d,0x2b,0x9b,
+  0x9b,0xe2,0xd2,0xe,0xf1,0x7c,0x0,0x2a,0x8,0x83,0x62,0x0,0x14,0x25,0xa1,0x28,
+  0x0,0x65,0x18,0xb4,0x21,0x48,0xcd,0x50,0x90,0xa0,0xe6,0xe6,0xc6,0x3a,0xaf,0xe0,
+  0xa5,0xa6,0xbd,0xc6,0x8f,0x83,0x4c,0x57,0xe6,0x9e,0x1,0xdc,0x54,0x7a,0x45,0x4d,
+  0x6d,0x72,0xf7,0xae,0xaf,0x6e,0x7f,0x75,0xcd,0xfa,0xd6,0x7a,0xdf,0x72,0xb8,0x2f,
+  0x41,0x81,0x4,0x94,0x22,0x28,0x5,0x28,0x4d,0x50,0x8a,0xa0,0x35,0x41,0x6a,0x82,
+  0x32,0x4,0x65,0x18,0x84,0x66,0xe0,0x56,0x98,0x6a,0xaa,0xdd,0xe4,0xc9,0x63,0x27,
+  0xa6,0xc3,0xb5,0x3b,0xba,0x82,0x4c,0x97,0x2c,0xa7,0xb3,0xe4,0x1d,0xa8,0xaa,0xa9,
+  0x7c,0xad,0x7d,0xc7,0x86,0x17,0x2a,0x1b,0xea,0x23,0x39,0x41,0xd0,0x46,0xc3,0x80,
+  0xc1,0x0,0x0,0x34,0xc,0x31,0x18,0x18,0x18,0x32,0x0,0x11,0xc,0xa8,0xf4,0xcb,
+  0x18,0x42,0x9c,0xe0,0x4f,0x67,0xfc,0x8f,0xf6,0x7f,0xf0,0xa1,0x3f,0xd1,0xf1,0x8e,
+  0x98,0xfa,0x5f,0xb0,0x94,0xce,0x6d,0x0,0x6e,0x2a,0xcd,0x39,0xe7,0x2f,0x6d,0x6a,
+  0x4f,0xbd,0x5c,0xdd,0xd0,0x10,0xc9,0xfb,0x6,0x30,0xaa,0x24,0x48,0x6,0x0,0x81,
+  0x19,0x3,0x32,0xda,0x68,0xa9,0x8c,0xd1,0x5a,0x47,0xa2,0x11,0x96,0xe3,0x9,0x66,
+  0x18,0xc1,0x81,0x32,0x62,0x26,0xe3,0xbf,0xf7,0xb7,0x7f,0xfc,0x3d,0x33,0xf0,0xce,
+  0x5b,0x72,0x76,0xf0,0x2c,0x0,0xbd,0x6c,0x0,0x0,0x6b,0x9a,0x9a,0x1b,0xbf,0x5f,
+  0xb7,0xaa,0x3e,0x52,0x90,0x20,0xd,0x55,0x8a,0x6e,0xde,0x78,0x50,0x30,0x23,0xc3,
+  0xa3,0xc5,0x89,0x91,0xd1,0xac,0x54,0x6a,0x58,0x4,0x52,0x6e,0xda,0xba,0x79,0x2b,
+  0xad,0xaa,0x70,0x6c,0xa3,0x51,0x9c,0x1c,0xb,0xba,0xf,0x1e,0x3a,0x9c,0x19,0x7c,
+  0xf7,0x2d,0x39,0x3b,0x78,0xa,0x80,0xb7,0x94,0x78,0x59,0x80,0x8a,0xaa,0x8a,0x97,
+  0x9a,0x5b,0x56,0x6d,0xc9,0xb,0x46,0xca,0x28,0x18,0x30,0x80,0x18,0xb8,0xf6,0x4c,
+  0xfe,0xda,0xb8,0xe8,0xef,0xe9,0x3b,0x3e,0x31,0xd4,0xf7,0x4f,0x6f,0xe4,0x83,0x63,
+  0x46,0xce,0x79,0x91,0xd5,0xcf,0x3f,0xd9,0xda,0xb6,0xb6,0x3d,0x21,0x7c,0x53,0x9c,
+  0x1c,0xb,0x3a,0xf6,0xed,0xfd,0x57,0xf6,0xdc,0xfe,0xdf,0xcb,0x99,0x81,0x4f,0xee,
+  0x26,0x7e,0x1b,0x80,0x9b,0x4a,0x53,0x3c,0x1e,0xf9,0x56,0xd8,0xad,0x8,0xf9,0x42,
+  0x3,0x6,0xa5,0x9a,0x93,0x46,0x61,0x72,0x5c,0xf6,0x7f,0x72,0xb2,0x73,0xac,0x7f,
+  0xdf,0xee,0x60,0xba,0xf7,0xc,0x8c,0x9c,0x2,0x20,0xb9,0x53,0xd7,0x22,0x95,0x42,
+  0xfe,0xea,0xb0,0xe8,0x3f,0x76,0xac,0x23,0x7b,0xee,0xfd,0x3f,0x88,0x99,0xd3,0x7d,
+  0xcb,0x11,0x2f,0x97,0x81,0x67,0x92,0xf,0x55,0xaf,0xe,0xc,0x27,0xe9,0xcb,0x52,
+  0xe1,0xc8,0x80,0x7,0x73,0x66,0xa0,0xf7,0xd4,0xd9,0xf1,0x73,0x47,0x7e,0x1d,0x4c,
+  0x75,0x1f,0x6,0x30,0x77,0xe3,0x0,0x59,0x8e,0xc8,0x8c,0x4f,0xca,0x2b,0x1d,0x47,
+  0xf7,0xce,0xe,0x1d,0x78,0x53,0xcc,0xf4,0x9f,0x58,0xae,0x78,0x39,0x80,0x8d,0xb1,
+  0x84,0x1b,0x12,0xc2,0x40,0xa2,0x94,0x7e,0x82,0x44,0x21,0x3b,0xa3,0x33,0xa3,0x57,
+  0xe,0x8a,0x6c,0xff,0xd1,0x85,0xe2,0x37,0x6c,0x68,0xf0,0x4c,0xf7,0xdc,0xc8,0xc1,
+  0x37,0x45,0xf6,0x54,0xef,0xbd,0x88,0x97,0x3,0xa8,0x27,0xc6,0x99,0x27,0x14,0xb4,
+  0x21,0x18,0xa3,0x41,0xd0,0x98,0x9a,0xc8,0x8,0xa3,0xc5,0x21,0xed,0x65,0x6e,0x7b,
+  0x50,0x54,0xfe,0xca,0xa0,0x97,0xfb,0xf4,0x67,0x22,0xdb,0x77,0x7c,0xa1,0xb8,0x9b,
+  0x4a,0x3f,0x8a,0xd2,0x3b,0x63,0x16,0x7d,0x79,0x0,0x63,0xb9,0xd3,0x7b,0xca,0x2,
+  0x24,0x8c,0x1,0x9,0xa1,0x61,0xe6,0x9f,0x59,0xe9,0x7b,0xb8,0x9e,0x9d,0x95,0xaa,
+  0x30,0xd1,0x5b,0x2e,0x82,0xc2,0xf0,0xdb,0x63,0x0,0x26,0x17,0x89,0x73,0xb7,0xba,
+  0xfa,0x8f,0xb5,0x4d,0x8f,0xc4,0x18,0xe7,0x9a,0x31,0xe,0xc6,0xb9,0x26,0xc6,0xf4,
+  0xc0,0xc7,0x87,0xf7,0x1,0x78,0x63,0x1e,0x66,0x11,0x80,0x31,0xbe,0xef,0xf9,0x46,
+  0x21,0x42,0x52,0x3,0xbe,0x50,0x90,0xbe,0xf,0x6e,0xd9,0x96,0x55,0xd1,0xd2,0x80,
+  0x51,0x5c,0x2c,0xc7,0x50,0x66,0x6d,0xf3,0xca,0xd6,0xd4,0x96,0xba,0x2d,0xcf,0xb8,
+  0xca,0x72,0x40,0xc4,0x60,0x71,0x42,0x2,0x39,0x35,0xd0,0x71,0xe8,0x40,0x6e,0xe0,
+  0xb7,0xe6,0xc6,0xc6,0x45,0x19,0x30,0xd7,0x7d,0xcf,0x37,0x64,0x29,0x78,0x81,0x46,
+  0xd1,0x97,0xb0,0x39,0x87,0xed,0x38,0x9c,0x88,0x6f,0x6,0xf0,0x51,0xb9,0x2c,0x94,
+  0xb1,0xd,0xe1,0xaa,0x87,0xec,0x1c,0xe2,0x50,0x26,0xc,0x18,0x20,0xc,0xd,0xdb,
+  0x2b,0x2a,0x18,0x95,0x5d,0xb8,0xf1,0x96,0x81,0x44,0x2b,0xff,0x42,0x7e,0xf6,0xba,
+  0x94,0x22,0x40,0xd1,0xf3,0x61,0x8c,0x81,0x22,0xe,0x2b,0xea,0x5a,0x76,0x28,0xf4,
+  0x6d,0x37,0x95,0x7e,0xf8,0x6e,0xca,0x6e,0x2a,0xdd,0x18,0x4f,0x26,0xbf,0xe3,0xd4,
+  0x34,0x84,0x24,0xd9,0x9f,0xad,0x5b,0xa4,0x30,0x3b,0x31,0x1a,0x68,0xe5,0xdd,0x92,
+  0xc5,0x5b,0x0,0xe4,0xec,0x99,0xa3,0xd7,0xb3,0x33,0x9e,0xf0,0x8a,0xc6,0xe8,0xd2,
+  0xb3,0x6b,0x40,0x30,0xd1,0x24,0x25,0xaa,0x2a,0xb7,0x32,0xce,0x7f,0x74,0x37,0x80,
+  0x50,0x24,0xfa,0x83,0xc6,0x75,0xeb,0x9f,0x12,0xf1,0x7a,0x46,0xec,0xa6,0xfb,0x30,
+  0x2,0x33,0x79,0xe9,0xfc,0xac,0xc8,0xf6,0x9d,0x5c,0xb8,0xff,0x96,0x12,0xf8,0xe3,
+  0x47,0x86,0xb,0x2b,0xb6,0x74,0x26,0x72,0xd9,0xaf,0x50,0xb4,0x96,0x97,0xa,0x45,
+  0x50,0x2c,0x84,0x78,0xe3,0x1a,0x47,0x29,0xfd,0xa,0x6d,0x7c,0xb5,0x4e,0x49,0xf9,
+  0x1b,0x0,0xbd,0xb9,0xd3,0x7b,0xd4,0x7c,0xd4,0x1c,0xc0,0xfa,0x70,0x2c,0xf6,0xf2,
+  0xca,0xd6,0xb6,0xef,0x45,0x5a,0xb7,0x45,0x94,0x15,0x59,0x10,0xa5,0x1,0x4d,0x5f,
+  0xe,0xb2,0x63,0x97,0xf,0x7,0x99,0x13,0x57,0x97,0x4,0x0,0x20,0xbc,0xdc,0xc4,
+  0xdb,0xd7,0xb3,0x89,0xf6,0x8a,0x68,0x65,0xb5,0x4f,0x37,0xff,0x36,0x91,0x6a,0xaa,
+  0x5c,0xe3,0x58,0xf6,0xc8,0xb9,0xef,0xe6,0xb2,0xd9,0x2d,0x5e,0xa1,0x70,0xdc,0x4d,
+  0xa5,0x2f,0x1,0xd0,0x20,0x6a,0xaa,0xa8,0xa9,0x69,0xaf,0x7d,0xb8,0x65,0x6d,0xbc,
+  0x6d,0xa7,0xa3,0x62,0x75,0xb7,0xc,0x3a,0x9,0x2a,0xe0,0xda,0xc5,0xc1,0xf1,0xe9,
+  0xcb,0xfd,0xfb,0x1,0x88,0x3b,0x1,0xc0,0x9f,0x3a,0xb9,0x77,0xc6,0x76,0x9f,0x72,
+  0xa2,0xf1,0x17,0xec,0xea,0x6,0xae,0xc8,0x29,0xb5,0x59,0xe2,0xd0,0xd1,0x6a,0x72,
+  0xd7,0xed,0x8,0x25,0x8a,0xd9,0x36,0xe9,0xcd,0x3d,0x66,0x44,0xa0,0xb9,0x1d,0x42,
+  0xb8,0x22,0xc9,0xc2,0x55,0x75,0xa4,0x2a,0x1a,0x21,0x9c,0x4,0x88,0xf1,0xcf,0xda,
+  0x57,0x4,0x45,0xa3,0xc6,0xcf,0x88,0x81,0x8e,0xff,0xbe,0xeb,0x8d,0x1f,0x3f,0xb0,
+  0x58,0xef,0x36,0x0,0x39,0x33,0x90,0xf1,0xed,0xc4,0x9f,0xb2,0xd1,0xc4,0xd3,0x49,
+  0xcb,0x5e,0xcd,0x6b,0x63,0xac,0xd4,0xf,0x4a,0x9f,0xe6,0x61,0x50,0x65,0x13,0x2c,
+  0xdb,0x26,0x4e,0xe0,0xcc,0xe,0x1,0xe1,0x18,0x2,0xcb,0x1,0xf1,0x10,0xd8,0xc2,
+  0xce,0x9,0x5,0x7b,0xea,0x82,0x3c,0xdb,0x79,0xa4,0xaf,0x38,0xd6,0xf9,0x57,0x99,
+  0x1f,0x9a,0x5a,0xac,0x57,0x6e,0x22,0xd2,0xaa,0x30,0x92,0x51,0x14,0x1d,0x15,0xda,
+  0x69,0xb,0x41,0xd6,0x84,0x22,0x31,0xc0,0x8e,0x12,0x31,0xe,0xe2,0x16,0x88,0x73,
+  0x10,0xb3,0x1,0x2b,0x4,0x58,0xe,0xc0,0xac,0x9b,0xeb,0xdc,0x2,0x11,0x83,0xa3,
+  0x72,0xc6,0x9a,0x18,0x90,0x67,0xe,0xbf,0xdf,0x35,0xd6,0xb7,0xef,0x57,0x41,0xa6,
+  0xeb,0x28,0x80,0xdb,0x6,0x93,0xa5,0x46,0x32,0xa9,0x8b,0xe3,0x19,0xad,0xd9,0x25,
+  0x5,0x77,0x23,0x89,0x62,0x95,0x13,0xb6,0x19,0x77,0xe2,0x20,0x6e,0x83,0x18,0x7,
+  0x9b,0x17,0x64,0xcc,0x2,0x31,0xb,0x8c,0x73,0x10,0xb3,0x60,0x31,0x83,0x88,0x97,
+  0x81,0x37,0xd4,0x13,0xc,0x9d,0xe8,0xe8,0x19,0xef,0x7f,0x6f,0xb7,0x98,0xec,0xee,
+  0x84,0x91,0x33,0xe5,0x84,0x96,0x1e,0x4a,0xb5,0x98,0x53,0xf9,0xe1,0xab,0xd2,0x9b,
+  0x39,0xe1,0x8b,0x70,0xd1,0xcf,0xe7,0xeb,0x4d,0x6e,0x32,0x1a,0x62,0x92,0x88,0x8,
+  0x8c,0x40,0x9c,0xc,0x38,0x29,0x30,0x15,0x80,0x8b,0x39,0xc3,0x67,0xaf,0xe8,0xe0,
+  0x52,0x8f,0x3f,0xd6,0x77,0xec,0xc2,0xf9,0xa3,0xff,0xfe,0xf3,0xcc,0xf9,0x77,0x7f,
+  0x27,0xb2,0x7d,0xdd,0xf3,0xad,0xbb,0xac,0xdd,0x75,0x2c,0x7,0x50,0x1,0xe2,0xf5,
+  0x4e,0xfd,0xae,0x6d,0x76,0xa2,0xa9,0x3d,0x1c,0xab,0xf9,0x5a,0xc8,0x89,0xac,0x74,
+  0xe2,0x2e,0xb7,0x23,0x31,0xe2,0x96,0x5,0x29,0x85,0x16,0x85,0x39,0x3f,0xf0,0xa,
+  0x97,0xa,0xd9,0xab,0xff,0x29,0x4e,0x9e,0xed,0xf1,0xc6,0x8f,0xf4,0xc2,0xe8,0x31,
+  0x0,0xb3,0x77,0x72,0xbe,0x1c,0x80,0x1b,0x56,0xd,0xa0,0xa,0xa0,0xa8,0x95,0x78,
+  0xb4,0xc6,0x4a,0x34,0xaf,0x22,0x3b,0x5e,0xd,0x18,0x63,0x44,0x3e,0x23,0x67,0x3f,
+  0x1d,0x95,0xb9,0xb,0x53,0x80,0x29,0x0,0xc8,0x2,0x58,0x32,0xea,0xfb,0x5,0x0,
+  0x4a,0x25,0x73,0x0,0x44,0x0,0x84,0x0,0xdc,0x78,0x6b,0x5,0x4a,0x17,0xac,0x88,
+  0x52,0x57,0x54,0xcb,0x75,0xf8,0x7f,0xd4,0xec,0x69,0x2,0x3f,0xb2,0xd3,0x69,0x0,
+  0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/breakpoint.png
   0x0,0x0,0x8,0xc7,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -401,319 +713,7 @@
   0x1c,0x8f,0xb2,0x9f,0x9,0x7b,0xf0,0xfd,0xf2,0x4f,0xa6,0x94,0xfa,0x22,0xc9,0xf7,
   0x6d,0x0,0xe,0x19,0xb9,0x2a,0xab,0x3b,0x72,0x2d,0x0,0x0,0x0,0x0,0x49,0x45,
   0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/next.png
-  0x0,0x0,0x3,0xaa,
-  0x89,
-  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
-  0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
-  0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
-  0x0,0x0,0x3,0x61,0x49,0x44,0x41,0x54,0x58,0x85,0xed,0x94,0xcf,0x6b,0x5c,0x55,
-  0x14,0xc7,0x3f,0xe7,0xce,0xbc,0x37,0x49,0x67,0xda,0x12,0xb1,0x58,0x1b,0x27,0xbf,
-  0x9a,0xa1,0x6a,0x2c,0xa9,0x82,0xc5,0x6c,0x5c,0x8a,0x8a,0x3f,0xa0,0xa2,0x36,0x41,
-  0xc1,0x85,0xe8,0xae,0x2b,0x45,0xff,0x5,0x75,0x33,0x71,0xab,0xd0,0xa0,0x55,0xa1,
-  0x25,0x14,0x71,0x21,0x76,0x84,0xce,0xc4,0x3f,0x41,0xb0,0x69,0x2b,0x46,0xd1,0x4a,
-  0xea,0xc2,0x4c,0x52,0xdb,0x79,0x3f,0xef,0x75,0x71,0xdf,0x1b,0x5e,0xa6,0x9d,0x8c,
-  0x29,0x63,0x5d,0x98,0x3,0x87,0xfb,0x2e,0xbc,0xf7,0xbe,0x9f,0xf3,0x3d,0xe7,0x5e,
-  0xd8,0x89,0x9d,0xe8,0x43,0x7c,0x39,0xc7,0xcc,0x17,0xb3,0xa5,0xb1,0xdb,0xf9,0x56,
-  0xf5,0x41,0xdf,0xdd,0xe3,0xf0,0xce,0xa1,0x89,0xb1,0xf9,0x8f,0x5e,0x28,0x4e,0xfc,
-  0x17,0x0,0xf9,0xc1,0x1c,0xf9,0xca,0xc3,0x8f,0x3f,0x37,0x33,0x7d,0xff,0xe2,0xc9,
-  0xe3,0x7b,0xf,0xde,0x69,0x0,0x44,0xc0,0x2d,0xc,0x32,0x7a,0x68,0xfa,0xc8,0x91,
-  0x83,0xf7,0x54,0x17,0xb6,0x1,0xd1,0x1f,0x0,0x5,0x98,0x10,0xb7,0x50,0x60,0x72,
-  0xea,0x91,0x67,0x8e,0x3e,0x58,0x5e,0x3c,0xf5,0xca,0xdd,0x93,0x77,0x1c,0x0,0x13,
-  0xe1,0xb8,0x3,0x94,0xc7,0x2b,0xd3,0x87,0xc7,0xf6,0xce,0x7f,0xf6,0xea,0xbe,0x9e,
-  0x10,0xf9,0xec,0xe6,0xab,0x17,0x99,0x19,0xd9,0xc5,0x30,0x62,0x6d,0x45,0xec,0xcf,
-  0x25,0x59,0x6f,0xda,0x3,0x1b,0x1,0x3,0x43,0x83,0xdc,0x8b,0xe,0xc0,0x44,0x8,
-  0x21,0x6e,0xc1,0x61,0xa2,0x32,0xf9,0xb4,0x5b,0x58,0x29,0x7f,0xfe,0x9a,0x3a,0x36,
-  0xb7,0x70,0xf5,0xc7,0xae,0xf0,0x99,0x67,0xb7,0x3e,0xcb,0xe9,0xa9,0xa3,0x4f,0x3c,
-  0x8f,0x52,0xa0,0x4,0x11,0xb1,0x1e,0x89,0x58,0x71,0x31,0x20,0x6,0x30,0x80,0x46,
-  0x30,0x8,0x9a,0xbc,0xd2,0xb8,0x77,0x95,0x41,0x47,0x60,0x22,0xd0,0x21,0x46,0x87,
-  0x84,0xde,0x35,0x56,0x7e,0x5a,0xf9,0xfa,0x87,0xdf,0x82,0x13,0xc7,0x4f,0xae,0xde,
-  0x12,0x22,0xeb,0x40,0x3e,0xf,0xf9,0xdd,0xfb,0x46,0x40,0x29,0xc8,0x25,0xa5,0xaa,
-  0x54,0x1c,0x2b,0xdc,0x6,0x88,0xc1,0x68,0x90,0x18,0x74,0x4c,0xea,0x40,0xa,0x21,
-  0x26,0xc0,0x75,0x72,0x8c,0x8f,0xee,0x7f,0xca,0x75,0xfe,0x38,0x7b,0xfa,0xf5,0xe1,
-  0x63,0x2f,0x7d,0x7c,0xe5,0x72,0x27,0xc0,0xe6,0x19,0x10,0xec,0x8f,0x74,0x0,0x71,
-  0x66,0x8d,0x3b,0xf6,0x3a,0x0,0x1d,0xda,0xbe,0xc7,0x41,0xd2,0xff,0x24,0x9,0xdb,
-  0xf3,0x0,0x11,0x8e,0x9b,0x63,0x78,0xff,0x9e,0x87,0x1e,0x38,0x60,0x3e,0x3c,0xf3,
-  0x46,0xb9,0xb2,0x35,0x0,0x40,0xe4,0x27,0xe9,0xd9,0x8c,0x3d,0x24,0xf6,0x30,0x69,
-  0x6a,0x1f,0x62,0xf,0xb4,0x97,0xac,0x1,0x68,0x3f,0xc9,0x4,0xce,0x4,0x6d,0x10,
-  0x31,0x21,0x8e,0xa3,0x18,0x3b,0x50,0x7a,0xf2,0xf0,0x7d,0xf1,0xd9,0x33,0x6f,0x8e,
-  0x6c,0x82,0xd8,0x34,0x84,0x22,0x60,0xe2,0x0,0x8c,0x20,0x28,0x30,0x2,0x46,0x30,
-  0xc9,0x40,0x22,0x26,0x59,0x35,0x90,0xa4,0x68,0x30,0x31,0x10,0xd9,0x96,0x68,0xb,
-  0x4a,0xd4,0x82,0xd8,0x87,0xd8,0xc7,0xe8,0x90,0x5c,0x1c,0x32,0xe4,0xb6,0xa6,0x4c,
-  0x34,0xf4,0x2c,0x30,0x6f,0x7b,0xd8,0x1,0x60,0x1d,0xf0,0x40,0x29,0x8c,0xb6,0xfd,
-  0x17,0x95,0xce,0x81,0x1,0x65,0xfb,0x6f,0x74,0x0,0x3a,0x11,0x8,0x9a,0x98,0xf8,
-  0x6,0x44,0xd7,0xad,0x2b,0xda,0x3,0x63,0xda,0xa7,0x8,0xb1,0x23,0xd3,0xbc,0x21,
-  0x7e,0xfd,0x62,0xf1,0x9b,0xb9,0x53,0x57,0x16,0xbb,0x3a,0xd0,0x9e,0x1,0x93,0x9c,
-  0xb9,0xb4,0x74,0x3,0x68,0x1f,0x13,0x6c,0x80,0xff,0x27,0x26,0xdc,0x80,0xb8,0x85,
-  0xa4,0xfd,0x4e,0x5e,0x27,0x73,0x54,0xc9,0x7c,0xea,0x45,0x50,0xbf,0x54,0x3c,0x57,
-  0x5d,0xa,0x3f,0x0,0x56,0xd3,0xea,0xbb,0x38,0xe0,0xdb,0x53,0xa0,0xd,0xe8,0x0,
-  0xed,0xaf,0x61,0xfc,0x35,0xf0,0xd7,0x10,0x22,0x2b,0xd2,0x99,0xdd,0xc4,0xc5,0x56,
-  0xde,0x58,0x2e,0xd6,0xe6,0x3e,0xfd,0xeb,0x6d,0xe0,0x67,0xc0,0xef,0xea,0xc0,0x7a,
-  0x8,0xab,0xbf,0x5c,0x0,0x95,0x9c,0x79,0xed,0x23,0x71,0xb,0x44,0xdb,0xb,0x28,
-  0x93,0x24,0xab,0xca,0xc1,0x40,0x1,0xa,0xb9,0x8c,0xb8,0xb2,0x95,0xfb,0x11,0x34,
-  0x2e,0x96,0x6a,0xd5,0x7a,0xf0,0xde,0xad,0xc4,0x53,0xd3,0xd3,0x70,0x81,0xa,0x30,
-  0x7a,0x93,0x2b,0x5b,0x87,0xf3,0xdd,0x9,0xde,0x7d,0x74,0x94,0xc7,0x52,0x47,0x8c,
-  0xc0,0x7a,0x4b,0xf9,0x8d,0xb,0xc5,0xda,0xcb,0xb,0xd7,0xde,0xea,0x26,0xde,0xe9,
-  0x40,0x0,0x5c,0x6,0x56,0xb6,0x9,0xb0,0x6b,0x77,0x81,0x66,0xb6,0xe7,0x7e,0x4,
-  0x4b,0xcb,0xc5,0x6f,0xab,0xe7,0xc3,0xf7,0xb7,0x12,0xef,0x4,0x48,0x21,0x82,0x6d,
-  0x2,0x90,0x57,0xc4,0xa9,0x78,0xb3,0x25,0xfe,0xd2,0x72,0xa9,0x67,0xe5,0xdd,0x0,
-  0x6e,0x2f,0x32,0x95,0x37,0x96,0x4b,0xb5,0xea,0xf9,0xee,0x3d,0xff,0x57,0x0,0x8c,
-  0x81,0xe6,0x75,0xf1,0xeb,0x97,0x8a,0xb5,0xd9,0x4f,0xfe,0x59,0xe5,0x7d,0x5,0x58,
-  0xf7,0xe0,0xfb,0xdf,0x8b,0xe7,0xe6,0x1b,0xbd,0x7b,0xde,0x19,0xd2,0xfb,0x95,0x9e,
-  0xe1,0x2,0xe3,0xd8,0xcb,0xe5,0xd7,0xed,0x88,0xf7,0x33,0x1c,0xfa,0x35,0x4f,0x3b,
-  0xf1,0xbf,0x8b,0xbf,0x1,0x89,0x9f,0x95,0xb4,0x21,0x16,0x51,0x5d,0x0,0x0,0x0,
-  0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/inspector.png
-  0x0,0x0,0x7,0xa8,
-  0x89,
-  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
-  0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
-  0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
-  0x0,0x0,0x7,0x5f,0x49,0x44,0x41,0x54,0x58,0x85,0xa5,0x97,0x6b,0x8c,0x5d,0x55,
-  0x15,0xc7,0x7f,0x6b,0xef,0x73,0xee,0xb9,0xf7,0xce,0x9d,0xb9,0xf3,0x68,0x87,0x4e,
-  0x5b,0x18,0x79,0x98,0x62,0xa9,0x5,0x1,0x9,0x55,0x24,0x41,0x20,0x3e,0x12,0x13,
-  0x88,0x89,0x68,0x34,0x4,0x5f,0x1,0x62,0x8c,0x86,0x4f,0x9a,0x60,0x8c,0x8f,0xa8,
-  0xf1,0x83,0x1f,0x14,0x4b,0x48,0x88,0xc1,0x47,0x14,0x92,0xfa,0xf8,0xa0,0x41,0x54,
-  0x24,0x1,0x11,0x63,0x0,0x5b,0xc6,0xa6,0x15,0xa4,0x85,0x4c,0x3b,0x7d,0xcc,0xe3,
-  0xce,0xdc,0xc7,0xb9,0xe7,0xb9,0x97,0x1f,0xce,0x9d,0x99,0x3b,0xcc,0x4c,0x8b,0xba,
-  0x92,0x95,0x93,0xbd,0xcf,0xda,0x6b,0xfd,0xd7,0x7f,0xaf,0xbd,0xce,0xd9,0xc2,0x79,
-  0x44,0x55,0xfb,0x87,0x2,0x18,0xc0,0xf6,0xd4,0x2c,0x9b,0x1,0x19,0x90,0x3,0xe,
-  0x50,0x11,0x39,0x9f,0xeb,0x15,0x87,0x6f,0x26,0xb8,0x1,0x4a,0xaa,0x5a,0x5,0x86,
-  0xe2,0x34,0xaf,0xbf,0x7e,0xb6,0x35,0x96,0x64,0x6e,0x40,0x4,0x7c,0x6b,0xc2,0xc9,
-  0xf1,0xc1,0xf9,0xc0,0xb7,0x4b,0x22,0xb2,0x4,0x84,0x40,0x2,0xb8,0xf3,0x1,0x39,
-  0x1f,0x0,0x51,0xd5,0x92,0x88,0xc,0xfd,0x7b,0x66,0x71,0xe7,0xb3,0x47,0x4f,0xef,
-  0x5b,0x68,0xc5,0x37,0x8a,0x70,0xf9,0x40,0xb9,0x34,0x56,0xd,0xbc,0x92,0x8,0x74,
-  0x93,0x3c,0xe9,0x44,0xe9,0x82,0xaa,0x1e,0x1d,0xad,0x95,0x9e,0xd9,0xb7,0x6b,0xdb,
-  0x73,0x97,0x6d,0x1f,0x9e,0x6,0x9a,0x40,0x7c,0x2e,0x46,0xd6,0xcd,0xf6,0x67,0xad,
-  0xaa,0x95,0xd3,0x8d,0xce,0xc4,0xfe,0xdf,0x4d,0x7d,0xa4,0xd9,0x4d,0x3f,0x31,0x39,
-  0x5e,0xbf,0x64,0x72,0xbc,0x5e,0xb2,0xc6,0x4a,0x96,0x17,0xbc,0x4b,0xcf,0x8b,0x67,
-  0x20,0xce,0x32,0x9d,0x9e,0x6d,0x26,0x33,0xf3,0xad,0xd7,0x6,0x2b,0xde,0xcf,0xef,
-  0x7e,0xff,0x9e,0x47,0xb7,0x8f,0xd5,0x4e,0x2,0xdd,0xcd,0xd8,0x58,0x37,0xe3,0x9c,
-  0x3,0x30,0xed,0x6e,0x52,0xdb,0xff,0xdb,0x43,0xd7,0x1d,0x3c,0x3e,0xff,0x9d,0x8b,
-  0x27,0x46,0xae,0xbe,0x7c,0xe7,0x56,0x89,0x33,0x68,0xb4,0x53,0xdc,0xda,0xba,0x58,
-  0x11,0x23,0xc2,0x48,0xcd,0x27,0xf0,0xe1,0x95,0x99,0x79,0x3d,0x3e,0xd3,0x38,0xf8,
-  0xf6,0xc9,0x91,0x2f,0xdf,0xf3,0xc1,0xbd,0x7f,0xab,0xd7,0xca,0xad,0x8d,0x40,0xac,
-  0x19,0xa9,0x2a,0xaa,0x2a,0xc7,0x4f,0x35,0x6,0xbe,0xf4,0xa3,0x67,0x6e,0x6f,0x27,
-  0xee,0xdb,0x37,0xee,0xbd,0x78,0xc7,0x40,0xb9,0xca,0x52,0x98,0xe2,0x74,0xed,0x22,
-  0x65,0xe3,0xb1,0x11,0xa8,0x57,0x7d,0xe2,0x34,0xe2,0xe9,0xa9,0xd7,0x66,0xaa,0x9e,
-  0xdc,0xff,0xcd,0x3b,0xdf,0x75,0xe0,0xd2,0x1d,0xa3,0x6d,0x63,0xcc,0xba,0xaa,0x5e,
-  0x93,0xfd,0xe1,0x63,0xa7,0x4a,0xf7,0xfe,0xe0,0x4f,0xb7,0x5b,0x3f,0x78,0xe0,0xd6,
-  0x6b,0x77,0x8d,0xe5,0x6a,0x25,0xc9,0x36,0xce,0xd8,0xb3,0x82,0x0,0x69,0xbe,0xf1,
-  0xfb,0x92,0x67,0x8,0x3c,0xa7,0x7f,0x7c,0xe1,0xe5,0x85,0x2c,0x89,0xbf,0xf0,0xfd,
-  0x7b,0xde,0x7b,0x60,0xef,0x5b,0x27,0xe2,0x7e,0x16,0xd6,0x1,0xd8,0xfb,0xa9,0x7,
-  0xdf,0x11,0xa9,0xfd,0xcd,0x6d,0xef,0xb9,0xf2,0x42,0xcf,0x2b,0x4b,0xee,0x36,0x76,
-  0x7e,0xc5,0x45,0x75,0x6e,0xbe,0x72,0x1b,0x0,0x4f,0xbd,0x74,0x9a,0xa9,0xd7,0x97,
-  0x36,0xb4,0xb3,0x56,0xb0,0x64,0xfa,0xcb,0xa7,0xf,0xcd,0x94,0x25,0xbb,0xed,0xef,
-  0xfb,0x3f,0xfd,0x7c,0xa9,0xe4,0x6f,0x0,0xe0,0x9a,0x2f,0xb2,0xa5,0x5e,0x9,0xa2,
-  0x4a,0xfd,0xf,0x1f,0xba,0xe1,0xaa,0x1b,0xb7,0x6f,0xdd,0x42,0xba,0x49,0xf0,0xc1,
-  0xb2,0xe1,0xbe,0xdb,0x76,0x33,0x3a,0x58,0x6,0xa0,0xd1,0x8e,0xf9,0xde,0xaf,0xf,
-  0xd3,0x8c,0xdc,0x86,0xf6,0xbe,0x35,0x2c,0xb6,0x16,0x39,0xf0,0xe7,0x17,0x9f,0x1b,
-  0x48,0xdb,0xb7,0xcc,0x3c,0xfe,0xb5,0x70,0xf9,0x9d,0x59,0xb1,0x5a,0x6c,0x32,0x97,
-  0xda,0x3b,0x2e,0x18,0xad,0xdf,0x30,0x36,0x32,0x4c,0x98,0x64,0xa4,0x59,0xbe,0xa1,
-  0xe2,0x1c,0x65,0xdf,0x2,0x45,0xdd,0x4,0xbe,0x5,0x75,0x24,0x9b,0xd8,0x87,0x71,
-  0x4a,0xbd,0x36,0xc8,0xce,0xf1,0x91,0xeb,0x67,0x42,0xfd,0x28,0x3b,0x3f,0xcc,0x7a,
-  0x0,0xf5,0xe1,0x21,0x44,0x3e,0x7f,0xd5,0xae,0xb7,0x98,0x6e,0x92,0x13,0x67,0x39,
-  0x71,0xda,0xd3,0x6c,0xed,0xf8,0x54,0xa3,0xcb,0xc1,0x63,0x73,0x38,0x55,0x14,0x78,
-  0xe9,0xd8,0x2c,0x33,0xb,0x21,0xc9,0x26,0xf6,0x71,0x96,0xb3,0x14,0xa6,0xec,0xdb,
-  0x73,0xa9,0x20,0xe6,0x73,0x4c,0x4c,0xe,0x2f,0x87,0xf5,0x8a,0xc7,0x5d,0x10,0x78,
-  0xd7,0x8d,0x8f,0xe,0xed,0xae,0xd,0xd4,0x88,0xd3,0x7c,0x43,0x2a,0xfb,0xe5,0xe1,
-  0x27,0x5e,0xe6,0xd9,0xc3,0x67,0x40,0xe0,0xc8,0xf4,0x12,0xa9,0x1a,0x70,0xe7,0x5e,
-  0x57,0xd,0x2,0x76,0x8e,0xd7,0xdf,0x76,0xe2,0x44,0x77,0x1f,0xdc,0xf5,0x38,0x3c,
-  0x82,0x47,0xed,0x3,0x70,0x81,0x8,0xa2,0xef,0xdb,0x71,0xc1,0xd6,0x4a,0x37,0xce,
-  0x36,0x75,0xa0,0xc0,0x60,0xd9,0x3,0x55,0x14,0xc3,0x91,0x93,0xad,0xde,0xbc,0x90,
-  0xbc,0x9,0xd0,0x49,0x9a,0x73,0xf1,0x8e,0xf1,0xf2,0x89,0x13,0x67,0x6e,0xe5,0x92,
-  0xfc,0x9,0x8e,0xe1,0x3c,0xaa,0x13,0x50,0xf2,0x4b,0xc0,0x35,0x95,0x6a,0x55,0x92,
-  0x6c,0xe3,0x42,0x2,0xc8,0xf3,0x9c,0xfd,0xf7,0x5e,0x8f,0x5d,0x3e,0x46,0xbd,0xc7,
-  0x42,0x2b,0xe6,0x1b,0x8f,0x1e,0x64,0xa9,0x9b,0xad,0x36,0x83,0x4d,0xa4,0x3e,0x38,
-  0x8,0xa2,0x57,0x53,0xaa,0x94,0x80,0xc8,0x23,0x48,0x21,0xa8,0xe,0x19,0x23,0xdb,
-  0xac,0xf5,0x88,0xb3,0xcd,0x32,0x11,0xb2,0x2c,0xc7,0x1a,0xc1,0x33,0xc2,0x40,0xd9,
-  0xc7,0x98,0x2,0x41,0x96,0x3b,0x52,0x7,0x71,0x2e,0xa0,0xae,0xe0,0x6a,0x93,0x6e,
-  0xe9,0x19,0x8f,0x72,0xc9,0x9b,0x88,0x2a,0x41,0xbd,0x0,0xe0,0x47,0x60,0xea,0x15,
-  0x3,0x95,0x5c,0x37,0xa0,0x52,0x64,0x45,0x1d,0x96,0xcf,0x3c,0xf0,0x1c,0x83,0x65,
-  0xcb,0x77,0xef,0xba,0x96,0xf1,0xe1,0xa,0x14,0xe1,0x48,0x72,0x25,0x71,0x2,0x2a,
-  0xc5,0x84,0x6a,0x1,0xa6,0xf,0x48,0xc9,0x33,0xa8,0x80,0xa0,0x15,0x84,0x2a,0x80,
-  0x87,0x96,0x41,0x11,0x55,0x95,0x38,0xcd,0x31,0x76,0xb9,0x6,0x7a,0x81,0x8d,0x29,
-  0x54,0x4,0xc4,0x72,0xb6,0xb,0x49,0x9e,0xb3,0xa6,0x41,0x29,0x24,0x39,0xc4,0xe,
-  0x44,0xd,0xe0,0x30,0x2a,0x18,0x31,0x78,0xc6,0x21,0xaa,0x2c,0x76,0x22,0x66,0x16,
-  0xda,0x9c,0x98,0x6d,0x42,0x94,0xca,0xf2,0x6,0x7a,0xcc,0x77,0xa0,0x5e,0x8f,0x9d,
-  0xd3,0xa8,0xd5,0x8d,0xc1,0x58,0x8c,0x11,0x44,0xc,0x18,0xb,0x8,0xd2,0x7,0x46,
-  0x11,0x92,0xde,0xf1,0x5b,0xfe,0x72,0x2a,0x80,0x31,0x88,0x15,0x8c,0x80,0xa8,0xa3,
-  0x15,0xc6,0x2c,0xb5,0xbb,0x34,0x9a,0x21,0xcd,0x56,0x48,0x9a,0xa5,0x3d,0xb0,0xa,
-  0x68,0x84,0xd3,0xa8,0x0,0xd0,0xfc,0x15,0xc4,0xf7,0x34,0x35,0x70,0xb3,0xaf,0x9e,
-  0x6a,0xec,0xf2,0xfc,0x10,0xcf,0x5a,0xfc,0x52,0x89,0x52,0x10,0x60,0x7d,0x1f,0xeb,
-  0xf9,0x78,0xbe,0x8f,0xef,0xb,0xc6,0x58,0x8c,0x3a,0xa2,0x28,0x22,0x8a,0x4,0x55,
-  0xa5,0xdd,0xe,0x39,0x36,0x1f,0x71,0xa2,0x2d,0x44,0x49,0x4a,0x1c,0xa5,0x68,0x9e,
-  0x82,0xcb,0x20,0xcb,0x8a,0x6d,0x41,0x58,0xa9,0x50,0xe7,0x66,0x89,0xb3,0xa5,0x2,
-  0x0,0x40,0xa2,0x31,0xea,0xa6,0xf2,0x3c,0x7b,0x77,0x8e,0x27,0x71,0xe,0xe4,0x39,
-  0x24,0xe9,0xea,0xcf,0x97,0x55,0xb0,0xe,0x8c,0x65,0x5b,0x25,0xa3,0x13,0x46,0x44,
-  0x95,0xa2,0x8,0xa3,0x24,0xa1,0xd1,0x75,0x2c,0xc6,0x1e,0x38,0x5b,0xd8,0x2e,0x8b,
-  0xd5,0x5e,0x51,0xba,0xa2,0x4f,0xa8,0x3,0x75,0x53,0x24,0x1a,0xc3,0x72,0x27,0x3c,
-  0xbb,0x98,0xe3,0xf4,0x49,0xba,0x4b,0x31,0x36,0x0,0xb1,0x5,0xfd,0xc6,0x82,0xf5,
-  0x7a,0xea,0xf7,0xb4,0x4,0xc6,0x5b,0x7f,0xda,0x8c,0x5,0xaf,0x4,0xde,0xb2,0x5d,
-  0x6f,0x9d,0xe9,0x53,0x2f,0x80,0x68,0x31,0xc1,0xe9,0x53,0x74,0xe6,0xb3,0x55,0x0,
-  0xad,0xc7,0x20,0x4e,0xff,0x4a,0xd4,0x3a,0x86,0xb8,0xde,0x42,0xdb,0x5b,0xd8,0x7b,
-  0xf6,0x83,0x30,0xde,0x1b,0xbe,0xa3,0xd2,0xb3,0xf1,0xc1,0xf8,0x6b,0x83,0x1a,0x5b,
-  0x14,0xb1,0xf5,0x40,0x50,0xa2,0xe6,0x71,0xb2,0xec,0x2f,0x9c,0x3e,0xc0,0x2a,0x0,
-  0x80,0x66,0xe7,0xc,0x59,0xfa,0x8,0xad,0x33,0x8a,0x57,0x2,0xe9,0x55,0xbf,0xe9,
-  0x63,0xc3,0xe5,0x8c,0x78,0x31,0xc3,0x1,0xab,0xcd,0x8,0x30,0x46,0x18,0xe,0x94,
-  0x11,0x1b,0x15,0xfb,0xbe,0x92,0x40,0x9f,0x7a,0x1,0xb4,0x4e,0x41,0x9a,0xfc,0x94,
-  0x46,0x34,0xd3,0x7,0xbd,0x27,0x95,0x3b,0xe1,0xb2,0xc1,0x2d,0xd4,0x2a,0x4f,0x31,
-  0x71,0xc5,0x1e,0xca,0xc3,0x5,0x8,0x2f,0x28,0x68,0xf5,0x4a,0x90,0xc4,0x1c,0xfe,
-  0xca,0x15,0x94,0x3c,0xc3,0x70,0xd5,0xc3,0xf6,0x1a,0x51,0xee,0x94,0xc5,0xde,0x1f,
-  0xd3,0xee,0xaf,0x4f,0x91,0xfb,0x55,0xc8,0x92,0x55,0x55,0x7,0xdd,0x45,0xe5,0xd4,
-  0x3f,0x8f,0xd2,0xee,0xdc,0xc4,0x2b,0xcd,0x33,0x44,0x3f,0x7b,0x3,0x3,0xdd,0x9f,
-  0xc0,0x91,0xa5,0x39,0xe2,0xe4,0x3e,0xce,0xbe,0x32,0x8b,0xcb,0xb4,0xa0,0x54,0xa,
-  0x20,0x62,0xc0,0x16,0x47,0x54,0x11,0x1a,0x61,0xce,0x5c,0x3b,0x63,0xae,0x93,0xd1,
-  0x8,0x73,0x14,0x41,0x44,0x7a,0x54,0x9b,0xbe,0x35,0x9e,0xe2,0x52,0x65,0xf6,0xe5,
-  0x5,0xe2,0xe8,0x3e,0x5e,0x5b,0xd,0xbe,0x96,0x81,0x65,0xd9,0x73,0xb7,0x4f,0xb9,
-  0xfc,0x59,0x6a,0xa3,0xdf,0x62,0xc7,0x95,0x43,0x94,0x87,0x4,0x31,0xe0,0x97,0x40,
-  0x85,0xad,0x83,0x16,0xe9,0xd5,0x84,0xf6,0x6a,0x41,0xf2,0x1c,0x5c,0x8a,0xe6,0x19,
-  0xb3,0xed,0xbc,0xe8,0x19,0x69,0x2f,0xf3,0xa8,0xa9,0x9c,0x3c,0xd8,0xa2,0x35,0x7f,
-  0x3f,0xdd,0xe8,0x21,0xe,0x3f,0x94,0xf4,0x87,0xb3,0xeb,0x0,0x84,0xef,0x74,0x54,
-  0x75,0xa,0x4d,0x1a,0x84,0x73,0xd7,0x53,0x19,0xae,0x52,0x5d,0xde,0xe,0x9f,0x50,
-  0xca,0x74,0xa8,0xd0,0x91,0x2a,0xa1,0x54,0x9,0x29,0xd3,0x71,0x1e,0x9d,0xdc,0x23,
-  0xcc,0x4d,0x2f,0x27,0x57,0xd8,0xb7,0xce,0x2a,0xd3,0x2f,0x34,0xe8,0x2c,0x7e,0x95,
-  0x30,0x7d,0x98,0xe9,0x3c,0x26,0x79,0x91,0x73,0x3,0x48,0x9e,0x87,0xee,0xd,0x19,
-  0xd5,0xe8,0x10,0x9a,0x1f,0xa2,0x73,0xe6,0x5a,0xe2,0xd6,0x18,0xd5,0x11,0xa1,0x3c,
-  0xc8,0x4a,0x8b,0x16,0x1,0xe9,0x3b,0xdf,0x2e,0x3,0xd7,0xb,0xdc,0x5d,0x52,0x4e,
-  0xfe,0x3,0x4e,0x1f,0x79,0x95,0x6e,0xe7,0x5e,0xba,0xf1,0x63,0x4c,0x57,0x63,0x5a,
-  0x3f,0x5c,0x17,0xee,0xdc,0xf7,0xa6,0xc9,0x5b,0x60,0x78,0xd7,0x76,0x9,0xfc,0xbb,
-  0xd5,0x2f,0x7d,0x9c,0xa1,0x6d,0x17,0x31,0x76,0x89,0x47,0x6d,0xb,0x4,0xb5,0xe2,
-  0xd8,0x1,0xe4,0x29,0xc4,0x1d,0x68,0xcf,0xc2,0xfc,0xf1,0x8c,0xe6,0xe9,0x69,0x49,
-  0xe3,0x5f,0x68,0x9c,0x3e,0x48,0xf3,0xd5,0x93,0x1c,0xff,0xfd,0xa6,0x21,0xce,0x7f,
-  0x83,0xbc,0xf0,0x63,0x50,0xab,0x7b,0x52,0xf1,0x27,0xf1,0xed,0x4d,0x18,0x7b,0xb3,
-  0x5a,0x7f,0x37,0x5e,0x30,0x86,0xf5,0x82,0x2,0x40,0x96,0x90,0xc5,0x73,0x92,0xa7,
-  0x47,0x71,0xee,0x49,0xb2,0xfc,0x49,0xed,0x66,0xaf,0xd3,0xa,0x33,0xa6,0x1f,0x39,
-  0xa7,0xfb,0x37,0x77,0x85,0x5d,0x96,0xcb,0x3f,0x9,0xb6,0x1c,0xe0,0xfb,0x83,0x66,
-  0xc0,0x1f,0x55,0xe7,0x6,0x0,0xc4,0x98,0xd0,0x85,0xe9,0x3c,0x49,0xd6,0x22,0xeb,
-  0xc4,0xfc,0xeb,0xc7,0xff,0x95,0xdb,0xff,0x5d,0xb6,0xdd,0x1,0x13,0x77,0xfc,0x5f,
-  0x2e,0xfe,0x3,0x8e,0x26,0xc0,0xa6,0x8,0xff,0x6,0x23,0x0,0x0,0x0,0x0,0x49,
-  0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/reload.png
-  0x0,0x0,0x7,0x8c,
-  0x89,
-  0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
-  0x0,0x0,0x20,0x0,0x0,0x0,0x20,0x8,0x6,0x0,0x0,0x0,0x73,0x7a,0x7a,0xf4,
-  0x0,0x0,0x0,0x4,0x73,0x42,0x49,0x54,0x8,0x8,0x8,0x8,0x7c,0x8,0x64,0x88,
-  0x0,0x0,0x7,0x43,0x49,0x44,0x41,0x54,0x58,0x85,0xad,0x96,0x5b,0x6c,0x54,0xd7,
-  0x15,0x86,0xff,0xb5,0xf7,0x39,0x33,0x67,0x2e,0x67,0x6c,0x8f,0x1d,0x1b,0x63,0x63,
-  0x12,0x63,0x7,0xe2,0x81,0x70,0x89,0xcb,0x25,0x21,0x4d,0x68,0x9b,0xaa,0x17,0xa9,
-  0x8a,0xaa,0xaa,0x2f,0x51,0xa5,0x34,0xaa,0x54,0x45,0x6a,0x33,0xf,0xc9,0x4b,0xa4,
-  0x3e,0xb4,0x6a,0xa5,0x94,0x3e,0x54,0xa5,0xaa,0xa2,0x5e,0x22,0xb5,0xf,0x95,0xda,
-  0xaa,0x55,0xa4,0x84,0x40,0x9a,0x96,0x88,0x4b,0x1c,0xb0,0xc1,0x71,0x8d,0x31,0x36,
-  0x97,0x80,0x31,0xd8,0xd8,0x66,0x6c,0x8f,0xcd,0x8c,0x67,0xce,0x39,0xfb,0xd6,0x87,
-  0x31,0xc1,0x98,0x31,0x18,0xc8,0x92,0x8e,0x46,0xda,0xb3,0xf7,0xfa,0xbf,0xb5,0xd6,
-  0xd6,0x5e,0xb,0x78,0x40,0x73,0x53,0xe9,0xf5,0x6e,0x2a,0xbd,0xeb,0x7e,0xcf,0xb3,
-  0x7,0x5,0x0,0xd0,0x50,0x59,0x9d,0xfc,0xa9,0x9b,0x4a,0xb7,0xdd,0xcf,0x61,0xfe,
-  0xa0,0xea,0xe1,0xda,0xed,0x2d,0x2f,0xfe,0xf0,0x9b,0x3f,0xe,0xc7,0xe2,0x5f,0xcc,
-  0xb3,0xb6,0x8b,0xf9,0x91,0x23,0x43,0xf7,0x72,0xfe,0xf3,0xc8,0x0,0x38,0x1,0x5f,
-  0xfa,0xfa,0xb6,0x4d,0x8f,0x3f,0xf1,0xd8,0x2f,0xef,0x35,0x13,0xd6,0xbd,0x8a,0xb9,
-  0xa9,0x34,0x0,0x84,0x1,0xb8,0x0,0xa2,0x0,0x56,0x28,0xd,0xe4,0xb5,0x65,0x3d,
-  0xf7,0xfc,0xb3,0x4f,0x28,0x43,0x7f,0xe9,0x77,0x7f,0xf2,0xfa,0x44,0xe7,0x2f,0x3e,
-  0xfc,0x5c,0x1,0xdc,0x54,0x9a,0x0,0x34,0x2,0xf8,0x46,0x55,0x4d,0x72,0x73,0x53,
-  0xcb,0xea,0x95,0x55,0xc9,0x4a,0xd7,0xa,0x5b,0x35,0x89,0x64,0x32,0x9c,0xb,0xc,
-  0x2,0x29,0x69,0xe7,0x73,0xdb,0x37,0x1b,0x83,0x37,0xa,0xb9,0xf4,0x8b,0xb9,0xd3,
-  0x7b,0x6,0xee,0xe6,0x97,0x96,0x21,0x1c,0x6,0xb0,0xbe,0x79,0xed,0xea,0xd7,0x9a,
-  0x1e,0x69,0xf8,0xf2,0xba,0xd,0xad,0x55,0x15,0x55,0x71,0xae,0x89,0x93,0x34,0x80,
-  0x1,0xc1,0x80,0x21,0xe7,0x97,0xdc,0x31,0xc6,0x50,0x19,0xb5,0xcd,0xc1,0xbd,0x7,
-  0xbb,0x7,0x7a,0x4e,0xbf,0x7e,0xad,0xeb,0xce,0x99,0xb8,0xe3,0x25,0x74,0x53,0x69,
-  0xc4,0xe2,0xb1,0x57,0xbe,0xf0,0xe4,0xe3,0x3f,0xdf,0xf6,0xf4,0xa6,0x9d,0x2b,0x9b,
-  0x9b,0xe2,0xd2,0xe,0xf1,0x7c,0x0,0x2a,0x8,0x83,0x62,0x0,0x14,0x25,0xa1,0x28,
-  0x0,0x65,0x18,0xb4,0x21,0x48,0xcd,0x50,0x90,0xa0,0xe6,0xe6,0xc6,0x3a,0xaf,0xe0,
-  0xa5,0xa6,0xbd,0xc6,0x8f,0x83,0x4c,0x57,0xe6,0x9e,0x1,0xdc,0x54,0x7a,0x45,0x4d,
-  0x6d,0x72,0xf7,0xae,0xaf,0x6e,0x7f,0x75,0xcd,0xfa,0xd6,0x7a,0xdf,0x72,0xb8,0x2f,
-  0x41,0x81,0x4,0x94,0x22,0x28,0x5,0x28,0x4d,0x50,0x8a,0xa0,0x35,0x41,0x6a,0x82,
-  0x32,0x4,0x65,0x18,0x84,0x66,0xe0,0x56,0x98,0x6a,0xaa,0xdd,0xe4,0xc9,0x63,0x27,
-  0xa6,0xc3,0xb5,0x3b,0xba,0x82,0x4c,0x97,0x2c,0xa7,0xb3,0xe4,0x1d,0xa8,0xaa,0xa9,
-  0x7c,0xad,0x7d,0xc7,0x86,0x17,0x2a,0x1b,0xea,0x23,0x39,0x41,0xd0,0x46,0xc3,0x80,
-  0xc1,0x0,0x0,0x34,0xc,0x31,0x18,0x18,0x18,0x32,0x0,0x11,0xc,0xa8,0xf4,0xcb,
-  0x18,0x42,0x9c,0xe0,0x4f,0x67,0xfc,0x8f,0xf6,0x7f,0xf0,0xa1,0x3f,0xd1,0xf1,0x8e,
-  0x98,0xfa,0x5f,0xb0,0x94,0xce,0x6d,0x0,0x6e,0x2a,0xcd,0x39,0xe7,0x2f,0x6d,0x6a,
-  0x4f,0xbd,0x5c,0xdd,0xd0,0x10,0xc9,0xfb,0x6,0x30,0xaa,0x24,0x48,0x6,0x0,0x81,
-  0x19,0x3,0x32,0xda,0x68,0xa9,0x8c,0xd1,0x5a,0x47,0xa2,0x11,0x96,0xe3,0x9,0x66,
-  0x18,0xc1,0x81,0x32,0x62,0x26,0xe3,0xbf,0xf7,0xb7,0x7f,0xfc,0x3d,0x33,0xf0,0xce,
-  0x5b,0x72,0x76,0xf0,0x2c,0x0,0xbd,0x6c,0x0,0x0,0x6b,0x9a,0x9a,0x1b,0xbf,0x5f,
-  0xb7,0xaa,0x3e,0x52,0x90,0x20,0xd,0x55,0x8a,0x6e,0xde,0x78,0x50,0x30,0x23,0xc3,
-  0xa3,0xc5,0x89,0x91,0xd1,0xac,0x54,0x6a,0x58,0x4,0x52,0x6e,0xda,0xba,0x79,0x2b,
-  0xad,0xaa,0x70,0x6c,0xa3,0x51,0x9c,0x1c,0xb,0xba,0xf,0x1e,0x3a,0x9c,0x19,0x7c,
-  0xf7,0x2d,0x39,0x3b,0x78,0xa,0x80,0xb7,0x94,0x78,0x59,0x80,0x8a,0xaa,0x8a,0x97,
-  0x9a,0x5b,0x56,0x6d,0xc9,0xb,0x46,0xca,0x28,0x18,0x30,0x80,0x18,0xb8,0xf6,0x4c,
-  0xfe,0xda,0xb8,0xe8,0xef,0xe9,0x3b,0x3e,0x31,0xd4,0xf7,0x4f,0x6f,0xe4,0x83,0x63,
-  0x46,0xce,0x79,0x91,0xd5,0xcf,0x3f,0xd9,0xda,0xb6,0xb6,0x3d,0x21,0x7c,0x53,0x9c,
-  0x1c,0xb,0x3a,0xf6,0xed,0xfd,0x57,0xf6,0xdc,0xfe,0xdf,0xcb,0x99,0x81,0x4f,0xee,
-  0x26,0x7e,0x1b,0x80,0x9b,0x4a,0x53,0x3c,0x1e,0xf9,0x56,0xd8,0xad,0x8,0xf9,0x42,
-  0x3,0x6,0xa5,0x9a,0x93,0x46,0x61,0x72,0x5c,0xf6,0x7f,0x72,0xb2,0x73,0xac,0x7f,
-  0xdf,0xee,0x60,0xba,0xf7,0xc,0x8c,0x9c,0x2,0x20,0xb9,0x53,0xd7,0x22,0x95,0x42,
-  0xfe,0xea,0xb0,0xe8,0x3f,0x76,0xac,0x23,0x7b,0xee,0xfd,0x3f,0x88,0x99,0xd3,0x7d,
-  0xcb,0x11,0x2f,0x97,0x81,0x67,0x92,0xf,0x55,0xaf,0xe,0xc,0x27,0xe9,0xcb,0x52,
-  0xe1,0xc8,0x80,0x7,0x73,0x66,0xa0,0xf7,0xd4,0xd9,0xf1,0x73,0x47,0x7e,0x1d,0x4c,
-  0x75,0x1f,0x6,0x30,0x77,0xe3,0x0,0x59,0x8e,0xc8,0x8c,0x4f,0xca,0x2b,0x1d,0x47,
-  0xf7,0xce,0xe,0x1d,0x78,0x53,0xcc,0xf4,0x9f,0x58,0xae,0x78,0x39,0x80,0x8d,0xb1,
-  0x84,0x1b,0x12,0xc2,0x40,0xa2,0x94,0x7e,0x82,0x44,0x21,0x3b,0xa3,0x33,0xa3,0x57,
-  0xe,0x8a,0x6c,0xff,0xd1,0x85,0xe2,0x37,0x6c,0x68,0xf0,0x4c,0xf7,0xdc,0xc8,0xc1,
-  0x37,0x45,0xf6,0x54,0xef,0xbd,0x88,0x97,0x3,0xa8,0x27,0xc6,0x99,0x27,0x14,0xb4,
-  0x21,0x18,0xa3,0x41,0xd0,0x98,0x9a,0xc8,0x8,0xa3,0xc5,0x21,0xed,0x65,0x6e,0x7b,
-  0x50,0x54,0xfe,0xca,0xa0,0x97,0xfb,0xf4,0x67,0x22,0xdb,0x77,0x7c,0xa1,0xb8,0x9b,
-  0x4a,0x3f,0x8a,0xd2,0x3b,0x63,0x16,0x7d,0x79,0x0,0x63,0xb9,0xd3,0x7b,0xca,0x2,
-  0x24,0x8c,0x1,0x9,0xa1,0x61,0xe6,0x9f,0x59,0xe9,0x7b,0xb8,0x9e,0x9d,0x95,0xaa,
-  0x30,0xd1,0x5b,0x2e,0x82,0xc2,0xf0,0xdb,0x63,0x0,0x26,0x17,0x89,0x73,0xb7,0xba,
-  0xfa,0x8f,0xb5,0x4d,0x8f,0xc4,0x18,0xe7,0x9a,0x31,0xe,0xc6,0xb9,0x26,0xc6,0xf4,
-  0xc0,0xc7,0x87,0xf7,0x1,0x78,0x63,0x1e,0x66,0x11,0x80,0x31,0xbe,0xef,0xf9,0x46,
-  0x21,0x42,0x52,0x3,0xbe,0x50,0x90,0xbe,0xf,0x6e,0xd9,0x96,0x55,0xd1,0xd2,0x80,
-  0x51,0x5c,0x2c,0xc7,0x50,0x66,0x6d,0xf3,0xca,0xd6,0xd4,0x96,0xba,0x2d,0xcf,0xb8,
-  0xca,0x72,0x40,0xc4,0x60,0x71,0x42,0x2,0x39,0x35,0xd0,0x71,0xe8,0x40,0x6e,0xe0,
-  0xb7,0xe6,0xc6,0xc6,0x45,0x19,0x30,0xd7,0x7d,0xcf,0x37,0x64,0x29,0x78,0x81,0x46,
-  0xd1,0x97,0xb0,0x39,0x87,0xed,0x38,0x9c,0x88,0x6f,0x6,0xf0,0x51,0xb9,0x2c,0x94,
-  0xb1,0xd,0xe1,0xaa,0x87,0xec,0x1c,0xe2,0x50,0x26,0xc,0x18,0x20,0xc,0xd,0xdb,
-  0x2b,0x2a,0x18,0x95,0x5d,0xb8,0xf1,0x96,0x81,0x44,0x2b,0xff,0x42,0x7e,0xf6,0xba,
-  0x94,0x22,0x40,0xd1,0xf3,0x61,0x8c,0x81,0x22,0xe,0x2b,0xea,0x5a,0x76,0x28,0xf4,
-  0x6d,0x37,0x95,0x7e,0xf8,0x6e,0xca,0x6e,0x2a,0xdd,0x18,0x4f,0x26,0xbf,0xe3,0xd4,
-  0x34,0x84,0x24,0xd9,0x9f,0xad,0x5b,0xa4,0x30,0x3b,0x31,0x1a,0x68,0xe5,0xdd,0x92,
-  0xc5,0x5b,0x0,0xe4,0xec,0x99,0xa3,0xd7,0xb3,0x33,0x9e,0xf0,0x8a,0xc6,0xe8,0xd2,
-  0xb3,0x6b,0x40,0x30,0xd1,0x24,0x25,0xaa,0x2a,0xb7,0x32,0xce,0x7f,0x74,0x37,0x80,
-  0x50,0x24,0xfa,0x83,0xc6,0x75,0xeb,0x9f,0x12,0xf1,0x7a,0x46,0xec,0xa6,0xfb,0x30,
-  0x2,0x33,0x79,0xe9,0xfc,0xac,0xc8,0xf6,0x9d,0x5c,0xb8,0xff,0x96,0x12,0xf8,0xe3,
-  0x47,0x86,0xb,0x2b,0xb6,0x74,0x26,0x72,0xd9,0xaf,0x50,0xb4,0x96,0x97,0xa,0x45,
-  0x50,0x2c,0x84,0x78,0xe3,0x1a,0x47,0x29,0xfd,0xa,0x6d,0x7c,0xb5,0x4e,0x49,0xf9,
-  0x1b,0x0,0xbd,0xb9,0xd3,0x7b,0xd4,0x7c,0xd4,0x1c,0xc0,0xfa,0x70,0x2c,0xf6,0xf2,
-  0xca,0xd6,0xb6,0xef,0x45,0x5a,0xb7,0x45,0x94,0x15,0x59,0x10,0xa5,0x1,0x4d,0x5f,
-  0xe,0xb2,0x63,0x97,0xf,0x7,0x99,0x13,0x57,0x97,0x4,0x0,0x20,0xbc,0xdc,0xc4,
-  0xdb,0xd7,0xb3,0x89,0xf6,0x8a,0x68,0x65,0xb5,0x4f,0x37,0xff,0x36,0x91,0x6a,0xaa,
-  0x5c,0xe3,0x58,0xf6,0xc8,0xb9,0xef,0xe6,0xb2,0xd9,0x2d,0x5e,0xa1,0x70,0xdc,0x4d,
-  0xa5,0x2f,0x1,0xd0,0x20,0x6a,0xaa,0xa8,0xa9,0x69,0xaf,0x7d,0xb8,0x65,0x6d,0xbc,
-  0x6d,0xa7,0xa3,0x62,0x75,0xb7,0xc,0x3a,0x9,0x2a,0xe0,0xda,0xc5,0xc1,0xf1,0xe9,
-  0xcb,0xfd,0xfb,0x1,0x88,0x3b,0x1,0xc0,0x9f,0x3a,0xb9,0x77,0xc6,0x76,0x9f,0x72,
-  0xa2,0xf1,0x17,0xec,0xea,0x6,0xae,0xc8,0x29,0xb5,0x59,0xe2,0xd0,0xd1,0x6a,0x72,
-  0xd7,0xed,0x8,0x25,0x8a,0xd9,0x36,0xe9,0xcd,0x3d,0x66,0x44,0xa0,0xb9,0x1d,0x42,
-  0xb8,0x22,0xc9,0xc2,0x55,0x75,0xa4,0x2a,0x1a,0x21,0x9c,0x4,0x88,0xf1,0xcf,0xda,
-  0x57,0x4,0x45,0xa3,0xc6,0xcf,0x88,0x81,0x8e,0xff,0xbe,0xeb,0x8d,0x1f,0x3f,0xb0,
-  0x58,0xef,0x36,0x0,0x39,0x33,0x90,0xf1,0xed,0xc4,0x9f,0xb2,0xd1,0xc4,0xd3,0x49,
-  0xcb,0x5e,0xcd,0x6b,0x63,0xac,0xd4,0xf,0x4a,0x9f,0xe6,0x61,0x50,0x65,0x13,0x2c,
-  0xdb,0x26,0x4e,0xe0,0xcc,0xe,0x1,0xe1,0x18,0x2,0xcb,0x1,0xf1,0x10,0xd8,0xc2,
-  0xce,0x9,0x5,0x7b,0xea,0x82,0x3c,0xdb,0x79,0xa4,0xaf,0x38,0xd6,0xf9,0x57,0x99,
-  0x1f,0x9a,0x5a,0xac,0x57,0x6e,0x22,0xd2,0xaa,0x30,0x92,0x51,0x14,0x1d,0x15,0xda,
-  0x69,0xb,0x41,0xd6,0x84,0x22,0x31,0xc0,0x8e,0x12,0x31,0xe,0xe2,0x16,0x88,0x73,
-  0x10,0xb3,0x1,0x2b,0x4,0x58,0xe,0xc0,0xac,0x9b,0xeb,0xdc,0x2,0x11,0x83,0xa3,
-  0x72,0xc6,0x9a,0x18,0x90,0x67,0xe,0xbf,0xdf,0x35,0xd6,0xb7,0xef,0x57,0x41,0xa6,
-  0xeb,0x28,0x80,0xdb,0x6,0x93,0xa5,0x46,0x32,0xa9,0x8b,0xe3,0x19,0xad,0xd9,0x25,
-  0x5,0x77,0x23,0x89,0x62,0x95,0x13,0xb6,0x19,0x77,0xe2,0x20,0x6e,0x83,0x18,0x7,
-  0x9b,0x17,0x64,0xcc,0x2,0x31,0xb,0x8c,0x73,0x10,0xb3,0x60,0x31,0x83,0x88,0x97,
-  0x81,0x37,0xd4,0x13,0xc,0x9d,0xe8,0xe8,0x19,0xef,0x7f,0x6f,0xb7,0x98,0xec,0xee,
-  0x84,0x91,0x33,0xe5,0x84,0x96,0x1e,0x4a,0xb5,0x98,0x53,0xf9,0xe1,0xab,0xd2,0x9b,
-  0x39,0xe1,0x8b,0x70,0xd1,0xcf,0xe7,0xeb,0x4d,0x6e,0x32,0x1a,0x62,0x92,0x88,0x8,
-  0x8c,0x40,0x9c,0xc,0x38,0x29,0x30,0x15,0x80,0x8b,0x39,0xc3,0x67,0xaf,0xe8,0xe0,
-  0x52,0x8f,0x3f,0xd6,0x77,0xec,0xc2,0xf9,0xa3,0xff,0xfe,0xf3,0xcc,0xf9,0x77,0x7f,
-  0x27,0xb2,0x7d,0xdd,0xf3,0xad,0xbb,0xac,0xdd,0x75,0x2c,0x7,0x50,0x1,0xe2,0xf5,
-  0x4e,0xfd,0xae,0x6d,0x76,0xa2,0xa9,0x3d,0x1c,0xab,0xf9,0x5a,0xc8,0x89,0xac,0x74,
-  0xe2,0x2e,0xb7,0x23,0x31,0xe2,0x96,0x5,0x29,0x85,0x16,0x85,0x39,0x3f,0xf0,0xa,
-  0x97,0xa,0xd9,0xab,0xff,0x29,0x4e,0x9e,0xed,0xf1,0xc6,0x8f,0xf4,0xc2,0xe8,0x31,
-  0x0,0xb3,0x77,0x72,0xbe,0x1c,0x80,0x1b,0x56,0xd,0xa0,0xa,0xa0,0xa8,0x95,0x78,
-  0xb4,0xc6,0x4a,0x34,0xaf,0x22,0x3b,0x5e,0xd,0x18,0x63,0x44,0x3e,0x23,0x67,0x3f,
-  0x1d,0x95,0xb9,0xb,0x53,0x80,0x29,0x0,0xc8,0x2,0x58,0x32,0xea,0xfb,0x5,0x0,
-  0x4a,0x25,0x73,0x0,0x44,0x0,0x84,0x0,0xdc,0x78,0x6b,0x5,0x4a,0x17,0xac,0x88,
-  0x52,0x57,0x54,0xcb,0x75,0xf8,0x7f,0xd4,0xec,0x69,0x2,0x3f,0xb2,0xd3,0x69,0x0,
-  0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/play.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/play.png
   0x0,0x0,0x4,0x31,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -783,8 +783,8 @@
   0x96,0x1b,0xaa,0x3c,0xb0,0xd,0x98,0x7,0xfe,0x5a,0xe7,0x6c,0x6,0x68,0x3,0x5a,
   0x81,0x65,0x60,0x1a,0x77,0xf9,0x37,0xea,0x7f,0x5e,0x7f,0x3,0x6e,0xb2,0xc3,0xf0,
   0x1c,0xaa,0x77,0x3f,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-
-    // /usr/local/google/home/chudy/Ico/pause.png
+  
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/pause.png
   0x0,0x0,0x4,0x9d,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -861,7 +861,7 @@
   0xf7,0x9e,0x3c,0x96,0x3f,0xb,0x80,0x0,0xfa,0x94,0xe7,0xbe,0x54,0x95,0x3e,0x23,
   0x5f,0x79,0x72,0xf3,0xe7,0xb,0xe0,0x3f,0x84,0x11,0xd1,0x4,0x27,0x48,0x17,0xe1,
   0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-    // /usr/local/google/home/chudy/Ico/rewind.png
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/rewind.png
   0x0,0x0,0x4,0x51,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -933,8 +933,8 @@
   0xa0,0x17,0xb8,0xc5,0x2e,0xee,0x84,0xc9,0x6d,0x62,0xf,0xb6,0x24,0x7a,0xb,0xf0,
   0xd8,0x1c,0x6c,0x6,0x3,0x76,0x71,0x2d,0xbf,0x6f,0xff,0x1,0x15,0x13,0xb7,0x7f,
   0x67,0x24,0x89,0x36,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-
-    // /usr/local/google/home/chudy/Ico/previous.png
+  
+    // C:/rphillips/src/skia.0/trunk/debugger/QT/Icons/previous.png
   0x0,0x0,0x3,0xaf,
   0x89,
   0x50,0x4e,0x47,0xd,0xa,0x1a,0xa,0x0,0x0,0x0,0xd,0x49,0x48,0x44,0x52,0x0,
@@ -996,26 +996,11 @@
   0x2a,0x15,0xd6,0xc6,0x2f,0x71,0x6,0x9b,0x95,0x25,0x6b,0x29,0x37,0x99,0x4,0x36,
   0x60,0xe1,0x6f,0x2d,0x17,0x60,0x55,0xab,0xfa,0x7,0x42,0xae,0x87,0xb8,0x50,0x72,
   0xc9,0x52,0x0,0x0,0x0,0x0,0x49,0x45,0x4e,0x44,0xae,0x42,0x60,0x82,
-
+  
 };
 
 static const unsigned char qt_resource_name[] = {
-  // images
-  0x0,0x6,
-  0x7,0x3,0x7d,0xc3,
-  0x0,0x69,
-  0x0,0x6d,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x73,
-    // Ico
-  0x0,0x3,
-  0x0,0x0,0x4f,0x9f,
-  0x0,0x49,
-  0x0,0x63,0x0,0x6f,
-    // Icons
-  0x0,0x5,
-  0x0,0x4f,0xa6,0x53,
-  0x0,0x49,
-  0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x73,
-    // skia.png
+  // skia.png
   0x0,0x8,
   0x1,0xf4,0x58,0x7,
   0x0,0x73,
@@ -1025,6 +1010,16 @@
   0xc,0xad,0xf,0x7,
   0x0,0x64,
   0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x74,0x0,0x65,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+    // next.png
+  0x0,0x8,
+  0xc,0xf7,0x59,0xc7,
+  0x0,0x6e,
+  0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+    // inspector.png
+  0x0,0xd,
+  0xb,0xd1,0x81,0xc7,
+  0x0,0x69,
+  0x0,0x6e,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
     // breakpoint_16x16.png
   0x0,0x14,
   0x9,0x1d,0xb7,0x27,
@@ -1036,26 +1031,16 @@
   0x8,0x4e,0x85,0x7,
   0x0,0x62,
   0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x6b,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
-    // breakpoint.png
-  0x0,0xe,
-  0x1,0x27,0x3,0xa7,
-  0x0,0x62,
-  0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
-    // next.png
-  0x0,0x8,
-  0xc,0xf7,0x59,0xc7,
-  0x0,0x6e,
-  0x0,0x65,0x0,0x78,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
-    // inspector.png
-  0x0,0xd,
-  0xb,0xd1,0x81,0xc7,
-  0x0,0x69,
-  0x0,0x6e,0x0,0x73,0x0,0x70,0x0,0x65,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
     // reload.png
   0x0,0xa,
   0x5,0x78,0x4f,0x27,
   0x0,0x72,
   0x0,0x65,0x0,0x6c,0x0,0x6f,0x0,0x61,0x0,0x64,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
+    // breakpoint.png
+  0x0,0xe,
+  0x1,0x27,0x3,0xa7,
+  0x0,0x62,
+  0x0,0x72,0x0,0x65,0x0,0x61,0x0,0x6b,0x0,0x70,0x0,0x6f,0x0,0x69,0x0,0x6e,0x0,0x74,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
     // play.png
   0x0,0x8,
   0x2,0x8c,0x59,0xa7,
@@ -1076,42 +1061,36 @@
   0x8,0x37,0xcd,0x47,
   0x0,0x70,
   0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6f,0x0,0x75,0x0,0x73,0x0,0x2e,0x0,0x70,0x0,0x6e,0x0,0x67,
-
+  
 };
 
 static const unsigned char qt_resource_struct[] = {
   // :
-  0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
-  // :/images
-  0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,
-  // :/images/Ico
-  0x0,0x0,0x0,0x12,0x0,0x2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x9,
-  // :/images/Icons
-  0x0,0x0,0x0,0x1e,0x0,0x2,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,
-  // :/images/Icons/breakpoint.png
-  0x0,0x0,0x0,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe,0x9b,
-  // :/images/Icons/skia.png
-  0x0,0x0,0x0,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
-  // :/images/Icons/blank.png
-  0x0,0x0,0x0,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe,0x5,
-  // :/images/Icons/breakpoint_16x16.png
-  0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9,0xad,
-  // :/images/Icons/delete.png
-  0x0,0x0,0x0,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0x22,
-  // :/images/Ico/rewind.png
-  0x0,0x0,0x1,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x33,0x26,
-  // :/images/Ico/play.png
-  0x0,0x0,0x1,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2a,0x50,
-  // :/images/Ico/reload.png
-  0x0,0x0,0x0,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x22,0xc0,
-  // :/images/Ico/previous.png
-  0x0,0x0,0x1,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x37,0x7b,
-  // :/images/Ico/inspector.png
-  0x0,0x0,0x0,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1b,0x14,
-  // :/images/Ico/pause.png
-  0x0,0x0,0x1,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2e,0x85,
-  // :/images/Ico/next.png
-  0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x17,0x66,
+  0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x1,
+  // :/rewind.png
+  0x0,0x0,0x1,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x33,0x26,
+  // :/breakpoint.png
+  0x0,0x0,0x0,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x21,0x85,
+  // :/skia.png
+  0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,
+  // :/play.png
+  0x0,0x0,0x0,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2a,0x50,
+  // :/reload.png
+  0x0,0x0,0x0,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x19,0xf5,
+  // :/previous.png
+  0x0,0x0,0x1,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x37,0x7b,
+  // :/blank.png
+  0x0,0x0,0x0,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x19,0x5f,
+  // :/breakpoint_16x16.png
+  0x0,0x0,0x0,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x15,0x7,
+  // :/inspector.png
+  0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd,0x5b,
+  // :/pause.png
+  0x0,0x0,0x0,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2e,0x85,
+  // :/delete.png
+  0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0x22,
+  // :/next.png
+  0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9,0xad,
 
 };
 
@@ -1126,21 +1105,21 @@
 QT_END_NAMESPACE
 
 
-int QT_MANGLE_NAMESPACE(qInitResources_SkIcons)()
+int QT_MANGLE_NAMESPACE(qInitResources)()
 {
     QT_PREPEND_NAMESPACE(qRegisterResourceData)
         (0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
     return 1;
 }
 
-Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_SkIcons))
+Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources))
 
-int QT_MANGLE_NAMESPACE(qCleanupResources_SkIcons)()
+int QT_MANGLE_NAMESPACE(qCleanupResources)()
 {
     QT_PREPEND_NAMESPACE(qUnregisterResourceData)
        (0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
     return 1;
 }
 
-Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_SkIcons))
+Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources))