diff options
| author | Daniel Jones <admin@danieljon.es> | 2020-06-23 21:52:36 +0930 | 
|---|---|---|
| committer | Daniel Jones <admin@danieljon.es> | 2020-06-23 21:52:36 +0930 | 
| commit | f6db0a081d2d359ba18d97fd5588b11cedbf6911 (patch) | |
| tree | fd2886035d44b724fc15737bbbd54d98899ae840 | |
| parent | 10da4b7eaa8bc739bd7e0846f2cec7b5a466cec3 (diff) | |
| download | foxlogicgates-f6db0a081d2d359ba18d97fd5588b11cedbf6911.tar.gz foxlogicgates-f6db0a081d2d359ba18d97fd5588b11cedbf6911.zip | |
finished implementing all logic gates
| -rw-r--r-- | Gate.cpp | 6 | ||||
| -rw-r--r-- | MainWindow.cpp | 117 | ||||
| -rw-r--r-- | MainWindow.h | 19 | ||||
| -rw-r--r-- | icons.h | 1014 | ||||
| -rw-r--r-- | icons/NAND.xcf | bin | 0 -> 3484 bytes | |||
| -rw-r--r-- | icons/NAND_icon_data.gif | bin | 0 -> 239 bytes | |||
| -rw-r--r-- | icons/NOR.xcf | bin | 0 -> 3628 bytes | |||
| -rw-r--r-- | icons/NOR_icon_data.gif | bin | 0 -> 235 bytes | |||
| -rw-r--r-- | icons/XNOR.xcf | bin | 0 -> 4007 bytes | |||
| -rw-r--r-- | icons/XNOR_icon_data.gif | bin | 0 -> 256 bytes | |||
| -rw-r--r-- | icons/XOR.xcf | bin | 0 -> 3576 bytes | |||
| -rw-r--r-- | icons/XOR_icon_data.gif | bin | 0 -> 255 bytes | 
12 files changed, 1138 insertions, 18 deletions
| @@ -85,7 +85,7 @@ void Gate::update_state()  		case NAND:  		{  			if (!input_gate1 || !input_gate2) {this->output_state = false; return; } -			output_state = ~(input_gate1->get_output_state() & input_gate2->get_output_state()); +			output_state = !(input_gate1->get_output_state() & input_gate2->get_output_state());  			break;  		} @@ -93,7 +93,7 @@ void Gate::update_state()  		case NOR:  		{  			if (!input_gate1 || !input_gate2) {this->output_state = false; return; } -			output_state = ~(input_gate1->get_output_state() | input_gate2->get_output_state()); +			output_state = !(input_gate1->get_output_state() | input_gate2->get_output_state());  			break;  		} @@ -109,7 +109,7 @@ void Gate::update_state()  		case XNOR:  		{  			if (!input_gate1 || !input_gate2) {this->output_state = false; return; } -			output_state = ~(input_gate1->get_output_state() ^ input_gate2->get_output_state()); +			output_state = !(input_gate1->get_output_state() ^ input_gate2->get_output_state());  			break;  		} diff --git a/MainWindow.cpp b/MainWindow.cpp index ada7ac8..ff201db 100644 --- a/MainWindow.cpp +++ b/MainWindow.cpp @@ -33,7 +33,11 @@ FXDEFMAP(MainWindow) MainWindow_Map[]=  	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_INPUT, MainWindow::input_button_press),  	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_OUTPUT, MainWindow::output_button_press),  	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_AND, MainWindow::and_button_press), +	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_NAND, MainWindow::nand_button_press),  	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_OR, MainWindow::or_button_press), +	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_NOR, MainWindow::nor_button_press), +	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_XOR, MainWindow::xor_button_press), +	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_XNOR, MainWindow::xnor_button_press),  	FXMAPFUNC(SEL_COMMAND, MainWindow::ID_BUTTON_NOT, MainWindow::not_button_press),  };  FXIMPLEMENT(MainWindow, FXMainWindow, MainWindow_Map, ARRAYNUMBER(MainWindow_Map)) @@ -56,7 +60,11 @@ MainWindow::create()  	INPUT_icon->create();  	OUTPUT_icon->create();  	AND_icon->create(); +	NAND_icon->create();  	OR_icon->create(); +	NOR_icon->create(); +	XOR_icon->create(); +	XNOR_icon->create();  	NOT_icon->create();  	canvas_image->create();  	show(PLACEMENT_SCREEN); @@ -66,7 +74,7 @@ void  MainWindow::create_ui()  {  	contents=new FXHorizontalFrame(this, LAYOUT_SIDE_TOP|LAYOUT_FILL_X|LAYOUT_FILL_Y); -	toolsFrame = new FXVerticalFrame(contents, FRAME_SUNKEN|LAYOUT_FILL_Y|LAYOUT_TOP|LAYOUT_LEFT, 0, 0, 0, 0, 10, 10, 10, 10); +	toolsFrame = new FXVerticalFrame(contents, FRAME_SUNKEN|LAYOUT_FILL_Y|LAYOUT_TOP, 0, 0, 0, 0, 10, 10, 10, 10);  	canvasFrame=new FXVerticalFrame(contents, FRAME_SUNKEN|LAYOUT_FILL_X|LAYOUT_FILL_Y|LAYOUT_TOP|LAYOUT_LEFT, 0, 0, 0, 0, 10, 10, 10, 10); @@ -86,14 +94,22 @@ MainWindow::create_ui()  	INPUT_icon = new FXGIFIcon(app, INPUT_icon_data, IMAGE_KEEP);  	OUTPUT_icon = new FXGIFIcon(app, OUTPUT_icon_data, IMAGE_KEEP);  	AND_icon = new FXGIFIcon(app, AND_icon_data, IMAGE_KEEP); +	NAND_icon = new FXGIFIcon(app, NAND_icon_data, IMAGE_KEEP);  	OR_icon = new FXGIFIcon(app, OR_icon_data, IMAGE_KEEP); +	NOR_icon = new FXGIFIcon(app, NOR_icon_data, IMAGE_KEEP); +	XOR_icon = new FXGIFIcon(app, XOR_icon_data, IMAGE_KEEP); +	XNOR_icon = new FXGIFIcon(app, XNOR_icon_data, IMAGE_KEEP);  	NOT_icon = new FXGIFIcon(app, NOT_icon_data, IMAGE_KEEP);  	/* tools */  	new FXButton(toolsFrame, "", INPUT_icon, this, MainWindow::ID_BUTTON_INPUT, BUTTON_NORMAL);  	new FXButton(toolsFrame, "", OUTPUT_icon, this, MainWindow::ID_BUTTON_OUTPUT, BUTTON_NORMAL);  	new FXButton(toolsFrame, "", AND_icon, this, MainWindow::ID_BUTTON_AND, BUTTON_NORMAL); +	new FXButton(toolsFrame, "", NAND_icon, this, MainWindow::ID_BUTTON_NAND, BUTTON_NORMAL);  	new FXButton(toolsFrame, "", OR_icon, this, MainWindow::ID_BUTTON_OR, BUTTON_NORMAL); +	new FXButton(toolsFrame, "", NOR_icon, this, MainWindow::ID_BUTTON_NOR, BUTTON_NORMAL); +	new FXButton(toolsFrame, "", XOR_icon, this, MainWindow::ID_BUTTON_XOR, BUTTON_NORMAL); +	new FXButton(toolsFrame, "", XNOR_icon, this, MainWindow::ID_BUTTON_XNOR, BUTTON_NORMAL);  	new FXButton(toolsFrame, "", NOT_icon, this, MainWindow::ID_BUTTON_NOT, BUTTON_NORMAL);  } @@ -106,13 +122,19 @@ MainWindow::draw()  	dc_image.fillRectangle(canvas->getX(), canvas->getY(), canvas->getWidth(), canvas->getHeight());  	dc_image.setForeground(FXRGB(0,0,0)); -	/* draw gates */  	Gate *gate1; + +	/* update every gate */ +	for(auto g1 = gates.begin(); g1 != gates.end(); ++g1) +	{ +		gate1 = (*g1).get(); +		gate1->update_state(); +	} + +	/* draw gates */  	for(auto g1 = gates.begin(); g1 != gates.end(); ++g1)  	{  		gate1 = (*g1).get(); -		if (gate1) -			gate1->update_state();  		switch(gate1->get_gate_type())  		{  			case Gate::INPUT: @@ -148,12 +170,43 @@ MainWindow::draw()  				dc_image.drawText(gate1->get_x(), gate1->get_y()+gate1->get_height()+20, "AND");  				break;  			} + +			case Gate::NAND: +			{ +				dc_image.drawIcon(NAND_icon, gate1->get_x(), gate1->get_y()); +				dc_image.drawText(gate1->get_x(), gate1->get_y()+gate1->get_height()+20, "NAND"); +				break; +			} +  			case Gate::OR:  			{  				dc_image.drawIcon(OR_icon, gate1->get_x(), gate1->get_y());  				dc_image.drawText(gate1->get_x(), gate1->get_y()+gate1->get_height()+20, "OR");  				break;  			} + +			case Gate::NOR: +			{ +				dc_image.drawIcon(NOR_icon, gate1->get_x(), gate1->get_y()); +				dc_image.drawText(gate1->get_x(), gate1->get_y()+gate1->get_height()+20, "NOR"); +				break; +			} + +			case Gate::XOR: +			{ +				dc_image.drawIcon(XOR_icon, gate1->get_x(), gate1->get_y()); +				dc_image.drawText(gate1->get_x(), gate1->get_y()+gate1->get_height()+20, "XOR"); +				break; +			} + +			case Gate::XNOR: +			{ +				dc_image.drawIcon(XNOR_icon, gate1->get_x(), gate1->get_y()); +				dc_image.drawText(gate1->get_x(), gate1->get_y()+gate1->get_height()+20, "XNOR"); +				break; +			} + +  			case Gate::NOT:  			{  				dc_image.drawIcon(NOT_icon, gate1->get_x(), gate1->get_y()); @@ -176,7 +229,10 @@ MainWindow::draw()  	/* draw dragging link */  	if (dragging_link && selected_gate)  	{ -		dc_image.drawLine(selected_gate->get_x()+selected_gate->get_width()-5, selected_gate->get_y()+selected_gate->get_height()/2-2, mouse_x, mouse_y); +		FXint mousex, mousey; +		FXuint mbuttons; +		canvas->getCursorPosition(mousex, mousey, mbuttons); +		dc_image.drawLine(selected_gate->get_x()+selected_gate->get_width()-5, selected_gate->get_y()+selected_gate->get_height()/2-2, mousex, mousey);  	}  	/* draw links */ @@ -190,9 +246,9 @@ MainWindow::draw()  			continue;  		if (gate1->get_input_gate1() != nullptr)  		{ -			if (gate1->get_gate_type() == Gate::NOT|| gate1->get_gate_type() == Gate::NOR || gate1->get_gate_type() == Gate::OUTPUT) +			if (gate1->get_gate_type() == Gate::NOT || gate1->get_gate_type() == Gate::OUTPUT)  			{ -				/* NOT,NOR,OUTPUT need a special case */ +				/* NOT,OUTPUT need a special case */  				dc_image.drawLine(in_gate1->get_x()+in_gate1->get_width()-5, in_gate1->get_y()+(in_gate1->get_height()/2),  						gate1->get_x()+10, gate1->get_y()+(gate1->get_height()/2)); @@ -321,6 +377,8 @@ MainWindow::on_left_mouse_up(FXObject*, FXSelector, void *ptr)  	{  		Gate *gate;  		gate = find_gate_at(ev->last_x, ev->last_y); +		if (gate == selected_gate) /* gates cannot connect to themselves, probably */ +			return 1;  		if (gate)  		{  			int input = -1; @@ -328,7 +386,7 @@ MainWindow::on_left_mouse_up(FXObject*, FXSelector, void *ptr)  				input = 1;  			else  				input = 2; -			if (gate->get_gate_type() != Gate::NOT && gate->get_gate_type() != Gate::NOR && gate->get_gate_type() != Gate::OUTPUT) +			if (gate->get_gate_type() != Gate::NOT && gate->get_gate_type() && gate->get_gate_type() != Gate::OUTPUT)  			{  				printf("connecting gate %d with gate %d at input #%d\n", selected_gate->get_id(), gate->get_id(), input);  				if (input == 1) @@ -368,9 +426,9 @@ MainWindow::on_right_mouse_down(FXObject*, FXSelector, void *ptr)  		{  			/* toggle state */  			gate->set_state(!gate->get_output_state()); -			draw();  		}  	} +	draw();  	return 1;  } @@ -413,15 +471,14 @@ MainWindow::on_key_release(FXObject *sender, FXSelector sel, void *ptr)  long  MainWindow::on_mouse_move(FXObject *sender, FXSelector sel, void *ptr)  { -	FXEvent* event = (FXEvent*)ptr; -	mouse_x = event->last_x; -	mouse_y = event->last_y;  	if (lmouse_down && !dragging_link && selected_gate)  	{ +		FXEvent* event = (FXEvent*)ptr;  		selected_gate->set_x(event->last_x-selected_gate->get_width()/2);  		selected_gate->set_y(event->last_y-selected_gate->get_height()/2);  	} -	draw(); +	if (lmouse_down) +		draw();  	return 1;  } @@ -450,6 +507,14 @@ MainWindow::and_button_press(FXObject *sender, FXSelector sel, void *ptr)  }  long +MainWindow::nand_button_press(FXObject *sender, FXSelector sel, void *ptr) +{ +	selected_gate = nullptr; +	selected_gate_type = Gate::NAND; +	return 1; +} + +long  MainWindow::or_button_press(FXObject *sender, FXSelector sel, void *ptr)  {  	selected_gate = nullptr; @@ -458,6 +523,32 @@ MainWindow::or_button_press(FXObject *sender, FXSelector sel, void *ptr)  }  long +MainWindow::xor_button_press(FXObject *sender, FXSelector sel, void *ptr) +{ +	selected_gate = nullptr; +	selected_gate_type = Gate::XOR; +	return 1; +} + +long +MainWindow::nor_button_press(FXObject *sender, FXSelector sel, void *ptr) +{ +	selected_gate = nullptr; +	selected_gate_type = Gate::NOR; +	return 1; +} + +long +MainWindow::xnor_button_press(FXObject *sender, FXSelector sel, void *ptr) +{ +	puts("xnor"); +	selected_gate = nullptr; +	selected_gate_type = Gate::XNOR; +	return 1; +} + + +long  MainWindow::not_button_press(FXObject *sender, FXSelector sel, void *ptr)  {  	selected_gate = nullptr; diff --git a/MainWindow.h b/MainWindow.h index e99f7ce..4a2362d 100644 --- a/MainWindow.h +++ b/MainWindow.h @@ -44,7 +44,11 @@ class MainWindow : public FXMainWindow  			ID_BUTTON_INPUT,  			ID_BUTTON_OUTPUT,  			ID_BUTTON_AND, +			ID_BUTTON_NAND,  			ID_BUTTON_OR, +			ID_BUTTON_NOR, +			ID_BUTTON_XOR, +			ID_BUTTON_XNOR,  			ID_BUTTON_NOT,  		}; @@ -60,7 +64,11 @@ class MainWindow : public FXMainWindow  		long input_button_press(FXObject*,FXSelector,void* ptr);  		long output_button_press(FXObject*,FXSelector,void* ptr);  		long and_button_press(FXObject*,FXSelector,void* ptr); +		long nand_button_press(FXObject*,FXSelector,void* ptr);  		long or_button_press(FXObject*,FXSelector,void* ptr); +		long nor_button_press(FXObject*,FXSelector,void* ptr); +		long xor_button_press(FXObject*,FXSelector,void* ptr); +		long xnor_button_press(FXObject*,FXSelector,void* ptr);  		long not_button_press(FXObject*,FXSelector,void* ptr);  		/* selected gate */ @@ -82,6 +90,7 @@ class MainWindow : public FXMainWindow  		FXVerticalFrame   *canvasFrame;  		FXVerticalFrame   *toolsFrame;  		FXScrollWindow 	*scroll_area; +		FXScrollWindow 	*toolbox_scroll_area;  		FXCanvas *canvas;  		FXBMPImage *canvas_image;  		FXApp *app; @@ -90,14 +99,22 @@ class MainWindow : public FXMainWindow  		FXGIFIcon *INPUT_icon;  		FXGIFIcon *OUTPUT_icon;  		FXGIFIcon *AND_icon; +		FXGIFIcon *NAND_icon;  		FXGIFIcon *OR_icon; +		FXGIFIcon *NOR_icon; +		FXGIFIcon *XOR_icon; +		FXGIFIcon *XNOR_icon;  		FXGIFIcon *NOT_icon;  		/* buttons */  		FXButton *INPUT_button;  		FXButton *OUTPUT_button;  		FXButton *AND_button; +		FXButton *NAND_button;  		FXButton *OR_button; +		FXButton *NOR_button; +		FXButton *XOR_button; +		FXButton *XNOR_button;  		FXButton *NOT_button;  		Gate::GATE_TYPE selected_gate_type = Gate::NONE; // the type of gate we will place @@ -106,8 +123,6 @@ class MainWindow : public FXMainWindow  		bool lmouse_down = false;  		bool rmouse_down = false;  		bool dragging_link = false; -		int mouse_x; -		int mouse_y;  		/* keyboard */  		bool lshift_down = false; @@ -498,6 +498,497 @@ const unsigned char INPUT[]={    0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00    }; +/* created by reswrap from file icons/NAND_icon_data.gif */ +const unsigned char NAND_icon_data[]={ +  0x47,0x49,0x46,0x38,0x39,0x61,0x46,0x00,0x32,0x00,0x80,0x01,0x00,0x00,0x00,0x00, +  0xff,0xff,0xff,0x21,0xfe,0x26,0x4d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x66, +  0x6f,0x78,0x6c,0x6f,0x67,0x69,0x63,0x67,0x61,0x74,0x65,0x73,0x20,0x62,0x79,0x20, +  0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x4a,0x6f,0x6e,0x65,0x73,0x00,0x21,0xf9,0x04, +  0x01,0x0a,0x00,0x01,0x00,0x2c,0x00,0x00,0x00,0x00,0x46,0x00,0x32,0x00,0x00,0x02, +  0x9c,0x8c,0x8f,0xa9,0xcb,0xed,0x0f,0xa3,0x9c,0xb4,0xda,0x8b,0xb3,0xde,0xbc,0xfb, +  0x0f,0x76,0xc0,0x18,0x96,0xcb,0x88,0x9a,0xaa,0x81,0x92,0x48,0x0b,0xa7,0xab,0x04, +  0x27,0xf1,0xdd,0xce,0x8e,0xfc,0xe2,0x3e,0xaf,0x7b,0xfc,0x86,0xae,0x60,0x83,0x88, +  0x34,0x32,0x90,0x4c,0xa5,0x8d,0xd9,0x74,0x06,0xa0,0x50,0x29,0xb5,0xaa,0xbc,0x62, +  0x83,0xda,0xed,0xac,0x1b,0xd5,0x81,0xc3,0xab,0xf1,0xf5,0x54,0xbc,0x98,0xcf,0x3d, +  0x60,0x65,0x4d,0x7d,0xba,0x29,0x70,0xef,0x34,0x87,0xa9,0x27,0x15,0x73,0xba,0x1e, +  0x27,0xf6,0x77,0x13,0x28,0x88,0xf7,0x55,0x68,0x58,0x86,0x98,0xa6,0xb8,0x68,0xb4, +  0x08,0x90,0x85,0xe8,0x34,0x49,0x29,0x28,0x75,0x57,0x87,0xc9,0x02,0xb7,0x79,0xb0, +  0xe6,0xd9,0xa6,0x65,0xc5,0x98,0x49,0x66,0xe9,0x46,0x14,0x2a,0x1a,0xb9,0xaa,0x96, +  0xe8,0xea,0xd7,0x1a,0x4b,0x5b,0x6b,0x7b,0x8b,0x9b,0xab,0x5b,0x00,0x00,0x3b +  }; + +/* created by reswrap from file icons/NAND.xcf */ +const unsigned char NAND[]={ +  0x67,0x69,0x6d,0x70,0x20,0x78,0x63,0x66,0x20,0x76,0x30,0x31,0x31,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x96,0x00,0x00, +  0x00,0x11,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x08,0x43, +  0x96,0x00,0x00,0x43,0x96,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x31,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0x15,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x0d,0x67,0x69,0x6d,0x70,0x2d, +  0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x27, +  0x4d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x66,0x6f,0x78,0x6c,0x6f,0x67,0x69, +  0x63,0x67,0x61,0x74,0x65,0x73,0x20,0x62,0x79,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c, +  0x20,0x4a,0x6f,0x6e,0x65,0x73,0x00,0x00,0x00,0x00,0x10,0x67,0x69,0x6d,0x70,0x2d, +  0x69,0x6d,0x61,0x67,0x65,0x2d,0x67,0x72,0x69,0x64,0x00,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0xac,0x28,0x73,0x74,0x79,0x6c,0x65,0x20,0x73,0x6f,0x6c,0x69,0x64,0x29, +  0x0a,0x28,0x66,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6c,0x6f,0x72, +  0x2d,0x72,0x67,0x62,0x61,0x20,0x30,0x20,0x30,0x20,0x30,0x20,0x31,0x29,0x29,0x0a, +  0x28,0x62,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6c,0x6f,0x72,0x2d, +  0x72,0x67,0x62,0x61,0x20,0x31,0x20,0x31,0x20,0x31,0x20,0x31,0x29,0x29,0x0a,0x28, +  0x78,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x31,0x30,0x29,0x0a,0x28,0x79,0x73, +  0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x31,0x30,0x29,0x0a,0x28,0x73,0x70,0x61,0x63, +  0x69,0x6e,0x67,0x2d,0x75,0x6e,0x69,0x74,0x20,0x69,0x6e,0x63,0x68,0x65,0x73,0x29, +  0x0a,0x28,0x78,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x29,0x0a,0x28,0x79,0x6f, +  0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x29,0x0a,0x28,0x6f,0x66,0x66,0x73,0x65,0x74, +  0x2d,0x75,0x6e,0x69,0x74,0x20,0x69,0x6e,0x63,0x68,0x65,0x73,0x29,0x0a,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xaf,0x00, +  0x00,0x00,0x00,0x00,0x00,0x03,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x66,0x00, +  0x00,0x00,0x00,0x00,0x00,0x06,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xb7,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0a,0x69,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0b,0xd4,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x12,0x50, +  0x61,0x73,0x74,0x65,0x64,0x20,0x4c,0x61,0x79,0x65,0x72,0x20,0x63,0x6f,0x70,0x79, +  0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00, +  0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00, +  0x0a,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00, +  0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, +  0xb9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00, +  0x05,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xd5,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00, +  0x00,0x00,0x00,0x02,0xed,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x18, +  0x00,0x18,0x00,0xfa,0x12,0x88,0xfd,0x88,0x12,0x88,0x02,0xff,0xfe,0x88,0xfd,0x02, +  0xff,0xfe,0xfd,0x88,0x02,0xff,0xfa,0x88,0x12,0x88,0xfd,0x88,0x12,0x00,0x00,0x00, +  0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0d,0x50,0x61,0x73, +  0x74,0x65,0x64,0x20,0x4c,0x61,0x79,0x65,0x72,0x00,0x00,0x00,0x00,0x06,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80, +  0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00, +  0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x06,0x00,0x00, +  0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff, +  0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00, +  0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x04,0x2e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x46,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0xfa,0x12,0x88,0xfd, +  0x88,0x12,0x88,0x02,0xff,0xfe,0x88,0xfd,0x02,0xff,0xfe,0xfd,0x88,0x02,0xff,0xfa, +  0x88,0x12,0x88,0xfd,0x88,0x12,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00, +  0x00,0x01,0x00,0x00,0x00,0x09,0x64,0x6f,0x74,0x20,0x63,0x6f,0x70,0x79,0x00,0x00, +  0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00, +  0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0xff,0xff,0xff,0xfa,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00, +  0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00, +  0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff, +  0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x31,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x67,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x8b,0x00,0x00,0x00,0x00,0x00, +  0x00,0x06,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00, +  0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xab,0x00,0x00,0x00,0x00,0x00, +  0x00,0x05,0xdd,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0x00,0x7f, +  0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x05,0x7c,0x00,0xfc,0x44,0xba,0xfe,0xba, +  0x3b,0x00,0xff,0xba,0x02,0xff,0x3b,0x00,0xff,0xfe,0x02,0xff,0x3b,0x00,0xff,0xba, +  0x02,0xff,0x3b,0x00,0xfc,0x44,0xba,0xfe,0xba,0x7f,0x06,0x00,0x00,0x7f,0x01,0x2c, +  0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7d,0x00,0xff,0x44,0x04,0x00,0xff, +  0xba,0x04,0x00,0xff,0xfe,0x04,0x00,0xff,0xba,0x04,0x00,0xff,0x44,0x7f,0x00,0x95, +  0x00,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x64,0x6f,0x74, +  0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00, +  0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00, +  0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff, +  0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00, +  0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x07,0x35,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xab,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00, +  0x00,0x00,0x00,0x07,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x87,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80, +  0x00,0x7f,0x05,0x7c,0x00,0xfc,0x44,0xba,0xfe,0xba,0x3b,0x00,0xff,0xba,0x02,0xff, +  0x3b,0x00,0xff,0xfe,0x02,0xff,0x3b,0x00,0xff,0xba,0x02,0xff,0x3b,0x00,0xfc,0x44, +  0xba,0xfe,0xba,0x7f,0x06,0x00,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f, +  0x01,0x2c,0x00,0x7d,0x00,0xff,0x44,0x04,0x00,0xff,0xba,0x04,0x00,0xff,0xfe,0x04, +  0x00,0xff,0xba,0x04,0x00,0xff,0x44,0x7f,0x00,0x95,0x00,0x00,0x00,0x00,0x23,0x00, +  0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00, +  0x00,0x00,0x01,0x00,0x00,0x00,0x0b,0x42,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, +  0x64,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00, +  0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0xff,0xff, +  0xff,0xf2,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00, +  0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x08,0xba,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00, +  0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xde,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0a,0x5d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfe,0x00,0x00, +  0x00,0x00,0x00,0x00,0x09,0xe6,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c, +  0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x01,0xa2,0x00,0xf1,0xcd, +  0xe1,0xef,0xf9,0xfe,0xfe,0xf9,0xef,0xe1,0xcd,0xb5,0x98,0x76,0x4f,0x23,0x30,0x00, +  0x0e,0xff,0xfc,0xe7,0xb0,0x75,0x34,0x2c,0x00,0x12,0xff,0xfd,0xd8,0x8c,0x3c,0x29, +  0x00,0x15,0xff,0xfd,0xc3,0x66,0x06,0x26,0x00,0x17,0xff,0xfd,0xd5,0x6e,0x03,0x24, +  0x00,0x19,0xff,0xfe,0xc3,0x51,0x23,0x00,0x1b,0xff,0xfe,0x8b,0x12,0x21,0x00,0x1c, +  0xff,0xff,0xaf,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21, +  0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21, +  0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21, +  0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21, +  0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1d,0xff,0x21,0x00,0x1c,0xff,0xff, +  0xaf,0x21,0x00,0x1b,0xff,0xfe,0x8b,0x12,0x21,0x00,0x19,0xff,0xfe,0xc3,0x51,0x23, +  0x00,0x17,0xff,0xfd,0xd5,0x6e,0x03,0x24,0x00,0x15,0xff,0xfd,0xc3,0x66,0x06,0x26, +  0x00,0x12,0xff,0xfd,0xd8,0x8c,0x3c,0x29,0x00,0x0e,0xff,0xfc,0xe7,0xb0,0x75,0x34, +  0x2c,0x00,0xf1,0xcd,0xe1,0xef,0xf9,0xfe,0xfe,0xf9,0xef,0xe1,0xcd,0xb5,0x98,0x76, +  0x4f,0x23,0x7f,0x02,0x8f,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01, +  0x2c,0x00,0x4d,0x00,0xff,0x32,0x04,0x00,0xfe,0xbd,0x3c,0x03,0x00,0xfd,0xff,0xbb, +  0x29,0x02,0x00,0x01,0xff,0xff,0xa4,0x02,0x00,0x02,0xff,0xfd,0x6a,0x00,0x00,0x02, +  0xff,0xfd,0xd6,0x05,0x00,0x03,0xff,0xfe,0x5f,0x00,0x03,0xff,0xfe,0xa9,0x00,0x03, +  0xff,0xfe,0xde,0x00,0x03,0xff,0xfe,0xfa,0x00,0x03,0xff,0xfe,0xfa,0x00,0x03,0xff, +  0xfe,0xde,0x00,0x03,0xff,0xfe,0xa9,0x00,0x03,0xff,0xfe,0x5f,0x00,0x02,0xff,0xfd, +  0xd6,0x05,0x00,0x02,0xff,0xfa,0x6a,0x00,0x00,0xff,0xff,0xa4,0x02,0x00,0xfd,0xff, +  0xbb,0x29,0x02,0x00,0xfe,0xbd,0x3c,0x03,0x00,0xff,0x32,0x6a,0x00,0x00,0x00,0x00, +  0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00, +  0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x62,0x67,0x00,0x00,0x00,0x00,0x06, +  0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04, +  0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22, +  0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b, +  0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25, +  0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04, +  0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff, +  0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x64,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x04, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x88,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xc8, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xa8,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xb8, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0xff,0x7f,0x0c,0x80,0xff, +  0x7f,0x0c,0x80,0xff,0x7f,0x0c,0x80,0xff,0x7f,0x01,0x2c,0xff,0x7f,0x01,0x2c,0xff, +  0x7f,0x01,0x2c,0xff,0x7f,0x01,0x2c,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x0f, +  0x53,0x65,0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x61,0x73,0x6b,0x00,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x7f,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x00,0x00,0x00,0x00, +  0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x03,0x00, +  0x00,0x00,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x0c,0x92,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0c,0xb6,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x90,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0c,0xd6,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x8c,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x00,0x86,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff, +  0x23,0x00,0x1b,0xff,0x23,0x00,0x1b,0xff,0x7f,0x01,0x1e,0x00,0x7f,0x01,0x2c,0x00, +  0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00 +  }; + +/* created by reswrap from file icons/NOR_icon_data.gif */ +const unsigned char NOR_icon_data[]={ +  0x47,0x49,0x46,0x38,0x39,0x61,0x46,0x00,0x32,0x00,0x80,0x01,0x00,0x00,0x00,0x00, +  0xff,0xff,0xff,0x21,0xfe,0x26,0x4d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x66, +  0x6f,0x78,0x6c,0x6f,0x67,0x69,0x63,0x67,0x61,0x74,0x65,0x73,0x20,0x62,0x79,0x20, +  0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x4a,0x6f,0x6e,0x65,0x73,0x00,0x21,0xf9,0x04, +  0x01,0x0a,0x00,0x01,0x00,0x2c,0x00,0x00,0x00,0x00,0x46,0x00,0x32,0x00,0x00,0x02, +  0x98,0x8c,0x8f,0xa9,0xcb,0xed,0x0f,0xa3,0x9c,0xb4,0xda,0x8b,0xb3,0xde,0xbc,0xfb, +  0x0f,0x76,0xc0,0x18,0x96,0xcb,0x88,0x9a,0xaa,0x81,0x92,0x48,0x0b,0xa7,0xab,0x04, +  0x27,0xf1,0xdd,0xce,0x8e,0xfc,0xe2,0x3e,0xaf,0x7b,0xfc,0x86,0xae,0x60,0x83,0x88, +  0x34,0xd2,0x90,0x37,0xe5,0x84,0x59,0x73,0x46,0xa0,0x40,0xe9,0x91,0x0a,0xb0,0x4e, +  0xa9,0x5a,0x08,0xb6,0x2b,0x84,0x82,0x77,0xdc,0x31,0xa3,0x5c,0x0d,0xa4,0x67,0xd8, +  0x28,0x2b,0xe7,0x6c,0x03,0xdd,0x46,0x79,0x51,0x0d,0x57,0x72,0xd3,0x6b,0xb6,0xd8, +  0xac,0xf0,0x05,0x68,0xf3,0x37,0x78,0x20,0x68,0xf8,0xc6,0x94,0x78,0x58,0x96,0x88, +  0x38,0xd8,0xc6,0x28,0x69,0x28,0x07,0x68,0x97,0xa5,0x85,0x99,0xa7,0xb9,0x79,0x69, +  0x27,0xc5,0xe7,0x18,0xca,0x89,0xf7,0x13,0x59,0xca,0x78,0xd5,0xa7,0x1a,0x78,0xd7, +  0x0a,0x1b,0x2b,0x3b,0x4b,0x5b,0xeb,0x50,0x00,0x00,0x3b +  }; + +/* created by reswrap from file icons/NOR.xcf */ +const unsigned char NOR[]={ +  0x67,0x69,0x6d,0x70,0x20,0x78,0x63,0x66,0x20,0x76,0x30,0x31,0x31,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x96,0x00,0x00, +  0x00,0x11,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x08,0x43, +  0x96,0x00,0x00,0x43,0x96,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x31,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0x15,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x0d,0x67,0x69,0x6d,0x70,0x2d, +  0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x27, +  0x4d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x66,0x6f,0x78,0x6c,0x6f,0x67,0x69, +  0x63,0x67,0x61,0x74,0x65,0x73,0x20,0x62,0x79,0x20,0x44,0x61,0x6e,0x69,0x65,0x6c, +  0x20,0x4a,0x6f,0x6e,0x65,0x73,0x00,0x00,0x00,0x00,0x10,0x67,0x69,0x6d,0x70,0x2d, +  0x69,0x6d,0x61,0x67,0x65,0x2d,0x67,0x72,0x69,0x64,0x00,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0xac,0x28,0x73,0x74,0x79,0x6c,0x65,0x20,0x73,0x6f,0x6c,0x69,0x64,0x29, +  0x0a,0x28,0x66,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6c,0x6f,0x72, +  0x2d,0x72,0x67,0x62,0x61,0x20,0x30,0x20,0x30,0x20,0x30,0x20,0x31,0x29,0x29,0x0a, +  0x28,0x62,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6c,0x6f,0x72,0x2d, +  0x72,0x67,0x62,0x61,0x20,0x31,0x20,0x31,0x20,0x31,0x20,0x31,0x29,0x29,0x0a,0x28, +  0x78,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x31,0x30,0x29,0x0a,0x28,0x79,0x73, +  0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x31,0x30,0x29,0x0a,0x28,0x73,0x70,0x61,0x63, +  0x69,0x6e,0x67,0x2d,0x75,0x6e,0x69,0x74,0x20,0x69,0x6e,0x63,0x68,0x65,0x73,0x29, +  0x0a,0x28,0x78,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x29,0x0a,0x28,0x79,0x6f, +  0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x29,0x0a,0x28,0x6f,0x66,0x66,0x73,0x65,0x74, +  0x2d,0x75,0x6e,0x69,0x74,0x20,0x69,0x6e,0x63,0x68,0x65,0x73,0x29,0x0a,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0xaf,0x00, +  0x00,0x00,0x00,0x00,0x00,0x03,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x66,0x00, +  0x00,0x00,0x00,0x00,0x00,0x06,0x15,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xb7,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0a,0xb7,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0c,0x22,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x12,0x50, +  0x61,0x73,0x74,0x65,0x64,0x20,0x4c,0x61,0x79,0x65,0x72,0x20,0x63,0x6f,0x70,0x79, +  0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00, +  0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00, +  0x0a,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00, +  0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, +  0xb9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00, +  0x05,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0xd5,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00, +  0x00,0x00,0x00,0x02,0xed,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x18, +  0x00,0x18,0x00,0xfa,0x12,0x88,0xfd,0x88,0x12,0x88,0x02,0xff,0xfe,0x88,0xfd,0x02, +  0xff,0xfe,0xfd,0x88,0x02,0xff,0xfa,0x88,0x12,0x88,0xfd,0x88,0x12,0x00,0x00,0x00, +  0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0d,0x50,0x61,0x73, +  0x74,0x65,0x64,0x20,0x4c,0x61,0x79,0x65,0x72,0x00,0x00,0x00,0x00,0x06,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80, +  0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00, +  0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x06,0x00,0x00, +  0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff, +  0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00, +  0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x12,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x04,0x2e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x46,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0xfa,0x12,0x88,0xfd, +  0x88,0x12,0x88,0x02,0xff,0xfe,0x88,0xfd,0x02,0xff,0xfe,0xfd,0x88,0x02,0xff,0xfa, +  0x88,0x12,0x88,0xfd,0x88,0x12,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00, +  0x00,0x01,0x00,0x00,0x00,0x09,0x64,0x6f,0x74,0x20,0x63,0x6f,0x70,0x79,0x00,0x00, +  0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00, +  0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00, +  0x00,0x00,0x08,0xff,0xff,0xff,0xfb,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00, +  0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x31,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x05,0x6f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x05,0x93,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x09,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00, +  0x00,0x05,0xb3,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xe5,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f, +  0x05,0x7c,0x00,0xfc,0x44,0xba,0xfe,0xba,0x3b,0x00,0xff,0xba,0x02,0xff,0x3b,0x00, +  0xff,0xfe,0x02,0xff,0x3b,0x00,0xff,0xba,0x02,0xff,0x3b,0x00,0xfc,0x44,0xba,0xfe, +  0xba,0x7f,0x06,0x00,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c, +  0x00,0x7d,0x00,0xff,0x44,0x04,0x00,0xff,0xba,0x04,0x00,0xff,0xfe,0x04,0x00,0xff, +  0xba,0x04,0x00,0xff,0x44,0x7f,0x00,0x95,0x00,0x00,0x00,0x00,0x23,0x00,0x00,0x00, +  0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00, +  0x01,0x00,0x00,0x00,0x04,0x64,0x6f,0x74,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00, +  0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00, +  0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff, +  0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00, +  0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x07,0x35,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0xab,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00, +  0x00,0x00,0x00,0x07,0x55,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x87,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80, +  0x00,0x7f,0x05,0x7c,0x00,0xfc,0x44,0xba,0xfe,0xba,0x3b,0x00,0xff,0xba,0x02,0xff, +  0x3b,0x00,0xff,0xfe,0x02,0xff,0x3b,0x00,0xff,0xba,0x02,0xff,0x3b,0x00,0xfc,0x44, +  0xba,0xfe,0xba,0x7f,0x06,0x00,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f, +  0x01,0x2c,0x00,0x7d,0x00,0xff,0x44,0x04,0x00,0xff,0xba,0x04,0x00,0xff,0xfe,0x04, +  0x00,0xff,0xba,0x04,0x00,0xff,0x44,0x7f,0x00,0x95,0x00,0x00,0x00,0x00,0x23,0x00, +  0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00, +  0x00,0x00,0x01,0x00,0x00,0x00,0x0b,0x42,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e, +  0x64,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00, +  0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0xff,0xff, +  0xff,0xf2,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00, +  0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x08,0xba,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00, +  0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xde,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0a,0xab,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfe,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0a,0x34,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c, +  0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x01,0xa2,0x00,0xf1,0xcd, +  0xe1,0xef,0xf9,0xfe,0xfe,0xf9,0xef,0xe1,0xcd,0xb5,0x98,0x76,0x4f,0x23,0x30,0x00, +  0x0e,0xff,0xfc,0xe7,0xb0,0x75,0x34,0x2c,0x00,0x12,0xff,0xfd,0xd8,0x8c,0x3c,0x29, +  0x00,0x15,0xff,0xfd,0xc3,0x66,0x06,0x26,0x00,0x17,0xff,0xfd,0xd5,0x6e,0x03,0x24, +  0x00,0xf7,0x1d,0x05,0x05,0x1d,0x48,0x7f,0xb7,0xe4,0xfc,0x10,0xff,0xfe,0xc3,0x51, +  0x2c,0x00,0xfd,0x7f,0xdc,0xfe,0x0f,0xff,0xfe,0x8b,0x12,0x2c,0x00,0xfe,0x48,0xd3, +  0x0f,0xff,0xff,0xaf,0x2e,0x00,0xfe,0x80,0xf1,0x0e,0xff,0x2f,0x00,0xfe,0x3d,0xdf, +  0x0d,0xff,0x30,0x00,0xfe,0x33,0xe0,0x0c,0xff,0x31,0x00,0xfe,0x41,0xf3,0x0b,0xff, +  0x32,0x00,0xff,0x90,0x0b,0xff,0x33,0x00,0xff,0xed,0x0a,0xff,0x33,0x00,0xff,0xa9, +  0x0a,0xff,0x33,0x00,0xff,0x4e,0x0a,0xff,0x33,0x00,0xff,0x0b,0x0a,0xff,0x33,0x00, +  0xff,0x0b,0x0a,0xff,0x33,0x00,0xff,0x4e,0x0a,0xff,0x33,0x00,0xff,0xa9,0x0a,0xff, +  0x33,0x00,0xff,0xed,0x0a,0xff,0x32,0x00,0xff,0x90,0x0b,0xff,0x31,0x00,0xfe,0x41, +  0xf3,0x0b,0xff,0x30,0x00,0xfe,0x33,0xe0,0x0c,0xff,0x2f,0x00,0xfe,0x3d,0xdf,0x0d, +  0xff,0x2e,0x00,0xfe,0x80,0xf1,0x0e,0xff,0x2c,0x00,0xfe,0x48,0xd3,0x0f,0xff,0xff, +  0xaf,0x2a,0x00,0xfd,0x7f,0xdc,0xfe,0x0f,0xff,0xfe,0x8b,0x12,0x21,0x00,0xf7,0x1d, +  0x05,0x05,0x1d,0x48,0x7f,0xb7,0xe4,0xfc,0x10,0xff,0xfe,0xc3,0x51,0x23,0x00,0x17, +  0xff,0xfd,0xd5,0x6e,0x03,0x24,0x00,0x15,0xff,0xfd,0xc3,0x66,0x06,0x26,0x00,0x12, +  0xff,0xfd,0xd8,0x8c,0x3c,0x29,0x00,0x0e,0xff,0xfc,0xe7,0xb0,0x75,0x34,0x2c,0x00, +  0xf1,0xcd,0xe1,0xef,0xf9,0xfe,0xfe,0xf9,0xef,0xe1,0xcd,0xb5,0x98,0x76,0x4f,0x23, +  0x7f,0x02,0x8f,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00, +  0x4d,0x00,0xff,0x32,0x04,0x00,0xfe,0xbd,0x3c,0x03,0x00,0xfd,0xff,0xbb,0x29,0x02, +  0x00,0x01,0xff,0xff,0xa4,0x02,0x00,0x02,0xff,0xfd,0x6a,0x00,0x00,0x02,0xff,0xfd, +  0xd6,0x05,0x00,0x03,0xff,0xfe,0x5f,0x00,0x03,0xff,0xfe,0xa9,0x00,0x03,0xff,0xfe, +  0xde,0x00,0x03,0xff,0xfe,0xfa,0x00,0x03,0xff,0xfe,0xfa,0x00,0x03,0xff,0xfe,0xde, +  0x00,0x03,0xff,0xfe,0xa9,0x00,0x03,0xff,0xfe,0x5f,0x00,0x02,0xff,0xfd,0xd6,0x05, +  0x00,0x02,0xff,0xfa,0x6a,0x00,0x00,0xff,0xff,0xa4,0x02,0x00,0xfd,0xff,0xbb,0x29, +  0x02,0x00,0xfe,0xbd,0x3c,0x03,0x00,0xff,0x32,0x6a,0x00,0x00,0x00,0x00,0x23,0x00, +  0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00, +  0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x62,0x67,0x00,0x00,0x00,0x00,0x06,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80, +  0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff, +  0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00, +  0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xb2,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0b,0xd6,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x16,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0b,0xf6,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x06,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0xff,0x7f,0x0c,0x80,0xff,0x7f,0x0c, +  0x80,0xff,0x7f,0x0c,0x80,0xff,0x7f,0x01,0x2c,0xff,0x7f,0x01,0x2c,0xff,0x7f,0x01, +  0x2c,0xff,0x7f,0x01,0x2c,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x0f,0x53,0x65, +  0x6c,0x65,0x63,0x74,0x69,0x6f,0x6e,0x20,0x4d,0x61,0x73,0x6b,0x00,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x7f,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x00,0x00,0x00,0x00,0x00,0x00, +  0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x03,0x00,0x00,0x00, +  0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0xe0, +  0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0d,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x20,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0d,0x24,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x1c,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x7f,0x03,0x4f,0x00,0xf2,0x1e,0x5c,0x91,0xbc,0xdc,0xf2,0xfd, +  0xfd,0xf2,0xdc,0xbc,0x91,0x5c,0x1e,0x2e,0x00,0xfd,0x0b,0x68,0xbc,0x0d,0xff,0xfd, +  0xbc,0x68,0x0b,0x29,0x00,0xfd,0x05,0x73,0xdc,0x11,0xff,0xfd,0xdc,0x73,0x05,0x26, +  0x00,0xfe,0x43,0xbb,0x15,0xff,0xfe,0xbb,0x43,0x24,0x00,0xfe,0x63,0xe2,0x17,0xff, +  0xfe,0xe2,0x63,0x22,0x00,0xfe,0x62,0xe7,0x19,0xff,0xfe,0xe7,0x62,0x20,0x00,0xfe, +  0x3d,0xe0,0x1b,0xff,0xfe,0xe0,0x3d,0x1f,0x00,0xff,0xb0,0x1d,0xff,0xff,0xb0,0x1e, +  0x00,0xff,0x4b,0x1f,0xff,0xff,0x4b,0x1d,0x00,0xff,0x9d,0x1f,0xff,0xff,0x9d,0x1d, +  0x00,0xff,0xd9,0x1f,0xff,0xff,0xd9,0x1d,0x00,0xff,0xfa,0x1f,0xff,0xff,0xfa,0x1d, +  0x00,0xff,0xfa,0x1f,0xff,0xff,0xfa,0x1d,0x00,0xff,0xd9,0x1f,0xff,0xff,0xd9,0x1d, +  0x00,0xff,0x9d,0x1f,0xff,0xff,0x9d,0x1d,0x00,0xff,0x4b,0x1f,0xff,0xff,0x4b,0x1e, +  0x00,0xff,0xb0,0x1d,0xff,0xff,0xb0,0x1f,0x00,0xfe,0x3d,0xe0,0x1b,0xff,0xfe,0xe0, +  0x3d,0x20,0x00,0xfe,0x62,0xe7,0x19,0xff,0xfe,0xe7,0x62,0x22,0x00,0xfe,0x63,0xe2, +  0x17,0xff,0xfe,0xe2,0x63,0x24,0x00,0xfe,0x43,0xbb,0x15,0xff,0xfe,0xbb,0x43,0x26, +  0x00,0xfd,0x05,0x73,0xdc,0x11,0xff,0xfd,0xdc,0x73,0x05,0x29,0x00,0xfd,0x0b,0x68, +  0xbc,0x0d,0xff,0xfd,0xbc,0x68,0x0b,0x2e,0x00,0xf2,0x1e,0x5c,0x91,0xbc,0xdc,0xf2, +  0xfd,0xfd,0xf2,0xdc,0xbc,0x91,0x5c,0x1e,0x7f,0x03,0x63,0x00,0x7f,0x01,0x2c,0x00, +  0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00 +  }; +  /* created by reswrap from file icons/NOT_icon_data.gif */  const unsigned char NOT_icon_data[]={    0x47,0x49,0x46,0x38,0x39,0x61,0x46,0x00,0x32,0x00,0x80,0x01,0x00,0x00,0x00,0x00, @@ -1255,3 +1746,526 @@ const unsigned char OUTPUT[]={    0x00,0x00,0x00,0x00    }; +/* created by reswrap from file icons/XNOR_icon_data.gif */ +const unsigned char XNOR_icon_data[]={ +  0x47,0x49,0x46,0x38,0x39,0x61,0x46,0x00,0x32,0x00,0x80,0x01,0x00,0x00,0x00,0x00, +  0xff,0xff,0xff,0x21,0xfe,0x26,0x4d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x66, +  0x6f,0x78,0x6c,0x6f,0x67,0x69,0x63,0x67,0x61,0x74,0x65,0x73,0x20,0x62,0x79,0x20, +  0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x4a,0x6f,0x6e,0x65,0x73,0x00,0x21,0xf9,0x04, +  0x01,0x0a,0x00,0x01,0x00,0x2c,0x00,0x00,0x00,0x00,0x46,0x00,0x32,0x00,0x00,0x02, +  0xad,0x8c,0x8f,0xa9,0xcb,0xed,0x0f,0xa3,0x9c,0xb4,0xda,0x8b,0xb3,0xde,0xbc,0xfb, +  0x0f,0x76,0xc0,0x18,0x96,0xcb,0x88,0x9a,0xaa,0x81,0x92,0x48,0x0b,0xa7,0xab,0x04, +  0x27,0xf1,0xdd,0xce,0x8e,0xfc,0xe2,0x3e,0xaf,0x7b,0xfc,0x86,0xae,0x60,0x83,0x88, +  0x34,0x32,0x90,0x4c,0xa5,0x8d,0xd9,0x74,0x1e,0xa0,0x49,0x29,0x0b,0x17,0xa0,0x16, +  0xad,0xb1,0x1e,0xd4,0x3a,0xad,0x85,0xbf,0xe0,0xac,0xf8,0x1a,0x05,0xdf,0xc6,0x69, +  0xee,0xd9,0x1c,0x05,0xa2,0x4b,0x5d,0xb6,0x16,0xe0,0xdd,0x7a,0xea,0xe8,0x7b,0x1e, +  0x1f,0xc2,0x07,0xe7,0x67,0x47,0xf7,0x46,0x05,0xa7,0x20,0xb7,0x77,0x48,0xe6,0x96, +  0x63,0x47,0x54,0x26,0x88,0xa8,0xc6,0xa7,0x35,0xd9,0xd8,0xe6,0x44,0x59,0x29,0xd5, +  0xe9,0xa8,0xe4,0x33,0xb8,0x19,0x74,0xf7,0xf3,0x79,0x3a,0x9a,0xaa,0xfa,0xc6,0xd9, +  0xba,0xf8,0xda,0x5a,0xf6,0xe7,0x69,0xb4,0x88,0x69,0x29,0x27,0x49,0x5b,0xd8,0x7b, +  0xe1,0xfa,0x3b,0x11,0x2b,0x5c,0x6c,0x7c,0x8c,0x9c,0xac,0x6c,0x5c,0x00,0x00,0x3b +  }; + +/* created by reswrap from file icons/XNOR.xcf */ +const unsigned char XNOR[]={ +  0x67,0x69,0x6d,0x70,0x20,0x78,0x63,0x66,0x20,0x76,0x30,0x31,0x31,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x96,0x00,0x00, +  0x00,0x11,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x08,0x43, +  0x96,0x00,0x00,0x43,0x96,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x48,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0x17,0x00,0x00,0x01,0x89,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0x08,0x55,0x6e,0x6e,0x61,0x6d,0x65,0x64,0x00,0x00,0x00,0x00,0x00,0x02, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01, +  0x00,0x00,0x00,0x33,0x00,0x00,0x00,0x01,0x41,0xda,0x00,0x00,0x41,0x62,0x00,0x00, +  0x00,0x00,0x00,0x02,0x41,0xda,0x00,0x00,0x41,0x62,0x00,0x00,0x00,0x00,0x00,0x02, +  0x41,0xed,0x00,0x00,0x41,0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x41,0xed,0x00,0x00, +  0x41,0xa0,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xed,0x00,0x00,0x41,0xa0,0x00,0x00, +  0x00,0x00,0x00,0x02,0x41,0xf5,0x00,0x00,0x41,0xcc,0x00,0x00,0x00,0x00,0x00,0x01, +  0x41,0xf5,0x00,0x00,0x41,0xcc,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xf5,0x00,0x00, +  0x41,0xcc,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xf4,0x00,0x00,0x41,0xf8,0x00,0x00, +  0x00,0x00,0x00,0x01,0x41,0xf5,0x00,0x00,0x41,0xf8,0x00,0x00,0x00,0x00,0x00,0x02, +  0x41,0xf6,0x00,0x00,0x41,0xf8,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xe0,0x00,0x00, +  0x42,0x0c,0x80,0x00,0x00,0x00,0x00,0x01,0x41,0xe0,0x00,0x00,0x42,0x0c,0x80,0x00, +  0x00,0x00,0x00,0x02,0x41,0xe0,0x00,0x00,0x42,0x0c,0x80,0x00,0x00,0x00,0x00,0x02, +  0x41,0xe1,0x00,0x00,0x42,0x17,0x00,0x00,0x00,0x00,0x00,0x01,0x41,0xe2,0x00,0x00, +  0x42,0x16,0x80,0x00,0x00,0x00,0x00,0x02,0x41,0xe3,0x00,0x00,0x42,0x16,0x00,0x00, +  0x00,0x00,0x00,0x02,0x42,0x0c,0x00,0x00,0x42,0x06,0x00,0x00,0x00,0x00,0x00,0x01, +  0x42,0x0c,0x00,0x00,0x42,0x06,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0x0c,0x00,0x00, +  0x42,0x06,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0x0c,0x00,0x00,0x41,0xed,0x00,0x00, +  0x00,0x00,0x00,0x01,0x42,0x0c,0x80,0x00,0x41,0xe9,0x00,0x00,0x00,0x00,0x00,0x02, +  0x42,0x0d,0x00,0x00,0x41,0xe5,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0x07,0x80,0x00, +  0x41,0xa5,0x00,0x00,0x00,0x00,0x00,0x01,0x42,0x07,0x80,0x00,0x41,0xa4,0x00,0x00, +  0x00,0x00,0x00,0x02,0x42,0x07,0x80,0x00,0x41,0xa3,0x00,0x00,0x00,0x00,0x00,0x02, +  0x41,0xf9,0x00,0x00,0x41,0x82,0x00,0x00,0x00,0x00,0x00,0x01,0x41,0xf7,0x00,0x00, +  0x41,0x80,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xf5,0x00,0x00,0x41,0x7c,0x00,0x00, +  0x00,0x00,0x00,0x15,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x0d,0x67,0x69,0x6d,0x70, +  0x2d,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, +  0x27,0x4d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x66,0x6f,0x78,0x6c,0x6f,0x67, +  0x69,0x63,0x67,0x61,0x74,0x65,0x73,0x20,0x62,0x79,0x20,0x44,0x61,0x6e,0x69,0x65, +  0x6c,0x20,0x4a,0x6f,0x6e,0x65,0x73,0x00,0x00,0x00,0x00,0x10,0x67,0x69,0x6d,0x70, +  0x2d,0x69,0x6d,0x61,0x67,0x65,0x2d,0x67,0x72,0x69,0x64,0x00,0x00,0x00,0x00,0x01, +  0x00,0x00,0x00,0xac,0x28,0x73,0x74,0x79,0x6c,0x65,0x20,0x73,0x6f,0x6c,0x69,0x64, +  0x29,0x0a,0x28,0x66,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6c,0x6f, +  0x72,0x2d,0x72,0x67,0x62,0x61,0x20,0x30,0x20,0x30,0x20,0x30,0x20,0x31,0x29,0x29, +  0x0a,0x28,0x62,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6c,0x6f,0x72, +  0x2d,0x72,0x67,0x62,0x61,0x20,0x31,0x20,0x31,0x20,0x31,0x20,0x31,0x29,0x29,0x0a, +  0x28,0x78,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x31,0x30,0x29,0x0a,0x28,0x79, +  0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x31,0x30,0x29,0x0a,0x28,0x73,0x70,0x61, +  0x63,0x69,0x6e,0x67,0x2d,0x75,0x6e,0x69,0x74,0x20,0x69,0x6e,0x63,0x68,0x65,0x73, +  0x29,0x0a,0x28,0x78,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x29,0x0a,0x28,0x79, +  0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x29,0x0a,0x28,0x6f,0x66,0x66,0x73,0x65, +  0x74,0x2d,0x75,0x6e,0x69,0x74,0x20,0x69,0x6e,0x63,0x68,0x65,0x73,0x29,0x0a,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x40, +  0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x9e,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xf7, +  0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x66,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x0d, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0xaf,0x00,0x00,0x00,0x00,0x00,0x00,0x0e,0x3c, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x12, +  0x50,0x61,0x73,0x74,0x65,0x64,0x20,0x4c,0x61,0x79,0x65,0x72,0x20,0x63,0x6f,0x70, +  0x79,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00, +  0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00, +  0x00,0x0a,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00, +  0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x04,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00, +  0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x66,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00, +  0x00,0x00,0x00,0x00,0x04,0x7e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00, +  0x18,0x00,0x18,0x00,0xfa,0x12,0x88,0xfd,0x88,0x12,0x88,0x02,0xff,0xfe,0x88,0xfd, +  0x02,0xff,0xfe,0xfd,0x88,0x02,0xff,0xfa,0x88,0x12,0x88,0xfd,0x88,0x12,0x00,0x00, +  0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0d,0x50,0x61, +  0x73,0x74,0x65,0x64,0x20,0x4c,0x61,0x79,0x65,0x72,0x00,0x00,0x00,0x00,0x06,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f, +  0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x06,0x00, +  0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff, +  0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00, +  0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xa3,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x05,0xbf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xd7,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0xfa,0x12,0x88, +  0xfd,0x88,0x12,0x88,0x02,0xff,0xfe,0x88,0xfd,0x02,0xff,0xfe,0xfd,0x88,0x02,0xff, +  0xfa,0x88,0x12,0x88,0xfd,0x88,0x12,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00, +  0x00,0x00,0x01,0x00,0x00,0x00,0x07,0x64,0x6f,0x74,0x20,0x23,0x31,0x00,0x00,0x00, +  0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00, +  0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00, +  0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00, +  0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff, +  0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x32,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0xf6,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x1a,0x00,0x00,0x00,0x00,0x00,0x00, +  0x07,0x5a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00, +  0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x3a,0x00,0x00,0x00,0x00,0x00,0x00, +  0x07,0x4a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c, +  0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01, +  0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x00,0x00,0x00,0x23,0x00,0x00, +  0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00, +  0x00,0x01,0x00,0x00,0x00,0x09,0x64,0x6f,0x74,0x20,0x63,0x6f,0x70,0x79,0x00,0x00, +  0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00, +  0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0xff,0xff,0xff,0xfb,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00, +  0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00, +  0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff, +  0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x31,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x67,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x8b,0x00,0x00,0x00,0x00,0x00, +  0x00,0x09,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00, +  0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xab,0x00,0x00,0x00,0x00,0x00, +  0x00,0x08,0xdd,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0x00,0x7f, +  0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x05,0x7c,0x00,0xfc,0x44,0xba,0xfe,0xba, +  0x3b,0x00,0xff,0xba,0x02,0xff,0x3b,0x00,0xff,0xfe,0x02,0xff,0x3b,0x00,0xff,0xba, +  0x02,0xff,0x3b,0x00,0xfc,0x44,0xba,0xfe,0xba,0x7f,0x06,0x00,0x00,0x7f,0x01,0x2c, +  0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7d,0x00,0xff,0x44,0x04,0x00,0xff, +  0xba,0x04,0x00,0xff,0xfe,0x04,0x00,0xff,0xba,0x04,0x00,0xff,0x44,0x7f,0x00,0x95, +  0x00,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x64,0x6f,0x74, +  0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00, +  0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00, +  0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00, +  0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00, +  0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a, +  0x09,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00, +  0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x2d,0x00,0x00,0x00, +  0x00,0x00,0x00,0x0a,0xa3,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x4d,0x00,0x00,0x00, +  0x00,0x00,0x00,0x0a,0x7f,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80, +  0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x05,0x7c,0x00,0xfc,0x44,0xba, +  0xfe,0xba,0x3b,0x00,0xff,0xba,0x02,0xff,0x3b,0x00,0xff,0xfe,0x02,0xff,0x3b,0x00, +  0xff,0xba,0x02,0xff,0x3b,0x00,0xfc,0x44,0xba,0xfe,0xba,0x7f,0x06,0x00,0x00,0x7f, +  0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7d,0x00,0xff,0x44,0x04, +  0x00,0xff,0xba,0x04,0x00,0xff,0xfe,0x04,0x00,0xff,0xba,0x04,0x00,0xff,0x44,0x7f, +  0x00,0x95,0x00,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0b,0x42, +  0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x00,0x00,0x00,0x00,0x02,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00, +  0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0xff,0xff, +  0xff,0xf2,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00, +  0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x0b,0xba,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00, +  0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xde,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0e,0x30,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0xfe,0x00,0x00, +  0x00,0x00,0x00,0x00,0x0d,0xb9,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c, +  0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x01,0xa2,0x00,0xf1,0xcd, +  0xe1,0xef,0xf9,0xfe,0xfe,0xf9,0xef,0xe1,0xcd,0xb5,0x98,0x76,0x4f,0x23,0x30,0x00, +  0x0e,0xff,0xfc,0xe7,0xb0,0x75,0x34,0x2c,0x00,0x12,0xff,0xfd,0xd8,0x8c,0x3c,0x29, +  0x00,0x15,0xff,0xfd,0xc3,0x66,0x06,0x26,0x00,0x17,0xff,0xfd,0xd5,0x6e,0x03,0x24, +  0x00,0xff,0xd7,0x18,0xff,0xfe,0xc3,0x51,0x22,0x00,0xfe,0x49,0xcd,0x1a,0xff,0xfe, +  0x8b,0x12,0x22,0x00,0xfe,0x48,0xe9,0x08,0xff,0xff,0xd3,0x0f,0xff,0xff,0xaf,0x24, +  0x00,0xfe,0x80,0xf1,0x05,0xff,0xfc,0x98,0x00,0x80,0xf1,0x0e,0xff,0x25,0x00,0xfe, +  0x3d,0xdf,0x04,0xff,0xfb,0x38,0x00,0x00,0x3d,0xdf,0x0d,0xff,0x26,0x00,0xfe,0x33, +  0xe0,0x04,0xff,0xfb,0x35,0x00,0x00,0x33,0xe0,0x0c,0xff,0x27,0x00,0xfe,0x41,0xf3, +  0x03,0xff,0xfa,0xf8,0x17,0x00,0x00,0x41,0xf3,0x0b,0xff,0x28,0x00,0xff,0x90,0x04, +  0xff,0xff,0x90,0x02,0x00,0xff,0x90,0x0b,0xff,0x29,0x00,0xff,0xed,0x04,0xff,0xff, +  0x19,0x02,0x00,0xff,0xed,0x0a,0xff,0x29,0x00,0xff,0xa9,0x04,0xff,0xff,0x60,0x02, +  0x00,0xff,0xa9,0x0a,0xff,0x29,0x00,0xff,0x4e,0x04,0xff,0xff,0xb7,0x02,0x00,0xff, +  0x4e,0x0a,0xff,0x29,0x00,0xff,0x0b,0x04,0xff,0xff,0xf4,0x02,0x00,0xff,0x0b,0x0a, +  0xff,0x29,0x00,0xff,0x0b,0x04,0xff,0xff,0xf4,0x02,0x00,0xff,0x0b,0x0a,0xff,0x29, +  0x00,0xff,0x4e,0x04,0xff,0xff,0xb7,0x02,0x00,0xff,0x4e,0x0a,0xff,0x29,0x00,0xff, +  0xa9,0x04,0xff,0xff,0x60,0x02,0x00,0xff,0xa9,0x0a,0xff,0x29,0x00,0xff,0xed,0x04, +  0xff,0xff,0x19,0x02,0x00,0xff,0xed,0x0a,0xff,0x28,0x00,0xff,0x90,0x04,0xff,0xff, +  0x90,0x02,0x00,0xff,0x90,0x0b,0xff,0x27,0x00,0xfe,0x41,0xf3,0x03,0xff,0xfa,0xf8, +  0x17,0x00,0x00,0x41,0xf3,0x0b,0xff,0x26,0x00,0xfe,0x33,0xe0,0x04,0xff,0xfb,0x35, +  0x00,0x00,0x33,0xe0,0x0c,0xff,0x25,0x00,0xfe,0x3d,0xdf,0x04,0xff,0xfb,0x38,0x00, +  0x00,0x3d,0xdf,0x0d,0xff,0x24,0x00,0xfe,0x80,0xf1,0x06,0xff,0xfd,0x00,0x80,0xf1, +  0x0e,0xff,0x22,0x00,0xfe,0x48,0xd3,0x08,0xff,0xff,0xd3,0x0f,0xff,0xff,0xaf,0x20, +  0x00,0xfe,0x49,0xc8,0x1a,0xff,0xfe,0x8b,0x12,0x21,0x00,0xff,0xc7,0x18,0xff,0xfe, +  0xc3,0x51,0x23,0x00,0x17,0xff,0xfd,0xd5,0x6e,0x03,0x24,0x00,0x15,0xff,0xfd,0xc3, +  0x66,0x06,0x26,0x00,0x12,0xff,0xfd,0xd8,0x8c,0x3c,0x29,0x00,0x0e,0xff,0xfc,0xe7, +  0xb0,0x75,0x34,0x2c,0x00,0xf1,0xcd,0xe1,0xef,0xf9,0xfe,0xfe,0xf9,0xef,0xe1,0xcd, +  0xb5,0x98,0x76,0x4f,0x23,0x7f,0x02,0x8f,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c, +  0x00,0x7f,0x01,0x2c,0x00,0x4d,0x00,0xff,0x32,0x04,0x00,0xfe,0xbd,0x3c,0x03,0x00, +  0xfd,0xff,0xbb,0x29,0x02,0x00,0x01,0xff,0xff,0xa4,0x02,0x00,0x02,0xff,0xfd,0x6a, +  0x00,0x00,0x02,0xff,0xfd,0xd6,0x05,0x00,0x03,0xff,0xfe,0x5f,0x00,0x03,0xff,0xfe, +  0xa9,0x00,0x03,0xff,0xfe,0xde,0x00,0x03,0xff,0xfe,0xfa,0x00,0x03,0xff,0xfe,0xfa, +  0x00,0x03,0xff,0xfe,0xde,0x00,0x03,0xff,0xfe,0xa9,0x00,0x03,0xff,0xfe,0x5f,0x00, +  0x02,0xff,0xfd,0xd6,0x05,0x00,0x02,0xff,0xfa,0x6a,0x00,0x00,0xff,0xff,0xa4,0x02, +  0x00,0xfd,0xff,0xbb,0x29,0x02,0x00,0xfe,0xbd,0x3c,0x03,0x00,0xff,0x32,0x6a,0x00, +  0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46, +  0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x62,0x67,0x00,0x00, +  0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00, +  0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00, +  0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00, +  0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff, +  0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x03,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x37,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x5b,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0f,0x9b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00, +  0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x7b,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0f,0x8b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0xff,0x7f, +  0x0c,0x80,0xff,0x7f,0x0c,0x80,0xff,0x7f,0x0c,0x80,0xff,0x7f,0x01,0x2c,0xff,0x7f, +  0x01,0x2c,0xff,0x7f,0x01,0x2c,0xff,0x7f,0x01,0x2c,0xff,0x00,0x00,0x00,0x23,0x00, +  0x00,0x00,0x19,0x00,0x00,0x00,0x00 +  }; + +/* created by reswrap from file icons/XOR_icon_data.gif */ +const unsigned char XOR_icon_data[]={ +  0x47,0x49,0x46,0x38,0x39,0x61,0x46,0x00,0x32,0x00,0x80,0x01,0x00,0x00,0x00,0x00, +  0xff,0xff,0xff,0x21,0xfe,0x26,0x4d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x66, +  0x6f,0x78,0x6c,0x6f,0x67,0x69,0x63,0x67,0x61,0x74,0x65,0x73,0x20,0x62,0x79,0x20, +  0x44,0x61,0x6e,0x69,0x65,0x6c,0x20,0x4a,0x6f,0x6e,0x65,0x73,0x00,0x21,0xf9,0x04, +  0x01,0x0a,0x00,0x01,0x00,0x2c,0x00,0x00,0x00,0x00,0x46,0x00,0x32,0x00,0x00,0x02, +  0xac,0x8c,0x8f,0xa9,0xcb,0xed,0x0f,0xa3,0x9c,0xb4,0xda,0x8b,0xb3,0xde,0xbc,0xfb, +  0x0f,0x76,0xc0,0x18,0x96,0xcb,0x88,0x9a,0xaa,0x81,0x92,0x48,0x0b,0xa7,0xab,0x04, +  0x27,0xf1,0xdd,0xce,0x8e,0xfc,0xe2,0x3e,0xaf,0x7b,0xfc,0x86,0xae,0x60,0x83,0x88, +  0x34,0x32,0x90,0x4c,0xa5,0x8d,0xd9,0x74,0x1e,0xa0,0x49,0x29,0x0b,0x17,0xa0,0x16, +  0xad,0xb1,0x1e,0xd4,0x3a,0xad,0x85,0xbf,0xe0,0xac,0xf8,0x1a,0x05,0xdf,0xc6,0x69, +  0xee,0xd9,0xdc,0x46,0xeb,0xba,0xec,0x2a,0x7a,0x6b,0xa2,0xdf,0x89,0x5e,0x7c,0x49, +  0x0f,0x67,0x17,0x08,0x30,0xf7,0x46,0xf5,0x44,0x58,0x98,0x53,0x37,0x54,0x06,0xa8, +  0xe5,0x68,0x48,0xe6,0x76,0x06,0xa9,0x26,0x19,0xa7,0xf4,0x78,0x48,0x09,0x64,0xe9, +  0xe4,0x33,0x28,0x68,0xa4,0xd5,0x08,0x5a,0xfa,0xd3,0x89,0xba,0xa8,0xba,0x5a,0xb6, +  0x57,0xfa,0xca,0x38,0x49,0xea,0xf7,0x29,0xf5,0x26,0x0a,0xf8,0x9a,0x2b,0x3b,0xd1, +  0xeb,0x4b,0xe3,0x17,0x4c,0x5c,0x6c,0x7c,0x8c,0x9c,0x6c,0x5c,0x00,0x00,0x3b +  }; + +/* created by reswrap from file icons/XOR.xcf */ +const unsigned char XOR[]={ +  0x67,0x69,0x6d,0x70,0x20,0x78,0x63,0x66,0x20,0x76,0x30,0x31,0x31,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x96,0x00,0x00, +  0x00,0x11,0x00,0x00,0x00,0x01,0x01,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x08,0x43, +  0x96,0x00,0x00,0x43,0x96,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x48,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0x17,0x00,0x00,0x01,0x89,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00, +  0x00,0x00,0x08,0x55,0x6e,0x6e,0x61,0x6d,0x65,0x64,0x00,0x00,0x00,0x00,0x00,0x02, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01, +  0x00,0x00,0x00,0x33,0x00,0x00,0x00,0x01,0x41,0xda,0x00,0x00,0x41,0x62,0x00,0x00, +  0x00,0x00,0x00,0x02,0x41,0xda,0x00,0x00,0x41,0x62,0x00,0x00,0x00,0x00,0x00,0x02, +  0x41,0xed,0x00,0x00,0x41,0xa0,0x00,0x00,0x00,0x00,0x00,0x01,0x41,0xed,0x00,0x00, +  0x41,0xa0,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xed,0x00,0x00,0x41,0xa0,0x00,0x00, +  0x00,0x00,0x00,0x02,0x41,0xf5,0x00,0x00,0x41,0xcc,0x00,0x00,0x00,0x00,0x00,0x01, +  0x41,0xf5,0x00,0x00,0x41,0xcc,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xf5,0x00,0x00, +  0x41,0xcc,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xf4,0x00,0x00,0x41,0xf8,0x00,0x00, +  0x00,0x00,0x00,0x01,0x41,0xf5,0x00,0x00,0x41,0xf8,0x00,0x00,0x00,0x00,0x00,0x02, +  0x41,0xf6,0x00,0x00,0x41,0xf8,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xe0,0x00,0x00, +  0x42,0x0c,0x80,0x00,0x00,0x00,0x00,0x01,0x41,0xe0,0x00,0x00,0x42,0x0c,0x80,0x00, +  0x00,0x00,0x00,0x02,0x41,0xe0,0x00,0x00,0x42,0x0c,0x80,0x00,0x00,0x00,0x00,0x02, +  0x41,0xe1,0x00,0x00,0x42,0x17,0x00,0x00,0x00,0x00,0x00,0x01,0x41,0xe2,0x00,0x00, +  0x42,0x16,0x80,0x00,0x00,0x00,0x00,0x02,0x41,0xe3,0x00,0x00,0x42,0x16,0x00,0x00, +  0x00,0x00,0x00,0x02,0x42,0x0c,0x00,0x00,0x42,0x06,0x00,0x00,0x00,0x00,0x00,0x01, +  0x42,0x0c,0x00,0x00,0x42,0x06,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0x0c,0x00,0x00, +  0x42,0x06,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0x0c,0x00,0x00,0x41,0xed,0x00,0x00, +  0x00,0x00,0x00,0x01,0x42,0x0c,0x80,0x00,0x41,0xe9,0x00,0x00,0x00,0x00,0x00,0x02, +  0x42,0x0d,0x00,0x00,0x41,0xe5,0x00,0x00,0x00,0x00,0x00,0x02,0x42,0x07,0x80,0x00, +  0x41,0xa5,0x00,0x00,0x00,0x00,0x00,0x01,0x42,0x07,0x80,0x00,0x41,0xa4,0x00,0x00, +  0x00,0x00,0x00,0x02,0x42,0x07,0x80,0x00,0x41,0xa3,0x00,0x00,0x00,0x00,0x00,0x02, +  0x41,0xf9,0x00,0x00,0x41,0x82,0x00,0x00,0x00,0x00,0x00,0x01,0x41,0xf7,0x00,0x00, +  0x41,0x80,0x00,0x00,0x00,0x00,0x00,0x02,0x41,0xf5,0x00,0x00,0x41,0x7c,0x00,0x00, +  0x00,0x00,0x00,0x15,0x00,0x00,0x01,0x08,0x00,0x00,0x00,0x0d,0x67,0x69,0x6d,0x70, +  0x2d,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, +  0x27,0x4d,0x61,0x64,0x65,0x20,0x66,0x6f,0x72,0x20,0x66,0x6f,0x78,0x6c,0x6f,0x67, +  0x69,0x63,0x67,0x61,0x74,0x65,0x73,0x20,0x62,0x79,0x20,0x44,0x61,0x6e,0x69,0x65, +  0x6c,0x20,0x4a,0x6f,0x6e,0x65,0x73,0x00,0x00,0x00,0x00,0x10,0x67,0x69,0x6d,0x70, +  0x2d,0x69,0x6d,0x61,0x67,0x65,0x2d,0x67,0x72,0x69,0x64,0x00,0x00,0x00,0x00,0x01, +  0x00,0x00,0x00,0xac,0x28,0x73,0x74,0x79,0x6c,0x65,0x20,0x73,0x6f,0x6c,0x69,0x64, +  0x29,0x0a,0x28,0x66,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6c,0x6f, +  0x72,0x2d,0x72,0x67,0x62,0x61,0x20,0x30,0x20,0x30,0x20,0x30,0x20,0x31,0x29,0x29, +  0x0a,0x28,0x62,0x67,0x63,0x6f,0x6c,0x6f,0x72,0x20,0x28,0x63,0x6f,0x6c,0x6f,0x72, +  0x2d,0x72,0x67,0x62,0x61,0x20,0x31,0x20,0x31,0x20,0x31,0x20,0x31,0x29,0x29,0x0a, +  0x28,0x78,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x31,0x30,0x29,0x0a,0x28,0x79, +  0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x20,0x31,0x30,0x29,0x0a,0x28,0x73,0x70,0x61, +  0x63,0x69,0x6e,0x67,0x2d,0x75,0x6e,0x69,0x74,0x20,0x69,0x6e,0x63,0x68,0x65,0x73, +  0x29,0x0a,0x28,0x78,0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x29,0x0a,0x28,0x79, +  0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x29,0x0a,0x28,0x6f,0x66,0x66,0x73,0x65, +  0x74,0x2d,0x75,0x6e,0x69,0x74,0x20,0x69,0x6e,0x63,0x68,0x65,0x73,0x29,0x0a,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x38, +  0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x96,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xef, +  0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x08, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x8d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05, +  0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x12,0x50,0x61,0x73,0x74,0x65,0x64,0x20,0x4c, +  0x61,0x79,0x65,0x72,0x20,0x63,0x6f,0x70,0x79,0x00,0x00,0x00,0x00,0x06,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80, +  0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00, +  0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x28,0x00,0x00, +  0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff, +  0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00, +  0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x42,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x04,0x5e,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x76,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x18,0x00,0x18,0x00,0xfa,0x12,0x88,0xfd, +  0x88,0x12,0x88,0x02,0xff,0xfe,0x88,0xfd,0x02,0xff,0xfe,0xfd,0x88,0x02,0xff,0xfa, +  0x88,0x12,0x88,0xfd,0x88,0x12,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00,0x00, +  0x00,0x01,0x00,0x00,0x00,0x0d,0x50,0x61,0x73,0x74,0x65,0x64,0x20,0x4c,0x61,0x79, +  0x65,0x72,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00, +  0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00, +  0x00,0x00,0x0a,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00, +  0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x05,0x9b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00, +  0x00,0x00,0x05,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0xb7,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x05,0x00, +  0x00,0x00,0x00,0x00,0x00,0x05,0xcf,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18, +  0x00,0x18,0x00,0x18,0x00,0xfa,0x12,0x88,0xfd,0x88,0x12,0x88,0x02,0xff,0xfe,0x88, +  0xfd,0x02,0xff,0xfe,0xfd,0x88,0x02,0xff,0xfa,0x88,0x12,0x88,0xfd,0x88,0x12,0x00, +  0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x07,0x64, +  0x6f,0x74,0x20,0x23,0x31,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00, +  0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00, +  0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00, +  0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x06,0xee,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x07,0x12,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x52,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00, +  0x07,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x42,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c, +  0x80,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01, +  0x2c,0x00,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x64,0x6f, +  0x74,0x00,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80, +  0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00, +  0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0f,0x00,0x00,0x00,0x08,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00, +  0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff, +  0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00, +  0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x62,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00, +  0x00,0x00,0x00,0x00,0x08,0x86,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xfc,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00, +  0x00,0x00,0x00,0x00,0x08,0xa6,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0xd8,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c, +  0x80,0x00,0x7f,0x05,0x7c,0x00,0xfc,0x44,0xba,0xfe,0xba,0x3b,0x00,0xff,0xba,0x02, +  0xff,0x3b,0x00,0xff,0xfe,0x02,0xff,0x3b,0x00,0xff,0xba,0x02,0xff,0x3b,0x00,0xfc, +  0x44,0xba,0xfe,0xba,0x7f,0x06,0x00,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01,0x2c,0x00, +  0x7f,0x01,0x2c,0x00,0x7d,0x00,0xff,0x44,0x04,0x00,0xff,0xba,0x04,0x00,0xff,0xfe, +  0x04,0x00,0xff,0xba,0x04,0x00,0xff,0x44,0x7f,0x00,0x95,0x00,0x00,0x00,0x00,0x23, +  0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32, +  0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0b,0x42,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75, +  0x6e,0x64,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00, +  0x00,0x00,0x21,0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x1c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0c,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00, +  0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0xff, +  0xff,0xff,0xf2,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x1c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x24,0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00, +  0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00, +  0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x0a,0x0b,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00, +  0x00,0x00,0x32,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x2f,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0c,0x81,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x00,0x00,0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x4f,0x00, +  0x00,0x00,0x00,0x00,0x00,0x0c,0x0a,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f, +  0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x0c,0x80,0x00,0x7f,0x01,0xa2,0x00,0xf1, +  0xcd,0xe1,0xef,0xf9,0xfe,0xfe,0xf9,0xef,0xe1,0xcd,0xb5,0x98,0x76,0x4f,0x23,0x30, +  0x00,0x0e,0xff,0xfc,0xe7,0xb0,0x75,0x34,0x2c,0x00,0x12,0xff,0xfd,0xd8,0x8c,0x3c, +  0x29,0x00,0x15,0xff,0xfd,0xc3,0x66,0x06,0x26,0x00,0x17,0xff,0xfd,0xd5,0x6e,0x03, +  0x24,0x00,0xff,0xd7,0x18,0xff,0xfe,0xc3,0x51,0x22,0x00,0xfe,0x49,0xcd,0x1a,0xff, +  0xfe,0x8b,0x12,0x22,0x00,0xfe,0x48,0xe9,0x08,0xff,0xff,0xd3,0x0f,0xff,0xff,0xaf, +  0x24,0x00,0xfe,0x80,0xf1,0x05,0xff,0xfc,0x98,0x00,0x80,0xf1,0x0e,0xff,0x25,0x00, +  0xfe,0x3d,0xdf,0x04,0xff,0xfb,0x38,0x00,0x00,0x3d,0xdf,0x0d,0xff,0x26,0x00,0xfe, +  0x33,0xe0,0x04,0xff,0xfb,0x35,0x00,0x00,0x33,0xe0,0x0c,0xff,0x27,0x00,0xfe,0x41, +  0xf3,0x03,0xff,0xfa,0xf8,0x17,0x00,0x00,0x41,0xf3,0x0b,0xff,0x28,0x00,0xff,0x90, +  0x04,0xff,0xff,0x90,0x02,0x00,0xff,0x90,0x0b,0xff,0x29,0x00,0xff,0xed,0x04,0xff, +  0xff,0x19,0x02,0x00,0xff,0xed,0x0a,0xff,0x29,0x00,0xff,0xa9,0x04,0xff,0xff,0x60, +  0x02,0x00,0xff,0xa9,0x0a,0xff,0x29,0x00,0xff,0x4e,0x04,0xff,0xff,0xb7,0x02,0x00, +  0xff,0x4e,0x0a,0xff,0x29,0x00,0xff,0x0b,0x04,0xff,0xff,0xf4,0x02,0x00,0xff,0x0b, +  0x0a,0xff,0x29,0x00,0xff,0x0b,0x04,0xff,0xff,0xf4,0x02,0x00,0xff,0x0b,0x0a,0xff, +  0x29,0x00,0xff,0x4e,0x04,0xff,0xff,0xb7,0x02,0x00,0xff,0x4e,0x0a,0xff,0x29,0x00, +  0xff,0xa9,0x04,0xff,0xff,0x60,0x02,0x00,0xff,0xa9,0x0a,0xff,0x29,0x00,0xff,0xed, +  0x04,0xff,0xff,0x19,0x02,0x00,0xff,0xed,0x0a,0xff,0x28,0x00,0xff,0x90,0x04,0xff, +  0xff,0x90,0x02,0x00,0xff,0x90,0x0b,0xff,0x27,0x00,0xfe,0x41,0xf3,0x03,0xff,0xfa, +  0xf8,0x17,0x00,0x00,0x41,0xf3,0x0b,0xff,0x26,0x00,0xfe,0x33,0xe0,0x04,0xff,0xfb, +  0x35,0x00,0x00,0x33,0xe0,0x0c,0xff,0x25,0x00,0xfe,0x3d,0xdf,0x04,0xff,0xfb,0x38, +  0x00,0x00,0x3d,0xdf,0x0d,0xff,0x24,0x00,0xfe,0x80,0xf1,0x06,0xff,0xfd,0x00,0x80, +  0xf1,0x0e,0xff,0x22,0x00,0xfe,0x48,0xd3,0x08,0xff,0xff,0xd3,0x0f,0xff,0xff,0xaf, +  0x20,0x00,0xfe,0x49,0xc8,0x1a,0xff,0xfe,0x8b,0x12,0x21,0x00,0xff,0xc7,0x18,0xff, +  0xfe,0xc3,0x51,0x23,0x00,0x17,0xff,0xfd,0xd5,0x6e,0x03,0x24,0x00,0x15,0xff,0xfd, +  0xc3,0x66,0x06,0x26,0x00,0x12,0xff,0xfd,0xd8,0x8c,0x3c,0x29,0x00,0x0e,0xff,0xfc, +  0xe7,0xb0,0x75,0x34,0x2c,0x00,0xf1,0xcd,0xe1,0xef,0xf9,0xfe,0xfe,0xf9,0xef,0xe1, +  0xcd,0xb5,0x98,0x76,0x4f,0x23,0x7f,0x02,0x8f,0x00,0x7f,0x01,0x2c,0x00,0x7f,0x01, +  0x2c,0x00,0x7f,0x01,0x2c,0x00,0x4d,0x00,0xff,0x32,0x04,0x00,0xfe,0xbd,0x3c,0x03, +  0x00,0xfd,0xff,0xbb,0x29,0x02,0x00,0x01,0xff,0xff,0xa4,0x02,0x00,0x02,0xff,0xfd, +  0x6a,0x00,0x00,0x02,0xff,0xfd,0xd6,0x05,0x00,0x03,0xff,0xfe,0x5f,0x00,0x03,0xff, +  0xfe,0xa9,0x00,0x03,0xff,0xfe,0xde,0x00,0x03,0xff,0xfe,0xfa,0x00,0x03,0xff,0xfe, +  0xfa,0x00,0x03,0xff,0xfe,0xde,0x00,0x03,0xff,0xfe,0xa9,0x00,0x03,0xff,0xfe,0x5f, +  0x00,0x02,0xff,0xfd,0xd6,0x05,0x00,0x02,0xff,0xfa,0x6a,0x00,0x00,0xff,0xff,0xa4, +  0x02,0x00,0xfd,0xff,0xbb,0x29,0x02,0x00,0xfe,0xbd,0x3c,0x03,0x00,0xff,0x32,0x6a, +  0x00,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00,0x00,0x00,0x00, +  0x46,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x62,0x67,0x00, +  0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x21, +  0x00,0x00,0x00,0x04,0x3f,0x80,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x04, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c, +  0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x04, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c, +  0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x00, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x1c, +  0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x24, +  0x00,0x00,0x00,0x04,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x23,0x00,0x00,0x00,0x04, +  0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x03, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x88, +  0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x32, +  0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0xac,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0d,0xec,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x46, +  0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0xcc,0x00,0x00,0x00,0x00, +  0x00,0x00,0x0d,0xdc,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x7f,0x0c,0x80,0xff, +  0x7f,0x0c,0x80,0xff,0x7f,0x0c,0x80,0xff,0x7f,0x0c,0x80,0xff,0x7f,0x01,0x2c,0xff, +  0x7f,0x01,0x2c,0xff,0x7f,0x01,0x2c,0xff,0x7f,0x01,0x2c,0xff,0x00,0x00,0x00,0x23, +  0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x00 +  }; + diff --git a/icons/NAND.xcf b/icons/NAND.xcfBinary files differ new file mode 100644 index 0000000..b0cdcd3 --- /dev/null +++ b/icons/NAND.xcf diff --git a/icons/NAND_icon_data.gif b/icons/NAND_icon_data.gifBinary files differ new file mode 100644 index 0000000..8d7c6b8 --- /dev/null +++ b/icons/NAND_icon_data.gif diff --git a/icons/NOR.xcf b/icons/NOR.xcfBinary files differ new file mode 100644 index 0000000..a32d156 --- /dev/null +++ b/icons/NOR.xcf diff --git a/icons/NOR_icon_data.gif b/icons/NOR_icon_data.gifBinary files differ new file mode 100644 index 0000000..b338dcd --- /dev/null +++ b/icons/NOR_icon_data.gif diff --git a/icons/XNOR.xcf b/icons/XNOR.xcfBinary files differ new file mode 100644 index 0000000..4258d74 --- /dev/null +++ b/icons/XNOR.xcf diff --git a/icons/XNOR_icon_data.gif b/icons/XNOR_icon_data.gifBinary files differ new file mode 100644 index 0000000..459ab5f --- /dev/null +++ b/icons/XNOR_icon_data.gif diff --git a/icons/XOR.xcf b/icons/XOR.xcfBinary files differ new file mode 100644 index 0000000..dea5974 --- /dev/null +++ b/icons/XOR.xcf diff --git a/icons/XOR_icon_data.gif b/icons/XOR_icon_data.gifBinary files differ new file mode 100644 index 0000000..aa0fc8d --- /dev/null +++ b/icons/XOR_icon_data.gif | 
