1 /* ==================================== JUCER_BINARY_RESOURCE ====================================
2 
3    This is an auto-generated file: Any edits you make may be overwritten!
4 
5 */
6 
7 namespace BinaryData
8 {
9 
10 //================== LaunchScreen.storyboard ==================
11 static const unsigned char temp_binary_data_0[] =
12 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
13 "<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"14460.31\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" "
14 "useSafeAreas=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n"
15 "    <scenes>\n"
16 "        <scene sceneID=\"EHf-IW-A2E\">\n"
17 "            <objects>\n"
18 "                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"\" sceneMemberID=\"firstResponder\"/>\n"
19 "                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n"
20 "                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n"
21 "                        <autoresizingMask key=\"autoresizingMask\"/>\n"
22 "                        <color key=\"backgroundColor\" red=\"0\" green=\"0\" blue=\"0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n"
23 "                    </view>\n"
24 "                </viewController>\n"
25 "            </objects>\n"
26 "        </scene>\n"
27 "    </scenes>\n"
28 "</document>\n";
29 
30 const char* LaunchScreen_storyboard = (const char*) temp_binary_data_0;
31 
32 //================== PIPAudioProcessor.cpp.in ==================
33 static const unsigned char temp_binary_data_1[] =
34 "/*\n"
35 "  ==============================================================================\n"
36 "\n"
37 "    This file was auto-generated and contains the startup code for a PIP.\n"
38 "\n"
39 "  ==============================================================================\n"
40 "*/\n"
41 "\n"
42 "#include <JuceHeader.h>\n"
43 "#include \"${JUCE_PIP_HEADER}\"\n"
44 "\n"
45 "//==============================================================================\n"
46 "juce::AudioProcessor* JUCE_CALLTYPE createPluginFilter()\n"
47 "{\n"
48 "    return new ${JUCE_PIP_MAIN_CLASS}();\n"
49 "}\n";
50 
51 const char* PIPAudioProcessor_cpp_in = (const char*) temp_binary_data_1;
52 
53 //================== PIPComponent.cpp.in ==================
54 static const unsigned char temp_binary_data_2[] =
55 "/*\r\n"
56 "  ==============================================================================\r\n"
57 "\r\n"
58 "    This file contains the startup code for a PIP.\r\n"
59 "\r\n"
60 "  ==============================================================================\r\n"
61 "*/\r\n"
62 "\r\n"
63 "#include <JuceHeader.h>\r\n"
64 "#include \"${JUCE_PIP_HEADER}\"\r\n"
65 "\r\n"
66 "class Application    : public juce::JUCEApplication\r\n"
67 "{\r\n"
68 "public:\r\n"
69 "    //==============================================================================\r\n"
70 "    Application() = default;\r\n"
71 "\r\n"
72 "    const juce::String getApplicationName() override       { return \"${JUCE_PIP_NAME}\"; }\r\n"
73 "    const juce::String getApplicationVersion() override    { return \"${PROJECT_VERSION}\"; }\r\n"
74 "\r\n"
75 "    void initialise (const juce::String&) override\r\n"
76 "    {\r\n"
77 "        mainWindow.reset (new MainWindow (\"${JUCE_PIP_NAME}\", new ${JUCE_PIP_MAIN_CLASS}, *this));\r\n"
78 "    }\r\n"
79 "\r\n"
80 "    void shutdown() override                         { mainWindow = nullptr; }\r\n"
81 "\r\n"
82 "private:\r\n"
83 "    class MainWindow    : public juce::DocumentWindow\r\n"
84 "    {\r\n"
85 "    public:\r\n"
86 "        MainWindow (const juce::String& name, juce::Component* c, JUCEApplication& a)\r\n"
87 "            : DocumentWindow (name, juce::Desktop::getInstance().getDefaultLookAndFeel()\r\n"
88 "                                                                .findColour (ResizableWindow::backgroundColourId),\r\n"
89 "                              juce::DocumentWindow::allButtons),\r\n"
90 "              app (a)\r\n"
91 "        {\r\n"
92 "            setUsingNativeTitleBar (true);\r\n"
93 "            setContentOwned (c, true);\r\n"
94 "\r\n"
95 "           #if JUCE_ANDROID || JUCE_IOS\r\n"
96 "            setFullScreen (true);\r\n"
97 "           #else\r\n"
98 "            setResizable (true, false);\r\n"
99 "            setResizeLimits (300, 250, 10000, 10000);\r\n"
100 "            centreWithSize (getWidth(), getHeight());\r\n"
101 "           #endif\r\n"
102 "\r\n"
103 "            setVisible (true);\r\n"
104 "        }\r\n"
105 "\r\n"
106 "        void closeButtonPressed() override\r\n"
107 "        {\r\n"
108 "            app.systemRequestedQuit();\r\n"
109 "        }\r\n"
110 "\r\n"
111 "    private:\r\n"
112 "        JUCEApplication& app;\r\n"
113 "\r\n"
114 "        //==============================================================================\r\n"
115 "        JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MainWindow)\r\n"
116 "    };\r\n"
117 "\r\n"
118 "    std::unique_ptr<MainWindow> mainWindow;\r\n"
119 "};\r\n"
120 "\r\n"
121 "//==============================================================================\r\n"
122 "START_JUCE_APPLICATION (Application)\r\n";
123 
124 const char* PIPComponent_cpp_in = (const char*) temp_binary_data_2;
125 
126 //================== PIPConsole.cpp.in ==================
127 static const unsigned char temp_binary_data_3[] =
128 "/*\n"
129 "  ==============================================================================\n"
130 "\n"
131 "    This file was auto-generated and contains the startup code for a PIP.\n"
132 "\n"
133 "  ==============================================================================\n"
134 "*/\n"
135 "\n"
136 "#include <JuceHeader.h>\n"
137 "#include \"${JUCE_PIP_HEADER}\"\n";
138 
139 const char* PIPConsole_cpp_in = (const char*) temp_binary_data_3;
140 
141 //================== RecentFilesMenuTemplate.nib ==================
142 static const unsigned char temp_binary_data_4[] =
143 { 98,112,108,105,115,116,48,48,212,0,1,0,2,0,3,0,4,0,5,0,6,1,53,1,54,88,36,118,101,114,115,105,111,110,88,36,111,98,106,101,99,116,115,89,36,97,114,99,104,105,118,101,114,84,36,116,111,112,18,0,1,134,160,175,16,74,0,7,0,8,0,31,0,35,0,36,0,42,0,46,0,50,
144 0,53,0,57,0,74,0,77,0,78,0,86,0,87,0,97,0,112,0,113,0,114,0,119,0,120,0,121,0,124,0,128,0,129,0,132,0,143,0,144,0,145,0,149,0,153,0,162,0,163,0,164,0,169,0,173,0,180,0,181,0,182,0,185,0,192,0,193,0,200,0,201,0,208,0,209,0,216,0,217,0,224,0,225,0,226,
145 0,229,0,230,0,232,0,249,1,11,1,29,1,30,1,31,1,32,1,33,1,34,1,35,1,36,1,37,1,38,1,39,1,40,1,41,1,42,1,43,1,44,1,47,1,50,85,36,110,117,108,108,219,0,9,0,10,0,11,0,12,0,13,0,14,0,15,0,16,0,17,0,18,0,19,0,20,0,21,0,22,0,23,0,24,0,25,0,26,0,27,0,28,0,29,0,
146 29,95,16,16,78,83,86,105,115,105,98,108,101,87,105,110,100,111,119,115,93,78,83,79,98,106,101,99,116,115,75,101,121,115,86,78,83,82,111,111,116,92,78,83,79,105,100,115,86,97,108,117,101,115,86,36,99,108,97,115,115,90,78,83,79,105,100,115,75,101,121,115,
147 93,78,83,67,111,110,110,101,99,116,105,111,110,115,95,16,15,78,83,79,98,106,101,99,116,115,86,97,108,117,101,115,95,16,25,78,83,65,99,99,101,115,115,105,98,105,108,105,116,121,67,111,110,110,101,99,116,111,114,115,95,16,23,78,83,65,99,99,101,115,115,
148 105,98,105,108,105,116,121,79,105,100,115,75,101,121,115,95,16,25,78,83,65,99,99,101,115,115,105,98,105,108,105,116,121,79,105,100,115,86,97,108,117,101,115,128,5,128,9,128,2,128,55,128,73,128,54,128,7,128,53,128,71,128,72,128,72,210,0,13,0,32,0,33,0,
149 34,91,78,83,67,108,97,115,115,78,97,109,101,128,4,128,3,93,78,83,65,112,112,108,105,99,97,116,105,111,110,210,0,37,0,38,0,39,0,40,90,36,99,108,97,115,115,110,97,109,101,88,36,99,108,97,115,115,101,115,94,78,83,67,117,115,116,111,109,79,98,106,101,99,
150 116,162,0,39,0,41,88,78,83,79,98,106,101,99,116,210,0,13,0,43,0,44,0,45,90,78,83,46,111,98,106,101,99,116,115,128,6,160,210,0,37,0,38,0,47,0,48,92,78,83,77,117,116,97,98,108,101,83,101,116,163,0,47,0,49,0,41,85,78,83,83,101,116,210,0,13,0,43,0,51,0,52,
151 128,8,160,210,0,37,0,38,0,54,0,55,94,78,83,77,117,116,97,98,108,101,65,114,114,97,121,163,0,54,0,56,0,41,87,78,83,65,114,114,97,121,210,0,13,0,43,0,58,0,59,128,52,174,0,60,0,61,0,62,0,63,0,64,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,128,10,128,12,
152 128,45,128,15,128,39,128,25,128,28,128,30,128,33,128,35,128,43,128,41,128,47,128,50,210,0,13,0,32,0,33,0,76,128,4,128,11,93,78,83,65,112,112,108,105,99,97,116,105,111,110,212,0,79,0,13,0,80,0,81,0,82,0,83,0,84,0,85,91,78,83,77,101,110,117,73,116,101,
153 109,115,86,78,83,78,97,109,101,87,78,83,84,105,116,108,101,128,14,128,38,128,49,128,13,89,65,77,97,105,110,77,101,110,117,210,0,13,0,43,0,51,0,89,128,8,167,0,63,0,65,0,64,0,71,0,70,0,62,0,72,128,15,128,25,128,39,128,41,128,43,128,45,128,47,216,0,98,0,
154 99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,61,0,106,0,107,0,108,0,109,0,110,0,111,95,16,17,78,83,75,101,121,69,113,117,105,118,77,111,100,77,97,115,107,86,78,83,77,101,110,117,89,78,83,79,110,73,109,97,103,101,90,78,83,75,101,121,69,113,117,105,118,
155 93,78,83,77,110,101,109,111,110,105,99,76,111,99,92,78,83,77,105,120,101,100,73,109,97,103,101,18,0,16,0,0,128,12,128,18,128,24,128,17,18,127,255,255,255,128,22,128,16,91,100,101,108,109,101,65,112,112,75,105,116,80,211,0,13,0,115,0,32,0,116,0,117,0,
156 118,94,78,83,82,101,115,111,117,114,99,101,78,97,109,101,128,21,128,20,128,19,87,78,83,73,109,97,103,101,95,16,15,78,83,77,101,110,117,67,104,101,99,107,109,97,114,107,210,0,37,0,38,0,122,0,123,95,16,16,78,83,67,117,115,116,111,109,82,101,115,111,117,
157 114,99,101,162,0,122,0,41,211,0,13,0,115,0,32,0,116,0,126,0,118,128,21,128,23,128,19,95,16,16,78,83,77,101,110,117,77,105,120,101,100,83,116,97,116,101,210,0,37,0,38,0,130,0,131,90,78,83,77,101,110,117,73,116,101,109,162,0,130,0,41,218,0,133,0,98,0,134,
158 0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,135,0,104,0,66,0,61,0,106,0,107,0,108,0,109,0,110,0,142,88,78,83,65,99,116,105,111,110,89,78,83,83,117,98,109,101,110,117,128,27,128,28,128,12,128,18,128,24,128,17,128,22,128,26,84,70,105,108,101,94,115,117,98,
159 109,101,110,117,65,99,116,105,111,110,58,211,0,79,0,13,0,81,0,146,0,83,0,142,128,29,128,38,128,26,210,0,13,0,43,0,51,0,151,128,8,161,0,67,128,30,218,0,133,0,98,0,134,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,154,0,104,0,68,0,66,0,106,0,107,0,108,0,109,
160 0,110,0,161,128,32,128,33,128,28,128,18,128,24,128,17,128,22,128,31,91,79,112,101,110,32,82,101,99,101,110,116,94,115,117,98,109,101,110,117,65,99,116,105,111,110,58,212,0,79,0,13,0,80,0,81,0,165,0,83,0,167,0,161,128,34,128,38,128,37,128,31,210,0,13,
161 0,43,0,51,0,171,128,8,161,0,69,128,35,216,0,98,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,68,0,106,0,107,0,108,0,109,0,110,0,179,128,33,128,18,128,24,128,17,128,22,128,36,90,67,108,101,97,114,32,77,101,110,117,95,16,22,95,78,83,82,101,99,101,110,
162 116,68,111,99,117,109,101,110,116,115,77,101,110,117,210,0,37,0,38,0,183,0,184,86,78,83,77,101,110,117,162,0,183,0,41,216,0,98,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,61,0,106,0,107,0,108,0,109,0,110,0,191,128,12,128,18,128,24,128,17,128,22,128,
163 40,84,69,100,105,116,215,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,61,0,106,0,107,0,108,0,109,0,110,0,199,128,12,128,18,128,24,128,17,128,22,128,42,86,70,111,114,109,97,116,216,0,98,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,61,0,106,0,107,0,108,0,
164 109,0,110,0,207,128,12,128,18,128,24,128,17,128,22,128,44,84,86,105,101,119,216,0,98,0,99,0,100,0,13,0,101,0,102,0,103,0,81,0,104,0,61,0,106,0,107,0,108,0,109,0,110,0,215,128,12,128,18,128,24,128,17,128,22,128,46,86,87,105,110,100,111,119,215,0,99,0,
165 100,0,13,0,101,0,102,0,103,0,81,0,61,0,106,0,107,0,108,0,109,0,110,0,223,128,12,128,18,128,24,128,17,128,22,128,48,84,72,101,108,112,91,95,78,83,77,97,105,110,77,101,110,117,210,0,13,0,32,0,33,0,228,128,4,128,51,93,78,83,70,111,110,116,77,97,110,97,103,
166 101,114,210,0,37,0,38,0,56,0,231,162,0,56,0,41,210,0,13,0,43,0,58,0,234,128,52,174,0,22,0,22,0,61,0,61,0,61,0,61,0,65,0,66,0,67,0,68,0,61,0,61,0,61,0,22,128,2,128,2,128,12,128,12,128,12,128,12,128,25,128,28,128,30,128,33,128,12,128,12,128,12,128,2,210,
167 0,13,0,43,0,58,0,251,128,52,175,16,15,0,22,0,60,0,61,0,62,0,63,0,64,0,65,0,66,0,67,0,68,0,69,0,70,0,71,0,72,0,73,128,2,128,10,128,12,128,45,128,15,128,39,128,25,128,28,128,30,128,33,128,35,128,43,128,41,128,47,128,50,210,0,13,0,43,0,58,1,13,128,52,175,
168 16,15,1,14,1,15,1,16,1,17,1,18,1,19,1,20,1,21,1,22,1,23,1,24,1,25,1,26,1,27,1,28,128,56,128,57,128,58,128,59,128,60,128,61,128,62,128,63,128,64,128,65,128,66,128,67,128,68,128,69,128,70,17,2,22,17,2,23,17,2,24,17,2,25,17,2,26,17,2,27,17,2,28,17,2,29,
169 17,2,30,17,2,31,17,2,32,17,2,33,17,2,34,17,2,35,17,2,36,210,0,13,0,43,0,51,1,46,128,8,160,210,0,13,0,43,0,58,1,49,128,52,160,210,0,37,0,38,1,51,1,52,94,78,83,73,66,79,98,106,101,99,116,68,97,116,97,162,1,51,0,41,95,16,15,78,83,75,101,121,101,100,65,114,
170 99,104,105,118,101,114,209,1,55,1,56,93,73,66,46,111,98,106,101,99,116,100,97,116,97,128,1,0,8,0,25,0,34,0,43,0,53,0,58,0,63,0,214,0,220,1,9,1,28,1,42,1,49,1,62,1,69,1,80,1,94,1,112,1,140,1,166,1,194,1,196,1,198,1,200,1,202,1,204,1,206,1,208,1,210,1,
171 212,1,214,1,216,1,225,1,237,1,239,1,241,1,255,2,8,2,19,2,28,2,43,2,48,2,57,2,66,2,77,2,79,2,80,2,89,2,102,2,109,2,115,2,124,2,126,2,127,2,136,2,151,2,158,2,166,2,175,2,177,2,206,2,208,2,210,2,212,2,214,2,216,2,218,2,220,2,222,2,224,2,226,2,228,2,230,
172 2,232,2,234,2,243,2,245,2,247,3,5,3,22,3,34,3,41,3,49,3,51,3,53,3,55,3,57,3,67,3,76,3,78,3,93,3,95,3,97,3,99,3,101,3,103,3,105,3,107,3,140,3,160,3,167,3,177,3,188,3,202,3,215,3,220,3,222,3,224,3,226,3,228,3,233,3,235,3,237,3,249,3,250,4,7,4,22,4,24,4,
173 26,4,28,4,36,4,54,4,63,4,82,4,87,4,100,4,102,4,104,4,106,4,125,4,134,4,145,4,150,4,191,4,200,4,210,4,212,4,214,4,216,4,218,4,220,4,222,4,224,4,226,4,231,4,246,5,3,5,5,5,7,5,9,5,18,5,20,5,23,5,25,5,66,5,68,5,70,5,72,5,74,5,76,5,78,5,80,5,82,5,94,5,109,
174 5,126,5,128,5,130,5,132,5,134,5,143,5,145,5,148,5,150,5,183,5,185,5,187,5,189,5,191,5,193,5,195,5,206,5,231,5,240,5,247,5,252,6,29,6,31,6,33,6,35,6,37,6,39,6,41,6,46,6,75,6,77,6,79,6,81,6,83,6,85,6,87,6,94,6,127,6,129,6,131,6,133,6,135,6,137,6,139,6,
175 144,6,177,6,179,6,181,6,183,6,185,6,187,6,189,6,196,6,225,6,227,6,229,6,231,6,233,6,235,6,237,6,242,6,254,7,7,7,9,7,11,7,25,7,34,7,39,7,48,7,50,7,79,7,81,7,83,7,85,7,87,7,89,7,91,7,93,7,95,7,97,7,99,7,101,7,103,7,105,7,107,7,116,7,118,7,151,7,153,7,155,
176 7,157,7,159,7,161,7,163,7,165,7,167,7,169,7,171,7,173,7,175,7,177,7,179,7,181,7,190,7,192,7,225,7,227,7,229,7,231,7,233,7,235,7,237,7,239,7,241,7,243,7,245,7,247,7,249,7,251,7,253,7,255,8,2,8,5,8,8,8,11,8,14,8,17,8,20,8,23,8,26,8,29,8,32,8,35,8,38,8,
177 41,8,44,8,53,8,55,8,56,8,65,8,67,8,68,8,77,8,92,8,97,8,115,8,120,8,134,0,0,0,0,0,0,2,2,0,0,0,0,0,0,1,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,136,0,0 };
178 
179 const char* RecentFilesMenuTemplate_nib = (const char*) temp_binary_data_4;
180 
181 //================== UnityPluginGUIScript.cs.in ==================
182 static const unsigned char temp_binary_data_5[] =
183 "#if UNITY_EDITOR\n"
184 "\n"
185 "using UnityEditor;\n"
186 "using UnityEngine;\n"
187 "\n"
188 "using System.Collections.Generic;\n"
189 "using System.Runtime.InteropServices;\n"
190 "\n"
191 "public class ${plugin_class_name}GUI : IAudioEffectPluginGUI\n"
192 "{\n"
193 "    public override string Name           { get { return \"${plugin_name}\"; } }\n"
194 "    public override string Description    { get { return \"${plugin_description}\"; } }\n"
195 "    public override string Vendor         { get { return \"${plugin_vendor}\"; } }\n"
196 "\n"
197 "    //==============================================================================\n"
198 "    [DllImport(\"${plugin_name}\")] static extern System.IntPtr getRenderCallback();\n"
199 "\n"
200 "    [DllImport(\"${plugin_name}\")] static extern void unityInitialiseTexture (int id, System.IntPtr texture, int width, int height);\n"
201 "\n"
202 "    [DllImport(\"${plugin_name}\")] static extern void unityMouseDown (int id, float x, float y, EventModifiers mods, int button);\n"
203 "    [DllImport(\"${plugin_name}\")] static extern void unityMouseDrag (int id, float x, float y, EventModifiers mods, int button);\n"
204 "    [DllImport(\"${plugin_name}\")] static extern void unityMouseUp   (int id, float x, float y, EventModifiers mods);\n"
205 "\n"
206 "    [DllImport(\"${plugin_name}\")] static extern void unityKeyEvent (int id, KeyCode code, EventModifiers mods, string name);\n"
207 "\n"
208 "    [DllImport(\"${plugin_name}\")] static extern void unitySetScreenBounds (int id, float x, float y, float w, float h);\n"
209 "\n"
210 "    //==============================================================================\n"
211 "    private class PluginGUIInstance\n"
212 "    {\n"
213 "        public PluginGUIInstance (ref IAudioEffectPlugin plugin, int id)\n"
214 "        {\n"
215 "            instanceID = id;\n"
216 "\n"
217 "            float[] arr;\n"
218 "            plugin.GetFloatBuffer (\"Editor\", out arr, 1);\n"
219 "            hasEditor = (arr[0] > 0.0f);\n"
220 "        }\n"
221 "\n"
222 "        public void repaint (Rect r)\n"
223 "        {\n"
224 "            Vector2 newScreenPosition = GUIUtility.GUIToScreenPoint (r.position);\n"
225 "\n"
226 "            if (bounds != r\n"
227 "                || screenPosition != newScreenPosition)\n"
228 "            {\n"
229 "                screenPosition = newScreenPosition;\n"
230 "                bounds = r;\n"
231 "\n"
232 "                unitySetScreenBounds (instanceID, screenPosition.x, screenPosition.y, bounds.width, bounds.height);\n"
233 "                setupTexture();\n"
234 "            }\n"
235 "\n"
236 "            GL.IssuePluginEvent (getRenderCallback(), instanceID);\n"
237 "\n"
238 "            texture.SetPixels32 (pixels);\n"
239 "            texture.Apply();\n"
240 "\n"
241 "            EditorGUI.DrawPreviewTexture (bounds, texture);\n"
242 "        }\n"
243 "\n"
244 "        public bool handleMouseEvent (EventType eventType)\n"
245 "        {\n"
246 "            Vector2 mousePos = Event.current.mousePosition;\n"
247 "            EventModifiers mods = Event.current.modifiers;\n"
248 "\n"
249 "            if (! bounds.Contains (mousePos))\n"
250 "                return false;\n"
251 "\n"
252 "            Vector2 relativePos = new Vector2 (mousePos.x - bounds.x, mousePos.y - bounds.y);\n"
253 "\n"
254 "            if (eventType == EventType.MouseDown)\n"
255 "            {\n"
256 "                unityMouseDown (instanceID, relativePos.x, relativePos.y, mods, Event.current.button);\n"
257 "                GUIUtility.hotControl = GUIUtility.GetControlID (FocusType.Passive);\n"
258 "            }\n"
259 "            else if (eventType == EventType.MouseUp)\n"
260 "            {\n"
261 "                unityMouseUp (instanceID, relativePos.x, relativePos.y, mods);\n"
262 "                GUIUtility.hotControl = 0;\n"
263 "            }\n"
264 "            else if (eventType == EventType.MouseDrag)\n"
265 "            {\n"
266 "                unityMouseDrag (instanceID, relativePos.x, relativePos.y, mods, Event.current.button);\n"
267 "            }\n"
268 "\n"
269 "            Event.current.Use();\n"
270 "\n"
271 "            return true;\n"
272 "        }\n"
273 "\n"
274 "        public void handleKeyEvent (EventType eventType)\n"
275 "        {\n"
276 "            if (eventType == EventType.KeyDown)\n"
277 "            {\n"
278 "                KeyCode code = Event.current.keyCode;\n"
279 "\n"
280 "                if (code == KeyCode.None)\n"
281 "                    return;\n"
282 "\n"
283 "                EventModifiers mods = Event.current.modifiers;\n"
284 "\n"
285 "                unityKeyEvent (instanceID, code, mods, code.ToString());\n"
286 "            }\n"
287 "        }\n"
288 "\n"
289 "        private void setupTexture()\n"
290 "        {\n"
291 "            if (pixelHandle.IsAllocated)\n"
292 "                pixelHandle.Free();\n"
293 "\n"
294 "            texture = new Texture2D ((int) bounds.width, (int) bounds.height, TextureFormat.ARGB32, false);\n"
295 "\n"
296 "            pixels = texture.GetPixels32();\n"
297 "            pixelHandle = GCHandle.Alloc (pixels, GCHandleType.Pinned);\n"
298 "\n"
299 "            unityInitialiseTexture (instanceID, pixelHandle.AddrOfPinnedObject(), texture.width, texture.height);\n"
300 "        }\n"
301 "\n"
302 "        public int instanceID = -1;\n"
303 "        public bool hasEditor;\n"
304 "\n"
305 "        private Vector2 screenPosition;\n"
306 "        private Rect bounds;\n"
307 "\n"
308 "        private Texture2D texture;\n"
309 "        private Color32[] pixels;\n"
310 "        private GCHandle pixelHandle;\n"
311 "    }\n"
312 "    List<PluginGUIInstance> guis = new List<PluginGUIInstance>();\n"
313 "\n"
314 "    private PluginGUIInstance getGUIInstanceForPlugin (ref IAudioEffectPlugin plugin)\n"
315 "    {\n"
316 "        float[] idArray;\n"
317 "        plugin.GetFloatBuffer (\"ID\", out idArray, 1);\n"
318 "\n"
319 "        int id = (int) idArray[0];\n"
320 "\n"
321 "        for (int i = 0; i < guis.Count; ++i)\n"
322 "        {\n"
323 "            if (guis[i].instanceID == id)\n"
324 "                return guis[i];\n"
325 "        }\n"
326 "\n"
327 "        PluginGUIInstance newInstance = new PluginGUIInstance (ref plugin, id);\n"
328 "        guis.Add (newInstance);\n"
329 "\n"
330 "        return guis[guis.Count - 1];\n"
331 "    }\n"
332 "\n"
333 "    //==============================================================================\n"
334 "    public override bool OnGUI (IAudioEffectPlugin plugin)\n"
335 "    {\n"
336 "        PluginGUIInstance guiInstance = getGUIInstanceForPlugin (ref plugin);\n"
337 "\n"
338 "        if (! guiInstance.hasEditor)\n"
339 "            return true;\n"
340 "\n"
341 "        float[] arr;\n"
342 "        plugin.GetFloatBuffer (\"Size\", out arr, 6);\n"
343 "\n"
344 "        Rect r = GUILayoutUtility.GetRect (arr[0], arr[1],\n"
345 "                                           new GUILayoutOption[] { GUILayout.MinWidth (arr[2]), GUILayout.MinHeight (arr[3]),\n"
346 "                                                                   GUILayout.MaxWidth (arr[4]), GUILayout.MaxHeight (arr[5]) });\n"
347 "\n"
348 "        int controlID = GUIUtility.GetControlID (FocusType.Passive);\n"
349 "        Event currentEvent = Event.current;\n"
350 "        EventType currentEventType = currentEvent.GetTypeForControl (controlID);\n"
351 "\n"
352 "        if (currentEventType == EventType.Repaint)\n"
353 "            guiInstance.repaint (r);\n"
354 "        else if (currentEvent.isMouse)\n"
355 "            guiInstance.handleMouseEvent (currentEventType);\n"
356 "        else if (currentEvent.isKey)\n"
357 "            guiInstance.handleKeyEvent (currentEventType);\n"
358 "\n"
359 "        return false;\n"
360 "    }\n"
361 "}\n"
362 "\n"
363 "#endif\n";
364 
365 const char* UnityPluginGUIScript_cs_in = (const char*) temp_binary_data_5;
366 
367 //================== gradle-wrapper.jar ==================
368 static const unsigned char temp_binary_data_6[] =
369 { 80,75,3,4,10,0,0,8,8,0,42,178,149,71,0,0,0,0,2,0,0,0,0,0,0,0,9,0,0,0,77,69,84,65,45,73,78,70,47,3,0,80,75,3,4,10,0,0,8,8,0,42,178,149,71,215,149,152,82,63,0,0,0,85,0,0,0,20,0,0,0,77,69,84,65,45,73,78,70,47,77,65,78,73,70,69,83,84,46,77,70,243,77,204,
370 203,76,75,45,46,209,13,75,45,42,206,204,207,179,82,48,212,51,224,229,242,204,45,200,73,205,77,205,43,73,44,1,10,234,134,100,150,228,164,90,41,184,23,37,166,228,164,98,200,194,181,26,233,25,2,245,242,114,1,0,80,75,3,4,10,0,0,8,8,0,22,178,149,71,0,0,0,
371 0,2,0,0,0,0,0,0,0,4,0,0,0,111,114,103,47,3,0,80,75,3,4,10,0,0,8,8,0,22,178,149,71,0,0,0,0,2,0,0,0,0,0,0,0,11,0,0,0,111,114,103,47,103,114,97,100,108,101,47,3,0,80,75,3,4,10,0,0,8,8,0,22,178,149,71,0,0,0,0,2,0,0,0,0,0,0,0,19,0,0,0,111,114,103,47,103,114,
372 97,100,108,101,47,119,114,97,112,112,101,114,47,3,0,80,75,3,4,10,0,0,8,8,0,22,178,149,71,104,130,100,102,163,0,0,0,213,0,0,0,35,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,68,111,119,110,108,111,97,100,36,49,46,99,108,
373 97,115,115,125,140,77,10,194,48,16,133,223,104,53,90,43,118,47,130,11,215,134,158,193,31,112,33,46,60,65,108,67,108,9,73,73,170,189,155,11,15,224,161,196,20,113,235,60,230,61,30,204,124,175,247,227,9,32,67,194,192,24,98,66,124,182,55,151,203,125,169,
374 37,97,186,181,173,209,86,20,235,74,220,5,97,182,51,185,182,190,52,234,40,155,171,45,24,38,132,133,117,138,43,39,10,45,121,235,68,93,75,199,127,127,171,140,0,66,114,48,70,186,141,22,222,75,79,72,59,26,215,194,40,126,186,84,50,111,8,243,63,144,116,25,16,
375 61,124,167,31,132,208,34,12,66,70,24,6,31,135,141,195,13,117,45,29,125,0,80,75,3,4,10,0,0,8,8,0,22,178,149,71,197,222,133,214,20,2,0,0,112,4,0,0,68,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,68,111,119,110,108,111,97,
376 100,36,83,121,115,116,101,109,80,114,111,112,101,114,116,105,101,115,80,114,111,120,121,65,117,116,104,101,110,116,105,99,97,116,111,114,46,99,108,97,115,115,165,83,109,111,18,65,16,126,22,40,135,199,209,226,169,96,173,149,218,214,122,84,229,138,111,
377 209,96,26,9,141,137,9,49,77,170,77,76,63,109,97,3,103,174,119,100,111,145,242,175,244,139,109,52,241,7,248,163,140,179,64,149,32,1,19,239,195,206,236,60,243,204,60,59,187,247,227,231,215,239,0,202,120,106,34,141,130,9,11,5,3,107,41,220,54,177,142,141,
378 20,54,83,88,214,238,29,19,91,184,107,34,14,199,192,182,129,123,12,201,23,94,224,169,93,134,184,83,60,100,72,212,194,166,96,88,170,123,129,120,211,61,57,22,242,45,63,246,41,98,215,195,6,247,15,185,244,244,126,20,76,168,182,23,49,172,31,244,35,37,78,246,
379 101,216,17,82,121,34,34,239,180,95,237,170,182,8,148,215,224,42,148,12,214,235,32,16,178,230,243,40,18,196,121,89,15,101,203,109,73,222,244,133,219,147,188,67,84,119,47,236,5,126,200,155,155,243,11,86,24,150,91,66,237,83,185,94,40,155,99,152,23,6,12,
380 27,78,177,254,129,127,228,110,32,148,59,61,169,98,224,62,3,72,190,51,83,75,185,162,7,19,59,221,97,40,204,73,100,48,15,194,174,108,136,87,158,30,79,230,2,42,105,41,22,50,88,164,26,115,100,49,44,182,149,234,148,58,250,200,239,34,33,13,60,176,80,130,75,
381 119,240,7,184,224,106,100,199,64,217,194,67,60,210,29,30,27,120,194,176,251,127,195,101,200,253,86,57,1,172,206,156,0,67,118,64,244,121,208,114,135,125,24,210,250,158,134,221,250,12,91,78,125,44,69,73,47,104,85,138,127,135,24,158,77,73,252,71,106,118,
382 50,70,34,84,88,107,115,89,149,146,147,136,132,83,60,170,49,228,167,180,56,170,233,235,94,153,113,76,172,209,95,102,65,127,113,196,244,173,210,35,90,162,157,75,150,94,20,22,182,207,16,251,76,78,12,89,90,147,131,32,199,101,90,173,97,2,108,92,35,155,64,
383 14,249,17,185,74,81,141,229,191,33,254,222,78,156,99,193,78,218,198,57,82,95,112,233,12,230,167,137,114,98,172,92,126,88,142,192,12,110,140,202,61,39,27,27,105,97,211,181,228,134,9,35,45,218,91,193,205,1,109,117,144,127,11,87,201,218,228,165,81,196,21,
384 152,184,78,22,217,212,47,80,75,3,4,10,0,0,8,8,0,22,178,149,71,231,236,88,115,170,0,0,0,219,0,0,0,34,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,73,68,111,119,110,108,111,97,100,46,99,108,97,115,115,69,141,193,10,194,48,
385 12,134,255,204,233,230,20,17,188,10,94,245,98,241,188,171,10,3,65,80,244,94,183,50,54,74,59,234,116,62,155,7,31,192,135,18,59,149,25,8,201,151,252,249,243,124,221,31,0,22,232,123,232,122,8,8,126,162,43,37,53,79,8,147,233,38,231,87,206,148,40,217,97,23,
386 133,95,202,52,91,103,82,132,179,35,33,88,221,98,81,148,153,86,103,15,61,203,123,125,49,177,168,247,132,65,180,252,89,205,235,67,194,88,155,148,165,134,39,82,176,202,240,162,16,134,53,26,194,240,99,47,185,74,217,246,148,139,184,36,140,254,163,230,83,135,
387 64,112,80,7,185,132,22,92,203,109,75,117,237,216,244,108,239,192,127,3,80,75,3,4,10,0,0,8,8,0,22,178,149,71,4,169,122,221,92,2,0,0,81,4,0,0,45,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,71,114,97,100,108,101,85,115,101,
388 114,72,111,109,101,76,111,111,107,117,112,46,99,108,97,115,115,141,83,91,79,26,65,20,254,70,145,93,214,245,82,172,40,181,182,106,91,4,91,217,90,237,85,211,196,203,170,137,84,8,32,9,79,100,133,9,174,46,187,100,89,108,252,87,189,36,106,106,210,199,62,244,
389 71,53,61,195,82,43,200,131,187,201,185,205,119,190,115,230,204,204,239,63,63,126,2,88,194,170,130,81,204,201,120,162,224,41,158,73,136,41,8,96,94,70,92,248,137,16,70,176,32,225,185,130,144,0,189,16,122,81,70,82,104,77,194,75,9,75,12,147,91,250,246,250,
390 65,42,95,218,201,174,111,165,244,210,65,78,207,150,118,211,159,116,134,112,234,216,56,53,52,203,176,171,90,206,115,77,187,186,202,48,221,141,43,101,178,233,140,158,205,23,75,123,122,145,97,104,211,177,27,158,97,123,5,195,106,114,226,191,133,215,247,11,
391 62,52,184,102,218,166,247,145,161,63,158,40,48,4,54,157,10,37,140,164,76,155,239,55,107,135,220,205,27,135,22,23,125,56,101,195,42,24,174,41,252,118,48,224,29,153,13,134,68,202,113,171,90,213,53,42,22,215,62,187,70,189,206,93,109,167,229,30,52,184,187,
392 235,212,120,202,113,78,154,117,106,125,184,218,17,103,24,141,39,252,45,154,142,182,109,90,156,48,242,90,217,106,119,165,228,156,166,91,230,98,129,33,218,139,51,41,146,85,68,48,65,92,62,121,178,73,136,228,17,65,36,188,82,177,140,21,6,245,102,13,1,127,
393 77,240,238,177,168,120,131,21,21,247,16,102,152,232,158,251,70,211,180,42,220,101,8,93,211,171,120,139,119,212,175,150,244,11,171,120,143,15,12,243,119,28,7,117,240,191,72,250,240,152,151,189,142,80,238,172,225,241,26,195,96,149,123,25,215,33,26,239,
394 140,33,22,191,125,37,18,189,110,201,120,47,32,157,113,144,232,184,125,74,134,104,205,174,48,44,222,137,178,61,0,113,64,158,227,135,24,238,199,123,212,198,44,221,250,81,122,29,253,136,138,105,146,21,197,24,105,194,147,221,71,127,20,227,55,252,32,33,153,
395 56,67,146,147,20,209,72,51,210,3,11,23,96,95,91,144,40,201,96,43,56,142,7,36,85,31,128,41,60,36,29,194,52,30,181,147,79,90,100,244,52,195,125,151,232,47,238,253,130,122,133,64,145,168,6,190,132,131,151,144,58,67,194,248,6,89,152,215,133,34,68,12,34,86,
396 136,118,12,143,73,206,32,134,185,235,194,18,22,40,38,246,37,211,234,191,174,151,41,91,124,83,87,8,21,47,160,132,7,169,254,57,212,240,16,137,115,12,127,135,44,246,194,110,236,37,66,114,166,85,118,246,47,80,75,3,4,10,0,0,8,8,0,22,178,149,71,28,226,93,219,
397 197,5,0,0,250,10,0,0,51,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,69,120,99,108,117,115,105,118,101,70,105,108,101,65,99,99,101,115,115,77,97,110,97,103,101,114,46,99,108,97,115,115,149,86,75,112,19,101,28,255,109,154,
398 38,105,186,109,33,64,33,80,108,0,133,180,80,130,40,22,211,130,150,216,98,104,90,160,13,165,5,21,183,201,54,93,186,221,141,155,77,75,125,32,62,234,251,117,240,232,157,163,50,35,45,88,7,198,25,71,71,199,131,58,227,129,241,194,197,25,47,158,24,47,30,196,
399 223,183,155,150,190,29,14,249,30,255,231,239,255,250,54,63,254,251,213,13,0,15,227,147,32,182,161,179,2,17,164,196,210,229,71,119,16,94,28,247,227,68,16,62,116,138,203,73,113,234,9,160,87,236,105,65,57,37,150,190,32,78,163,223,143,129,0,206,4,81,35,136,
400 53,56,27,196,51,120,54,72,83,207,5,113,14,207,251,161,4,48,40,20,51,1,100,133,154,26,68,45,134,42,145,195,112,16,26,206,87,98,4,186,31,163,126,24,126,152,18,214,164,142,39,58,207,117,36,83,237,231,122,79,117,116,36,251,37,132,82,231,149,49,37,166,43,
401 70,46,214,107,91,154,145,107,145,80,149,48,141,130,173,24,118,159,162,23,85,9,21,182,54,170,154,69,187,171,32,65,74,74,168,206,155,186,158,52,108,213,26,83,116,65,244,181,106,134,102,31,150,80,30,77,38,27,250,36,120,19,102,150,138,53,41,205,80,187,139,
402 163,131,170,149,86,6,117,85,248,51,51,138,222,167,88,154,184,151,136,94,123,88,163,149,88,202,180,114,177,156,165,100,117,53,54,110,41,249,188,106,197,218,47,100,244,98,65,27,83,59,52,93,109,203,100,212,66,161,75,49,148,156,106,17,168,79,113,8,18,218,
403 162,110,28,154,25,19,114,45,238,173,104,107,122,44,99,26,153,162,101,169,134,29,75,40,186,46,60,182,52,204,139,250,248,224,121,53,99,211,152,159,33,91,118,155,205,24,143,17,147,110,102,70,36,212,185,146,6,13,103,134,21,195,80,245,130,227,129,97,140,136,
404 76,169,243,225,49,51,11,97,136,208,148,2,205,212,255,15,32,9,1,225,207,53,178,198,82,140,172,57,234,6,235,146,54,207,217,237,89,196,19,192,75,200,230,220,44,65,155,112,47,148,173,93,152,255,137,252,108,13,30,92,29,97,107,58,221,114,152,250,65,214,67,
405 205,219,26,27,132,125,209,171,229,12,197,46,90,212,239,106,77,199,151,102,245,240,125,213,197,117,210,192,85,194,218,81,101,98,80,77,232,102,65,61,89,212,84,91,159,32,248,123,214,28,134,91,75,182,155,143,56,76,129,98,195,60,8,115,72,105,173,34,51,43,
406 47,97,221,50,70,24,88,175,89,180,50,165,50,214,175,220,117,123,133,178,140,40,242,50,30,194,78,25,187,176,83,130,60,63,74,25,47,192,146,176,113,241,100,29,41,106,122,86,181,100,20,96,203,40,98,140,237,177,87,207,140,200,24,23,132,40,46,200,152,192,139,
407 126,188,36,227,101,188,34,97,211,74,69,151,224,177,198,101,92,196,171,126,92,146,241,26,94,151,145,192,83,126,188,33,227,77,76,178,95,238,249,238,41,26,98,124,231,178,33,161,50,237,142,115,196,28,138,8,28,111,113,244,34,150,170,100,134,213,108,100,92,
408 209,108,98,141,12,153,86,100,174,185,35,238,156,69,108,51,50,68,247,113,170,189,237,66,126,199,143,119,101,188,135,247,253,248,64,198,135,200,251,241,145,140,143,145,103,158,151,41,133,132,166,251,154,113,14,195,226,158,146,80,22,21,53,175,202,169,246,
409 9,69,244,79,105,106,162,13,139,135,207,79,145,110,101,148,204,245,209,134,229,30,58,159,240,111,100,137,42,186,148,189,84,163,84,64,49,173,182,233,146,36,236,88,182,197,23,24,18,29,58,58,146,213,172,130,3,254,204,130,168,122,39,10,182,58,202,134,47,77,
410 131,40,78,151,166,235,154,43,204,167,40,200,48,18,179,35,190,109,54,146,85,134,124,235,170,2,204,139,109,77,164,156,231,237,129,21,173,149,30,184,121,64,211,195,236,17,230,170,188,160,171,42,235,235,141,30,19,145,213,69,147,171,101,170,134,224,219,6,
411 11,166,94,180,213,19,138,61,204,25,93,46,215,125,179,168,87,122,27,232,143,15,151,190,184,148,115,175,247,230,149,195,96,192,150,170,171,74,129,70,214,46,153,125,6,228,60,14,252,88,71,248,3,202,16,198,118,236,0,223,68,222,60,8,34,36,38,157,231,144,24,
412 118,71,66,98,235,55,112,109,228,109,128,50,101,220,107,26,167,33,53,110,185,10,79,99,221,85,148,93,113,148,119,59,106,94,174,219,184,110,71,5,13,87,211,240,30,82,34,174,26,154,176,23,112,78,194,141,228,156,132,35,15,207,49,236,163,20,221,120,234,248,
413 161,151,1,201,51,3,239,192,238,41,148,207,192,55,48,13,63,143,129,41,84,132,130,92,166,80,57,13,185,187,137,220,41,84,157,150,226,94,41,94,126,13,213,205,62,41,30,8,7,190,71,7,47,181,190,198,47,225,153,84,62,253,12,205,51,168,25,104,10,173,153,198,218,
414 184,55,236,157,66,40,94,30,166,234,58,71,250,238,207,97,42,175,15,123,185,80,165,108,242,26,54,92,190,59,35,236,52,205,160,118,160,4,32,180,145,158,133,201,41,108,10,133,121,38,162,205,179,96,182,220,220,115,29,117,18,226,21,97,162,220,234,24,36,38,199,
415 38,225,221,115,16,174,248,34,30,92,94,38,120,51,94,57,79,176,242,38,51,249,57,166,113,139,153,186,133,223,157,125,31,126,194,29,231,254,183,179,151,57,153,191,136,122,174,187,152,247,40,115,216,192,76,55,82,178,9,7,152,241,131,60,165,248,55,173,31,251,
416 249,111,234,17,12,145,58,130,199,144,71,51,223,196,131,184,132,86,76,226,16,61,181,209,87,2,95,163,29,223,160,3,223,226,40,126,192,211,244,215,137,95,104,225,22,121,183,201,251,131,188,63,201,251,139,188,59,228,253,67,158,168,114,15,2,180,124,131,158,
417 246,179,130,7,49,67,95,143,146,198,74,206,86,158,167,3,244,44,57,167,102,202,120,136,248,54,30,39,173,140,50,191,33,142,22,198,188,15,191,18,211,33,148,227,48,149,228,57,249,39,40,255,36,41,94,82,234,137,86,244,221,17,182,45,191,8,165,22,61,203,221,227,
418 180,232,119,168,106,188,142,7,36,92,134,55,117,133,100,47,5,171,168,230,182,106,45,141,3,39,73,237,37,189,143,156,52,219,181,223,9,164,150,50,213,220,219,25,168,219,164,71,25,42,49,32,233,184,60,246,31,80,75,3,4,10,0,0,8,8,0,22,178,149,71,204,13,94,70,
419 145,2,0,0,249,6,0,0,45,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,87,114,97,112,112,101,114,67,111,110,102,105,103,117,114,97,116,105,111,110,46,99,108,97,115,115,141,147,109,79,19,65,16,199,255,219,231,214,131,62,130,
420 128,162,162,34,237,33,156,160,224,51,9,15,85,49,85,12,21,72,124,67,174,112,150,35,229,142,220,93,53,241,83,105,34,49,241,133,31,192,15,101,156,189,91,160,172,219,196,55,51,179,51,243,159,253,237,92,251,251,207,207,95,0,230,240,40,135,75,152,201,96,54,
421 139,28,140,12,238,113,63,199,205,60,55,247,185,121,192,205,66,26,139,105,60,100,208,246,109,63,240,236,86,55,176,93,135,97,176,113,104,126,50,13,199,10,140,173,205,245,167,12,133,222,250,138,233,91,12,165,168,167,99,58,109,163,73,53,167,45,247,189,51,
422 131,3,134,161,222,84,243,192,156,95,88,108,118,143,24,210,95,236,227,104,18,143,162,222,212,51,219,177,131,37,134,120,181,182,205,144,88,117,247,169,158,111,216,142,245,182,123,212,178,188,247,102,171,19,222,237,238,153,157,109,211,179,249,89,36,19,193,
423 129,237,51,212,26,174,215,54,218,158,185,223,177,140,207,158,121,124,108,121,198,78,228,87,93,231,163,221,238,122,38,103,33,220,124,219,10,214,46,188,188,80,173,201,111,207,251,114,83,177,122,177,135,179,150,165,81,209,211,42,167,227,46,174,169,236,171,
424 154,135,170,255,246,170,70,71,187,146,103,68,217,17,169,183,103,225,35,126,223,82,142,84,31,78,63,71,206,239,61,68,149,104,184,168,136,67,211,237,122,123,214,11,155,239,126,84,181,224,89,254,26,13,21,12,209,94,95,110,46,175,53,234,187,91,205,250,230,
425 238,171,141,55,117,13,131,200,51,12,156,126,33,254,43,241,53,20,144,215,80,226,166,204,141,134,1,13,69,222,56,245,159,95,149,174,58,95,226,70,235,208,218,11,48,1,254,135,0,82,136,241,137,20,197,248,237,161,47,8,95,20,190,36,124,57,244,3,96,156,159,236,
426 48,157,118,40,207,200,143,235,63,192,244,82,236,4,113,189,148,56,65,50,140,83,97,156,254,22,202,47,147,29,70,146,108,5,9,138,114,148,41,96,148,162,49,140,80,86,139,6,81,102,140,60,195,21,92,21,151,24,228,121,45,169,127,71,230,235,217,176,148,16,156,139,
427 147,103,226,113,92,19,226,37,234,142,241,110,125,250,4,153,115,148,92,152,157,32,205,205,112,194,112,212,37,38,240,72,11,223,202,112,29,55,20,32,113,25,100,82,9,50,65,227,21,32,113,25,164,70,26,189,15,8,255,48,252,226,91,74,144,164,12,50,163,4,185,173,
428 6,73,202,32,115,164,153,239,3,82,16,32,147,74,144,172,12,178,160,4,185,163,6,201,202,32,143,73,243,164,15,72,81,128,76,41,65,82,50,200,115,37,72,85,13,146,146,65,150,73,179,210,7,164,36,64,106,74,144,180,12,82,87,130,232,106,144,180,12,178,78,154,215,
429 125,64,202,2,100,58,212,220,253,11,80,75,3,4,10,0,0,8,8,0,22,178,149,71,81,125,29,105,229,4,0,0,25,10,0,0,48,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,83,121,115,116,101,109,80,114,111,112,101,114,116,105,101,115,72,
430 97,110,100,108,101,114,46,99,108,97,115,115,141,86,235,115,19,85,20,255,109,155,100,195,118,203,163,80,74,74,133,8,2,105,250,136,128,21,108,10,42,208,74,165,15,36,80,44,130,186,77,111,147,133,100,55,108,54,180,21,21,159,248,70,253,194,12,142,195,87,62,
431 57,131,195,24,192,206,200,119,255,40,245,119,55,161,205,139,218,102,122,238,189,231,117,207,249,157,115,207,236,223,255,252,249,23,128,253,248,89,195,46,140,168,120,67,67,19,70,52,156,196,168,138,55,53,248,37,243,148,6,21,99,242,48,46,119,19,42,38,85,
432 156,86,241,150,134,86,140,4,113,70,174,9,73,206,74,114,78,131,142,169,32,206,107,120,27,211,210,236,66,11,222,193,197,22,92,194,187,146,188,39,47,59,39,165,239,107,48,48,35,73,82,195,44,132,84,158,107,65,10,105,21,166,138,203,10,2,67,166,101,186,71,21,
433 52,71,186,167,20,248,142,219,179,66,193,134,49,211,18,19,133,236,140,112,206,26,51,25,114,218,198,236,164,145,153,50,28,83,158,203,76,159,155,54,243,10,122,199,108,39,21,75,57,198,108,70,196,230,29,35,151,19,78,44,177,152,119,69,246,180,99,243,224,154,
434 34,127,210,176,40,118,226,10,54,167,132,91,43,85,176,51,50,118,217,184,102,196,76,59,54,98,102,68,188,187,116,44,184,102,38,54,110,228,104,23,52,173,132,235,8,35,171,32,84,165,59,106,229,10,110,73,68,53,133,129,181,47,203,71,39,135,23,146,34,231,154,
435 182,69,89,243,21,177,40,115,241,164,25,195,74,197,104,102,90,41,138,212,172,225,38,211,194,89,118,238,221,236,136,148,88,224,253,158,72,198,96,56,169,66,86,88,110,181,151,201,153,203,34,233,82,222,100,190,160,96,75,133,131,81,87,56,134,107,75,219,245,
436 185,229,116,101,212,100,84,103,172,160,165,172,177,200,132,101,17,106,17,208,114,21,128,109,173,16,175,0,41,51,201,25,46,111,181,26,101,114,186,36,138,75,243,170,130,46,230,158,22,117,160,250,218,161,122,176,234,57,71,233,112,93,194,76,89,134,91,112,
437 232,99,120,245,98,174,217,167,150,176,11,78,82,148,224,234,122,70,75,245,75,83,29,187,65,232,55,173,220,115,210,200,167,121,151,138,43,58,50,96,211,108,105,132,151,130,142,103,180,146,244,104,233,176,145,211,113,85,250,222,220,160,167,20,116,174,4,126,
438 166,96,185,102,86,84,8,59,106,179,58,86,48,51,179,178,201,118,15,59,142,237,132,231,211,194,10,103,108,99,150,178,240,74,117,195,115,140,229,136,14,7,121,73,92,29,5,92,147,1,205,43,216,152,95,134,225,98,127,164,63,218,173,98,65,199,34,62,208,113,29,31,
439 170,248,72,199,199,184,161,226,19,29,159,130,89,124,134,207,117,28,192,23,42,190,212,113,83,114,190,194,215,42,190,209,241,45,190,211,241,61,126,80,113,75,199,143,248,73,65,116,237,15,153,129,212,246,191,2,189,18,75,14,23,179,220,233,28,46,23,88,156,
440 218,174,144,3,71,38,175,96,219,138,168,242,53,75,13,127,50,99,231,165,51,25,142,69,221,190,72,125,179,116,215,177,202,72,199,107,244,203,47,117,53,253,160,107,151,88,108,153,72,189,34,53,162,13,34,168,224,156,77,59,246,188,124,76,94,252,29,207,120,131,
441 124,168,73,59,155,243,240,89,37,165,134,143,55,192,57,150,16,174,132,180,82,141,44,10,91,171,24,114,110,150,103,16,31,125,149,122,197,108,106,171,231,50,190,180,145,159,16,11,116,225,179,188,165,26,142,229,161,119,176,50,250,227,105,195,73,136,171,5,
442 97,37,69,131,28,86,70,105,29,46,227,79,7,176,111,206,148,117,246,167,28,187,192,57,216,30,25,109,88,133,141,181,60,226,146,17,86,202,77,123,13,55,74,154,146,249,239,253,159,250,47,231,81,1,156,55,128,155,217,136,10,14,55,48,95,147,67,60,207,223,46,200,
443 191,38,40,114,62,145,238,225,41,198,85,225,234,143,62,132,242,187,39,222,75,26,240,152,219,177,143,84,47,41,32,130,110,174,235,16,69,15,181,104,172,60,128,15,65,242,254,88,66,211,244,67,52,143,69,139,240,253,2,127,207,253,37,248,201,8,140,47,65,157,166,
444 231,224,68,111,95,17,235,248,175,221,131,62,232,147,155,144,239,201,61,132,39,150,160,79,47,161,149,218,235,219,54,20,177,145,46,54,21,209,214,247,16,155,159,180,109,121,132,246,137,222,34,182,62,70,135,130,65,95,200,247,24,219,20,220,193,9,185,11,145,
445 229,239,11,249,139,232,44,98,251,96,32,20,40,162,235,14,246,132,2,190,34,158,27,84,67,106,17,59,238,162,189,39,164,246,74,173,157,84,124,140,112,51,206,223,251,247,81,207,125,52,19,145,125,232,103,2,253,120,209,91,67,56,132,65,180,80,34,65,152,66,59,
446 233,14,166,184,19,27,16,198,38,234,135,136,220,46,74,247,17,142,30,2,210,207,245,16,122,105,21,69,156,156,243,228,92,34,170,215,233,241,38,63,182,110,113,220,221,198,65,220,197,75,184,79,205,7,56,236,129,58,7,249,97,212,78,203,62,222,22,71,23,237,98,
447 220,221,70,39,45,247,243,211,235,38,61,30,160,101,128,190,6,104,61,192,18,164,113,10,47,211,139,79,130,78,79,175,112,13,226,55,222,30,103,145,66,248,21,67,56,194,226,92,226,247,214,81,188,74,127,175,149,11,88,210,122,157,187,99,94,145,143,115,119,194,
448 219,13,255,7,80,75,3,4,10,0,0,8,8,0,22,178,149,71,165,121,48,186,86,2,0,0,0,5,0,0,31,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,76,111,103,103,101,114,46,99,108,97,115,115,133,147,251,111,210,80,20,199,191,151,199,42,
449 175,49,198,112,76,152,19,157,10,69,87,134,111,49,38,134,100,9,17,31,9,102,38,251,173,148,155,174,75,105,161,20,141,255,138,127,133,26,197,196,31,252,3,252,163,140,231,182,13,18,88,179,144,158,158,115,239,57,159,243,42,127,254,254,250,13,224,16,79,147,
450 72,224,102,2,151,112,43,129,219,168,38,81,131,44,68,93,136,59,66,220,149,112,32,65,145,208,96,136,143,167,6,119,25,216,9,195,218,51,195,50,220,231,12,177,234,73,237,152,94,109,123,192,25,178,93,195,226,175,167,195,62,119,222,169,125,147,78,54,187,182,
451 166,154,199,170,99,8,59,56,140,185,167,198,132,161,212,181,29,93,209,29,117,96,114,229,163,163,142,70,220,81,186,182,174,115,167,197,16,53,109,157,161,80,237,158,169,31,84,197,84,45,93,233,185,142,97,233,45,145,80,26,242,201,68,213,189,12,43,14,84,159,
452 128,89,3,134,198,98,124,251,84,117,122,124,60,229,150,198,91,181,133,139,23,158,183,40,78,36,214,38,99,134,98,88,28,67,51,148,217,233,132,82,227,19,87,117,196,244,58,148,193,43,109,167,218,14,245,102,26,61,109,134,100,207,158,58,26,63,50,196,216,82,254,
453 108,14,68,76,26,25,28,166,145,66,90,66,51,141,123,184,47,225,65,26,15,81,72,163,136,71,66,60,22,226,9,229,9,157,50,195,198,255,252,111,250,103,92,163,2,183,206,43,137,106,174,138,177,47,248,247,62,77,92,62,164,11,123,74,81,5,191,19,195,86,222,210,10,
454 92,90,4,87,135,212,72,254,156,99,218,222,72,88,166,197,160,92,180,159,21,226,225,197,211,95,137,41,206,71,189,116,133,10,125,253,9,208,160,233,217,20,227,164,127,70,156,244,12,214,73,102,201,58,66,132,126,64,82,254,9,38,151,126,32,242,149,172,8,54,72,
455 174,35,74,242,50,98,216,38,74,17,57,207,242,188,137,150,7,60,77,80,105,157,216,66,33,96,190,12,152,89,249,59,34,159,145,252,134,104,125,134,216,50,184,4,9,101,210,175,46,128,179,115,112,150,78,182,61,112,17,59,1,248,85,0,206,249,224,148,15,142,191,151,
456 191,44,161,43,132,190,78,33,251,11,232,220,28,157,195,21,74,238,163,203,1,90,163,46,99,244,206,251,232,140,64,151,119,103,88,91,133,87,9,94,35,72,221,131,203,126,216,28,158,15,224,66,219,165,222,34,158,182,71,90,212,75,120,45,188,151,210,12,210,106,58,
457 133,210,53,40,164,25,210,75,133,58,21,189,220,240,226,246,255,1,80,75,3,4,10,0,0,8,8,0,22,178,149,71,206,114,235,138,21,7,0,0,110,14,0,0,38,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,80,97,116,104,65,115,115,101,109,
458 98,108,101,114,46,99,108,97,115,115,149,86,249,99,27,87,17,254,214,214,21,121,147,56,138,115,216,181,131,98,39,141,44,217,22,73,83,40,73,19,240,213,68,173,175,250,42,78,218,184,107,107,35,111,42,239,186,187,171,196,134,114,19,40,247,125,4,2,148,251,6,
459 23,90,41,196,180,1,126,228,143,2,190,217,93,91,182,42,211,246,7,189,55,239,105,222,204,55,51,223,155,183,255,254,207,253,55,1,156,198,191,226,56,138,194,30,156,197,82,28,6,110,196,41,189,32,67,81,134,229,40,76,217,182,100,177,18,197,139,113,196,81,144,
460 29,91,36,39,6,87,230,82,28,81,220,148,237,91,50,172,70,177,22,199,65,124,36,142,143,202,127,103,241,82,12,31,139,226,227,113,124,2,159,140,225,83,113,124,26,159,145,197,103,69,186,29,197,231,100,254,124,28,199,240,178,12,95,136,226,139,81,124,41,134,
461 47,199,209,133,175,196,240,85,81,254,154,12,95,23,155,223,16,233,155,49,124,75,230,111,199,240,157,24,190,27,199,247,240,125,193,113,39,134,31,196,240,67,57,121,39,138,187,10,14,140,88,139,90,113,200,112,92,219,88,40,185,134,101,42,80,115,166,169,219,
462 131,69,205,113,116,71,193,145,75,147,253,67,35,195,243,51,83,195,147,243,151,199,71,135,231,167,166,39,115,99,151,20,36,70,110,104,55,181,108,81,51,11,217,41,26,48,11,231,21,236,29,180,76,199,213,76,119,86,43,150,116,5,251,38,38,199,159,28,30,156,222,
463 58,181,175,96,107,249,162,62,227,232,246,101,107,89,52,124,51,134,149,125,194,40,234,52,17,121,220,48,13,247,162,130,198,84,247,172,130,208,160,149,167,218,254,17,195,212,199,74,203,11,186,61,173,45,20,117,241,47,224,103,53,219,144,117,176,25,114,151,
464 12,162,238,28,177,236,66,214,119,149,189,101,107,43,43,186,157,157,208,220,165,126,70,181,76,77,155,142,14,164,118,186,22,111,251,11,186,187,51,31,243,169,122,182,158,241,103,70,123,221,40,148,108,77,116,207,119,191,173,215,19,111,73,184,228,108,113,
465 187,21,5,117,205,212,117,168,32,182,160,57,250,152,38,137,140,229,105,214,23,155,108,203,98,24,182,191,138,202,31,92,5,210,21,99,69,193,120,234,173,213,123,23,113,214,169,124,180,100,23,47,107,206,18,37,230,208,151,30,174,227,165,238,225,189,203,186,
466 227,104,5,125,200,40,232,142,171,160,195,87,114,244,197,146,109,184,107,217,209,237,127,83,63,188,176,230,10,59,27,174,14,40,80,24,227,161,109,86,135,87,23,245,149,32,63,17,199,115,193,194,218,250,178,117,83,31,94,117,117,211,241,210,28,50,189,236,40,
467 204,134,146,99,206,130,202,251,57,235,12,144,155,186,155,157,153,204,237,18,178,164,115,198,46,110,145,120,83,155,198,87,88,118,5,113,26,29,96,133,188,236,119,238,158,141,42,251,67,82,80,30,156,178,74,246,162,46,155,100,250,14,14,245,201,9,21,23,112,
468 81,197,121,60,30,197,143,84,12,227,199,42,158,195,53,21,115,120,90,197,83,24,227,69,222,110,89,197,79,240,138,138,5,44,242,74,215,162,24,40,25,197,188,110,171,248,169,232,252,12,63,103,70,178,42,126,33,171,11,248,165,138,95,137,244,107,188,162,224,204,
469 187,103,184,216,248,77,20,191,85,49,129,167,89,186,147,78,246,36,75,215,92,69,49,190,112,67,95,116,163,248,157,138,223,227,15,188,248,163,67,143,70,241,71,21,127,194,159,85,172,227,85,21,127,193,95,21,180,120,71,150,233,46,59,96,20,114,166,171,23,4,245,
470 107,162,112,1,175,11,226,178,130,131,117,152,160,160,173,186,59,89,50,93,99,89,223,246,103,251,160,85,42,230,147,166,229,38,151,72,220,164,97,174,148,220,164,79,157,62,177,93,97,70,40,220,195,223,84,220,199,134,138,191,75,70,238,139,187,230,218,6,169,
471 226,13,188,73,114,4,157,143,23,179,196,102,215,151,55,236,40,30,168,248,135,20,232,2,254,73,110,10,51,206,37,73,189,164,225,36,75,230,11,166,117,139,96,146,111,151,98,5,167,222,225,77,37,186,84,119,45,53,15,214,180,184,1,143,112,45,169,186,20,175,85,
472 158,240,104,29,17,87,102,94,65,239,59,186,224,1,191,164,93,185,214,84,112,33,187,106,186,111,29,67,179,254,5,98,195,242,49,6,11,31,67,127,221,190,188,179,199,215,243,176,189,219,171,219,83,179,131,146,155,40,35,215,45,155,132,83,240,129,58,145,94,29,
473 169,229,112,253,62,241,208,255,105,102,126,227,201,121,143,230,34,99,60,189,123,70,119,237,134,49,233,50,126,67,12,165,186,165,37,70,74,43,121,205,165,185,112,234,234,128,68,26,201,7,222,34,169,156,191,115,40,149,171,11,54,93,239,101,168,238,76,47,217,
474 214,45,121,107,189,4,54,241,51,129,224,243,250,234,248,117,49,89,7,59,243,186,199,41,45,108,246,225,195,169,92,125,191,242,106,4,236,210,95,44,105,69,167,198,222,102,130,175,236,172,211,154,227,234,203,126,18,39,108,139,20,112,215,118,1,50,139,227,252,
475 222,58,202,111,187,70,180,226,253,120,12,172,42,87,13,200,112,125,110,219,186,151,63,118,86,202,49,238,177,209,114,252,32,87,143,112,86,56,135,211,21,40,175,122,170,31,226,24,231,12,116,32,196,239,179,126,74,170,175,132,1,12,114,22,3,67,129,129,39,168,
476 41,186,113,49,144,206,188,142,134,170,149,125,132,5,36,105,229,56,246,160,211,179,116,216,215,14,44,137,36,176,4,196,48,109,249,54,255,75,79,81,206,183,211,153,50,26,43,8,141,166,123,42,8,143,165,123,51,21,68,206,133,54,16,157,147,191,98,21,236,217,64,
477 124,174,130,38,174,212,50,246,38,246,113,104,13,113,40,99,127,5,205,231,194,155,186,7,118,232,38,118,232,122,82,79,245,80,100,3,7,231,210,173,225,214,72,5,45,235,91,225,180,33,194,49,197,80,186,177,31,105,28,97,150,7,209,131,85,102,87,66,187,236,131,
478 222,10,237,54,46,113,143,92,193,75,200,177,22,13,60,117,19,79,82,106,228,89,147,79,218,99,76,205,32,245,71,152,130,48,237,236,197,40,165,8,53,249,220,5,201,184,193,127,66,156,143,165,137,176,177,140,67,21,28,30,75,28,9,191,129,163,115,141,153,169,185,
479 80,239,212,61,180,174,215,148,238,52,75,118,198,67,149,246,79,111,161,58,230,33,80,60,73,240,53,80,51,129,113,15,85,131,188,103,129,223,187,60,39,39,251,18,109,247,240,208,40,147,214,62,214,211,91,70,199,6,142,205,133,136,229,61,21,36,155,79,148,113,
480 124,125,116,3,93,115,137,19,172,209,201,7,158,229,227,44,118,231,142,172,245,115,28,64,19,49,52,147,58,157,44,118,23,203,45,248,206,50,190,8,218,49,137,41,158,104,98,102,166,49,67,44,93,148,103,241,140,23,77,223,22,250,62,124,216,67,223,32,95,5,1,210,
481 107,212,22,162,181,100,18,15,151,113,234,66,251,93,132,51,235,153,198,246,50,82,213,188,36,188,104,158,98,141,70,104,121,148,185,30,247,252,39,253,179,91,30,90,112,197,243,16,165,198,85,60,235,209,155,159,33,129,47,155,218,98,167,141,249,232,30,237,17,
482 230,156,186,216,65,135,61,235,61,29,161,231,203,72,87,61,30,102,100,96,84,97,70,164,50,166,102,198,147,32,254,106,85,218,182,188,182,97,30,207,211,71,24,135,160,121,92,81,121,125,196,191,84,133,223,56,129,255,151,121,78,50,50,148,73,16,65,207,29,196,
483 210,175,161,97,61,147,232,245,86,205,66,247,68,223,61,100,43,120,239,186,148,37,224,124,226,52,233,157,17,174,159,217,228,249,35,15,106,144,62,75,166,62,71,175,215,88,131,121,156,32,142,234,133,29,218,66,58,132,124,80,1,221,59,127,29,239,243,88,199,135,
484 149,181,124,20,202,255,0,80,75,3,4,10,0,0,8,8,0,22,178,149,71,56,222,182,221,27,19,0,0,236,41,0,0,32,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,73,110,115,116,97,108,108,46,99,108,97,115,115,157,89,11,124,20,229,181,
485 63,39,187,217,217,44,195,43,16,194,202,107,68,34,121,135,55,26,16,13,73,144,216,16,144,240,48,32,234,100,119,146,140,236,35,238,206,146,68,173,90,139,74,213,190,80,91,209,86,172,143,98,45,85,81,73,208,40,216,106,125,182,246,161,181,181,181,213,86,107,
486 111,235,237,189,189,247,246,222,219,251,42,247,127,102,118,55,155,100,16,226,47,191,253,102,230,123,156,231,255,156,239,124,95,94,253,251,211,71,137,104,33,127,16,160,62,206,151,198,39,141,34,141,95,154,130,2,52,1,105,198,201,167,26,160,50,30,175,240,
487 4,15,241,155,207,5,40,192,19,101,108,146,52,147,3,92,200,83,164,153,26,224,34,158,22,160,59,184,88,154,233,10,7,3,52,149,103,200,252,153,10,207,242,243,236,0,207,97,77,225,211,3,116,26,207,13,240,25,60,79,122,74,164,57,83,225,249,1,154,195,227,3,92,202,
488 101,1,170,227,114,249,172,144,166,82,154,170,113,92,205,53,10,47,240,243,66,133,23,201,140,197,1,154,207,75,164,127,169,159,151,201,115,185,136,123,150,140,157,29,160,98,174,245,243,10,121,174,44,224,115,120,85,128,207,229,243,2,120,171,83,120,117,128,
489 150,131,23,198,234,165,105,144,166,81,40,172,17,10,231,251,121,173,244,52,41,124,129,194,159,242,115,179,159,215,73,71,75,128,206,227,245,210,108,8,240,133,188,81,225,214,0,173,229,241,126,222,36,207,205,210,84,5,120,11,111,85,248,34,133,219,100,210,
490 182,0,173,231,237,1,106,225,139,21,222,17,160,86,225,219,194,151,248,249,82,249,184,76,154,42,133,245,0,181,113,187,194,161,0,109,231,118,63,135,253,108,248,185,67,228,237,44,224,46,54,69,171,203,253,188,83,158,17,17,38,170,112,44,64,29,176,36,154,248,
491 56,238,230,43,164,73,40,156,12,208,78,110,148,198,146,137,41,133,119,41,220,19,160,110,153,27,231,94,89,208,39,138,94,25,224,171,248,106,249,188,90,222,62,45,62,185,90,225,107,152,130,13,141,107,234,54,55,111,186,180,161,169,117,211,198,166,213,155,55,
492 53,173,111,185,116,67,221,166,181,76,133,205,151,235,187,244,154,136,30,235,172,105,181,18,102,172,115,5,211,248,250,120,44,105,233,49,107,139,30,73,65,242,107,153,124,145,120,103,167,145,96,154,209,28,79,116,214,116,38,244,112,196,168,233,73,232,221,
493 221,70,162,166,217,30,196,74,127,56,222,19,139,196,245,48,211,108,183,137,77,13,233,113,225,210,173,91,93,117,201,164,17,109,143,8,229,185,110,11,54,228,206,193,162,211,140,222,80,36,149,52,119,25,107,204,136,81,23,10,25,201,228,58,61,166,219,178,213,
494 184,81,104,60,225,2,144,243,173,52,99,166,181,138,233,146,210,143,209,235,227,53,57,185,216,101,91,152,188,245,241,176,193,52,177,217,140,25,45,169,104,187,145,216,164,99,80,60,16,15,233,145,45,122,194,148,239,116,167,215,234,50,147,76,51,93,57,139,111,
495 34,17,72,31,8,37,12,221,50,26,204,164,197,116,182,171,6,91,157,39,28,218,97,118,166,18,186,101,198,99,43,202,28,167,155,241,26,177,137,184,34,148,59,206,84,118,202,164,160,81,24,236,19,102,123,74,190,55,39,34,76,19,28,242,49,195,170,217,188,177,9,83,
496 138,114,167,180,118,233,139,150,46,107,77,69,153,38,71,68,245,134,156,65,133,175,67,119,243,200,110,38,181,41,22,3,239,136,14,163,194,48,75,78,106,244,121,163,136,64,16,69,4,105,48,19,89,25,135,76,160,218,178,108,51,187,229,27,166,5,108,140,110,89,150,
497 84,248,51,240,18,6,67,169,8,172,157,35,255,220,210,225,84,202,220,130,201,211,101,244,50,177,137,95,19,28,219,97,147,207,139,34,66,102,57,211,147,70,40,149,48,173,190,154,117,128,38,112,217,96,118,26,73,75,86,118,8,6,138,178,60,154,98,221,41,11,116,13,
498 61,138,81,134,85,124,237,169,142,14,65,126,222,246,213,8,190,246,62,128,65,183,116,166,2,48,117,36,96,154,62,74,170,213,246,42,208,152,217,105,88,117,177,240,22,35,97,118,244,229,218,106,99,60,14,72,45,24,161,223,104,245,70,33,169,56,215,213,13,70,50,
499 148,48,187,29,15,122,195,102,2,234,76,114,86,96,60,82,211,108,218,122,78,27,30,1,125,221,153,40,208,70,204,93,57,156,219,42,89,187,203,145,61,29,140,245,93,70,104,103,82,124,179,180,116,180,180,39,213,6,113,170,68,29,47,192,134,122,200,74,233,17,219,
500 211,5,201,120,42,17,50,108,120,143,51,122,187,141,144,101,132,237,17,127,196,129,20,84,211,220,225,144,171,170,87,79,36,230,33,102,182,143,180,155,55,98,196,48,144,103,162,41,104,53,59,99,186,149,74,24,163,93,48,146,166,139,73,166,39,13,171,177,23,160,
501 178,196,138,27,140,68,212,76,38,5,200,136,172,145,212,182,8,203,100,22,35,232,119,176,97,132,55,26,122,216,73,145,73,43,28,79,89,89,32,218,172,215,196,19,81,221,178,236,9,222,8,82,26,232,116,183,35,61,231,24,117,67,34,46,201,118,117,202,140,56,148,176,
502 161,209,148,209,19,100,196,24,134,243,245,217,224,91,145,5,129,189,162,41,6,150,137,84,55,140,159,59,37,224,36,130,181,241,40,232,140,119,62,234,227,209,168,30,67,148,169,88,17,79,172,203,122,213,76,110,53,99,216,166,160,181,167,180,108,27,20,140,39,
503 91,116,89,89,16,54,34,134,164,211,132,139,165,48,81,73,166,236,237,3,242,226,203,31,234,130,98,9,3,208,158,178,221,53,240,195,66,40,63,21,187,210,132,226,115,92,99,41,215,17,249,70,204,74,244,101,125,97,219,25,75,107,144,147,26,101,68,146,20,28,145,205,
504 1,18,56,25,34,235,115,250,133,181,205,210,27,54,100,99,80,132,174,41,89,179,56,135,114,99,44,21,53,178,73,92,185,50,147,248,138,71,115,79,67,116,98,40,222,221,151,147,131,152,170,75,93,115,147,187,84,14,214,96,45,143,141,38,79,68,44,23,208,109,139,206,
505 91,176,96,1,83,179,235,14,150,217,238,198,156,138,242,122,23,72,179,80,154,69,67,172,22,10,43,247,205,50,195,202,117,251,203,214,56,25,66,139,132,208,202,177,19,202,173,129,50,180,22,159,156,214,73,115,75,134,214,18,161,85,53,22,90,219,134,22,47,149,
506 197,23,158,194,226,177,230,213,188,222,197,67,92,150,9,151,21,99,118,119,110,180,100,72,45,31,179,182,178,184,213,78,231,14,226,213,244,188,106,153,166,210,243,244,130,74,191,161,119,85,58,76,253,42,253,156,126,161,210,32,61,163,210,117,244,25,149,174,
507 161,107,85,122,132,30,85,233,70,190,30,140,199,84,112,202,162,207,170,180,155,110,80,233,122,250,172,194,187,85,190,129,111,84,249,38,222,163,240,231,228,227,102,149,111,225,91,85,254,60,223,138,237,249,196,74,205,3,172,73,232,125,65,229,47,242,151,160,
508 69,174,146,8,232,214,181,117,85,168,83,20,254,178,202,123,249,54,4,118,238,132,156,112,5,17,122,65,225,219,85,190,131,191,162,242,87,249,78,149,247,241,93,200,46,238,101,131,194,119,171,252,53,254,186,202,247,240,126,149,239,229,111,72,115,159,202,247,
509 139,18,15,168,252,32,253,12,27,193,208,226,141,169,152,101,70,141,108,194,102,186,236,124,91,39,45,183,86,208,230,151,36,231,107,225,184,145,212,98,113,75,67,65,106,233,102,76,211,99,125,152,150,192,126,27,151,28,86,173,53,166,55,95,205,138,107,29,72,
510 228,154,209,139,125,58,210,167,45,204,206,235,171,70,153,49,196,127,125,251,229,232,86,249,155,124,64,12,246,144,202,223,226,253,76,59,78,40,68,154,119,18,44,226,90,244,147,73,160,242,195,252,109,149,238,33,152,232,32,127,71,229,71,96,21,238,178,43,45,
511 51,100,167,93,45,222,161,185,201,208,161,195,65,225,211,75,98,37,177,54,192,212,117,78,84,239,211,186,244,93,134,214,110,24,49,205,210,163,221,178,103,107,61,166,213,85,93,18,179,75,244,68,84,179,186,116,11,141,161,205,119,45,192,231,107,221,137,56,22,
512 90,125,26,44,221,39,188,28,176,85,165,193,86,157,30,135,218,154,212,173,154,153,132,113,18,162,35,28,19,150,37,154,158,128,104,233,132,6,140,216,236,210,203,181,142,68,60,170,233,154,149,72,37,197,94,78,13,85,45,138,105,185,197,166,134,178,170,86,43,
513 73,150,196,50,153,81,147,138,80,134,156,238,172,197,67,233,242,174,214,118,20,200,104,117,118,141,54,106,64,229,71,5,141,143,169,124,136,31,87,248,9,149,159,20,199,31,230,126,236,214,67,153,179,46,145,208,251,36,125,170,60,64,63,83,249,8,63,165,242,211,
514 242,54,8,159,209,155,130,228,64,187,25,75,7,161,192,231,25,108,208,39,170,113,134,193,46,83,126,231,135,186,162,113,212,33,158,229,75,151,170,252,44,239,17,42,71,85,62,198,207,41,252,93,149,191,39,96,44,30,29,107,105,138,90,171,97,1,97,153,114,78,235,
515 30,170,231,180,142,120,162,86,147,232,123,94,225,23,84,254,62,63,148,137,218,81,133,28,83,208,101,171,118,198,84,126,145,95,18,169,94,150,230,149,97,22,202,22,122,42,191,202,123,80,83,136,63,36,150,94,203,76,27,94,176,169,252,3,153,54,251,227,107,54,
516 166,242,250,120,42,18,182,67,61,121,18,5,177,91,111,136,24,122,82,112,166,201,185,88,98,18,78,71,196,153,29,54,6,123,244,152,37,209,152,194,28,193,95,58,98,54,55,33,17,40,241,100,117,12,229,157,202,63,228,215,21,254,145,202,63,230,159,168,252,83,126,
517 3,99,61,78,37,168,242,155,12,159,191,197,63,71,25,234,90,254,168,244,33,255,66,225,183,85,254,165,160,227,87,252,78,198,210,163,202,52,149,127,13,31,243,111,4,59,51,71,58,99,253,176,250,109,122,110,74,206,29,18,63,188,43,110,121,79,165,63,209,71,10,255,
518 86,229,223,241,245,42,191,207,119,34,183,158,120,91,64,249,155,233,145,144,71,205,183,104,236,7,229,140,103,109,247,229,248,12,229,178,148,169,165,77,77,242,156,127,138,87,4,40,28,113,202,28,78,127,82,105,217,200,59,130,233,35,38,229,28,179,167,150,186,
519 30,172,181,147,105,198,116,233,88,238,68,62,209,141,66,225,8,177,237,195,67,86,189,161,98,52,128,121,217,203,133,221,159,184,242,25,110,181,83,86,206,189,36,243,233,233,227,76,157,235,217,196,70,54,246,194,80,10,25,63,102,213,212,67,56,137,208,97,215,
520 28,206,230,10,5,103,124,204,93,6,206,204,80,223,214,47,22,130,254,11,93,206,230,101,39,185,12,153,226,146,190,144,142,240,8,11,38,183,175,46,107,130,70,169,238,176,110,73,249,131,14,7,166,190,112,90,4,111,105,153,92,146,76,30,158,153,236,123,195,113,
521 86,124,237,208,125,73,81,105,147,43,222,124,56,177,116,90,93,118,28,8,47,177,179,28,48,103,148,214,143,158,159,189,98,169,60,177,174,110,211,253,86,60,35,199,132,225,21,62,148,50,147,141,209,110,11,71,68,95,135,157,150,237,115,204,40,234,219,71,187,199,
522 85,159,34,55,201,228,166,50,105,94,9,19,122,224,178,81,198,200,186,219,103,92,129,20,156,28,65,37,195,78,78,213,206,97,218,137,254,186,246,100,60,146,178,12,137,167,225,155,100,31,42,3,248,209,131,45,34,247,10,96,3,164,25,58,206,78,113,233,134,57,186,
523 229,43,34,87,75,70,175,105,123,216,241,56,190,236,212,87,32,87,51,2,104,251,230,163,108,212,157,203,56,51,217,144,41,216,32,130,30,134,51,207,56,249,149,23,88,76,130,78,245,122,44,30,67,41,23,113,148,154,86,234,114,9,96,231,75,160,62,97,91,50,215,144,
524 67,119,31,147,71,117,202,198,164,155,22,182,94,251,100,115,74,240,201,220,177,4,79,120,114,149,35,119,92,96,101,135,98,78,12,21,231,100,171,225,87,140,211,221,207,247,162,213,148,161,161,244,77,145,244,250,37,28,155,237,235,160,149,99,66,230,168,75,37,
525 201,151,217,59,27,201,30,27,210,165,42,211,153,167,100,146,21,25,156,57,1,36,169,91,46,169,54,183,102,255,231,145,51,176,194,206,1,205,241,30,36,78,20,26,67,60,114,231,184,242,80,80,65,24,189,235,59,78,16,78,77,246,245,88,210,113,191,235,45,81,176,52,
526 215,4,195,111,101,138,92,7,16,82,93,122,114,93,60,97,52,70,140,40,50,51,0,51,46,102,244,90,233,207,145,27,102,54,102,21,152,209,185,233,242,69,119,58,183,177,193,33,55,142,186,172,169,201,181,193,176,139,168,19,225,101,170,27,45,169,128,35,113,49,106,
527 126,15,50,187,65,167,83,31,149,17,81,62,5,233,74,186,138,152,174,198,87,30,125,154,10,229,120,141,247,66,57,107,219,79,156,146,237,39,142,204,120,78,193,220,27,233,38,180,123,240,117,29,40,120,241,156,87,62,64,5,229,131,20,104,43,28,55,153,94,30,32,245,
528 48,141,47,175,56,76,74,121,229,97,242,149,87,29,166,9,135,108,14,159,67,123,26,249,208,206,197,74,141,166,210,25,144,97,30,205,166,18,188,157,73,55,99,164,220,161,73,183,208,173,68,246,155,200,196,246,155,72,149,103,191,137,92,30,244,126,158,190,128,
529 30,145,230,8,5,72,193,115,85,69,63,77,92,135,102,82,75,249,147,52,1,47,147,107,189,65,111,63,21,214,230,203,99,74,173,15,253,227,131,190,65,154,218,86,30,244,5,243,43,43,170,6,168,168,159,166,61,71,197,143,141,144,179,12,58,150,131,114,37,100,173,162,
530 25,84,13,201,23,216,114,174,117,184,101,229,92,69,95,164,47,65,162,124,58,155,190,76,123,65,37,64,75,232,54,216,215,131,181,229,116,59,221,9,205,102,64,207,125,116,23,102,205,165,153,116,55,222,124,244,53,172,246,98,229,215,177,6,231,85,71,31,110,66,
531 95,0,35,55,20,78,63,66,193,117,131,116,90,91,197,0,205,104,241,44,243,78,158,68,207,248,107,243,139,188,121,251,105,102,85,48,191,159,102,46,243,22,121,239,57,254,151,202,96,190,167,8,74,206,58,112,252,131,202,126,154,93,11,45,231,180,13,144,86,171,120,
532 150,249,139,252,65,223,209,251,104,193,100,58,30,244,21,249,23,95,115,132,78,175,45,8,22,244,211,92,239,189,52,46,168,76,90,208,79,103,108,13,42,210,53,111,235,110,63,31,56,254,122,80,233,167,146,33,179,172,161,201,104,183,66,236,139,104,34,181,1,26,
533 219,224,194,237,52,135,46,166,249,180,3,134,186,132,206,34,29,230,8,209,249,20,166,141,100,208,101,212,65,38,117,210,21,104,251,208,119,45,69,108,19,118,64,193,203,176,250,94,24,169,128,46,160,165,244,13,186,143,252,162,116,214,172,55,208,253,48,18,34,
534 6,171,30,160,7,33,197,68,218,69,223,164,3,48,107,33,37,233,33,172,240,130,70,132,190,69,15,195,172,171,192,245,219,120,243,225,185,138,14,210,119,224,166,92,3,63,66,143,166,1,243,12,70,4,106,45,229,176,107,126,75,213,83,116,38,195,55,211,7,105,126,91,
535 97,169,247,89,42,107,243,84,182,30,33,160,187,226,24,70,43,145,74,246,167,135,171,70,14,123,158,162,234,60,74,3,200,147,3,160,43,208,38,32,115,18,160,77,1,62,187,168,158,122,115,128,222,146,213,180,197,6,6,219,111,143,193,34,121,88,185,150,14,209,227,
536 160,247,4,201,101,19,167,123,158,68,79,174,78,135,169,63,173,211,179,176,128,112,109,172,122,145,234,203,43,7,168,166,214,91,37,168,95,112,23,45,6,32,22,110,45,92,164,216,162,87,180,182,121,209,177,184,181,45,191,170,181,205,23,244,138,42,181,249,143,
537 211,18,193,211,82,239,17,90,54,20,179,115,109,167,92,13,134,215,208,56,56,98,42,34,49,136,88,60,11,162,159,135,24,108,0,242,111,182,99,192,135,62,149,6,32,126,62,102,158,141,168,188,202,86,179,49,171,102,35,61,101,231,28,121,19,252,231,217,111,79,219,
538 113,146,171,212,32,28,228,40,245,19,60,37,214,234,6,105,57,176,124,150,4,247,217,251,104,49,30,181,45,85,71,151,121,61,203,242,139,16,13,247,145,86,85,148,191,168,214,23,244,245,211,138,125,164,86,6,125,79,209,202,60,218,186,59,31,72,126,183,114,200,
539 55,179,109,130,183,65,173,219,225,155,59,168,148,190,130,176,254,42,4,190,131,206,133,88,153,0,47,5,218,239,183,131,116,42,85,192,186,71,177,126,58,112,126,204,70,221,12,248,244,57,188,229,139,112,89,5,235,210,126,244,131,154,120,47,47,235,61,167,231,
540 73,244,124,215,54,237,247,240,123,158,94,112,210,41,191,3,46,5,232,255,16,136,58,103,31,121,15,13,82,113,91,69,225,170,1,58,119,29,183,12,210,121,109,190,103,169,174,205,83,184,26,174,43,172,135,227,224,191,134,214,1,106,116,242,219,26,228,55,184,238,
541 252,187,232,12,36,56,101,144,214,194,88,77,133,23,244,211,167,196,209,120,244,83,115,63,173,59,64,107,6,169,165,109,144,214,183,201,252,13,3,116,225,0,109,148,76,209,138,5,155,106,21,49,223,230,182,90,255,139,84,28,84,10,183,56,80,15,250,91,251,105,235,
542 86,228,21,73,8,23,181,28,160,105,14,219,109,120,29,231,188,94,220,2,216,149,229,50,223,49,146,185,12,22,94,130,151,67,208,189,8,241,252,16,114,136,60,159,64,14,113,192,118,9,21,163,221,15,235,223,11,139,221,135,77,231,126,123,198,98,68,125,45,226,126,
543 53,214,180,35,194,123,16,231,215,33,190,111,65,76,239,71,196,60,136,40,120,8,246,126,24,180,30,195,251,19,176,244,97,252,13,2,142,199,0,196,119,0,188,223,227,75,124,219,13,112,246,32,26,191,79,47,194,234,215,97,251,121,137,94,6,199,61,52,139,94,1,20,
544 253,224,150,160,87,233,53,120,185,150,118,210,15,232,135,240,178,100,149,215,233,71,232,59,108,191,253,216,134,246,135,89,207,127,8,168,138,231,167,208,27,244,83,27,218,69,232,121,195,134,118,158,92,102,165,55,206,109,248,18,216,159,86,120,233,17,186,
545 236,113,210,251,169,189,185,162,48,212,79,225,188,7,40,223,123,208,115,48,27,122,133,54,143,163,192,207,49,154,6,180,77,7,106,68,131,105,14,133,52,111,149,38,208,91,118,88,229,201,133,121,154,207,131,144,82,176,185,188,194,142,135,106,60,140,117,158,
546 85,179,42,177,9,156,94,110,195,171,114,214,34,224,107,128,188,178,129,96,91,242,28,220,237,145,88,193,212,133,67,66,56,241,255,34,12,244,18,88,189,140,96,120,5,38,123,21,41,236,53,36,252,151,105,17,212,20,161,150,128,93,9,102,189,77,191,132,216,19,16,
547 30,146,208,61,88,115,38,253,10,14,16,145,151,103,205,181,156,126,109,155,43,79,110,251,211,187,222,69,224,36,65,176,119,144,58,100,191,235,116,144,213,37,233,217,148,244,108,226,229,114,134,33,118,58,112,143,236,163,98,209,164,82,62,162,208,165,159,98,
548 64,233,27,131,20,7,196,187,219,134,141,13,208,21,3,148,64,1,16,244,74,87,50,232,27,32,75,224,158,58,64,227,29,224,167,130,202,177,3,199,111,23,166,187,164,211,111,191,5,253,199,14,65,163,29,116,57,96,65,248,89,246,51,128,92,120,19,158,55,193,74,55,141,
549 216,34,223,194,232,219,52,9,122,7,161,249,60,232,88,9,45,207,161,247,144,49,223,7,165,223,131,214,31,40,78,255,0,74,127,64,110,253,35,104,125,132,58,235,31,65,233,35,84,16,127,206,38,161,121,216,106,223,163,223,194,182,59,176,205,254,14,171,37,197,239,
550 205,218,113,47,125,144,222,56,246,130,170,192,110,18,234,163,15,65,213,3,25,246,128,195,31,33,123,38,183,182,97,252,79,224,224,228,214,91,208,39,16,41,153,236,69,77,209,82,81,133,90,162,109,153,247,110,154,80,89,101,87,18,61,7,142,255,25,96,232,69,20,
551 167,70,22,113,127,65,251,111,80,246,175,40,101,254,19,229,220,223,32,234,127,101,129,0,162,89,17,75,160,214,1,91,196,18,40,246,190,189,183,205,177,119,108,15,96,82,76,255,100,231,211,172,136,147,252,244,207,160,238,136,216,136,57,30,60,149,242,10,108,
552 104,254,161,82,196,103,19,156,97,51,212,156,41,244,47,105,134,10,253,107,218,38,10,68,148,205,52,187,183,128,248,95,233,223,211,33,82,131,167,204,202,151,196,228,78,90,117,38,56,164,177,248,63,160,235,232,197,190,83,91,252,55,24,200,89,92,155,78,2,62,
553 187,252,112,95,237,4,185,47,171,149,207,209,10,116,254,155,254,199,141,142,247,224,24,233,252,47,253,95,218,204,27,96,29,73,53,126,152,25,245,176,231,144,43,37,167,104,241,103,41,249,65,201,217,205,253,176,179,179,155,251,233,239,195,119,115,240,57,206,
554 228,234,206,60,119,54,31,239,206,187,114,220,9,172,48,115,158,155,49,216,157,246,9,140,65,121,44,60,243,216,139,58,64,242,110,30,221,193,69,168,11,112,172,178,231,209,255,3,80,75,3,4,10,0,0,8,8,0,22,178,149,71,221,192,76,137,196,4,0,0,149,9,0,0,45,0,
555 0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,66,111,111,116,115,116,114,97,112,77,97,105,110,83,116,97,114,116,101,114,46,99,108,97,115,115,141,86,89,91,219,86,16,61,194,178,5,170,18,192,108,49,4,112,2,20,155,197,78,83,74,
556 27,160,52,9,133,176,24,146,96,150,58,164,139,176,47,70,68,150,168,44,19,232,150,46,105,251,27,250,218,151,190,54,47,134,175,124,77,223,251,47,250,212,127,209,118,174,100,131,55,242,213,15,119,153,153,59,115,206,204,189,99,253,249,207,111,47,1,188,129,
557 31,101,248,113,87,70,47,102,36,188,47,97,86,70,43,230,100,220,195,188,140,5,44,242,97,73,134,7,49,25,203,88,225,195,253,122,60,224,146,135,245,88,149,16,151,48,36,163,17,107,18,214,101,108,96,83,194,7,245,72,112,55,143,248,176,197,135,199,245,248,80,
558 198,71,248,88,194,39,245,80,249,114,91,70,23,146,18,82,2,124,83,154,161,217,211,2,60,161,240,134,0,113,198,76,49,1,141,49,205,96,43,185,204,54,179,214,212,109,157,36,254,152,153,84,245,13,213,210,248,190,32,20,237,93,45,43,32,28,51,173,116,52,109,169,
559 41,157,69,159,90,234,254,62,179,162,119,77,211,206,218,180,89,86,53,35,110,171,150,205,172,73,1,222,44,95,10,232,15,109,197,246,212,3,53,170,171,70,58,26,183,45,205,72,79,186,18,205,140,206,105,58,155,116,240,168,86,154,34,180,212,48,22,32,187,33,231,
560 205,12,97,185,92,126,88,64,131,171,93,84,45,66,159,52,13,155,29,218,51,186,154,205,198,76,53,197,72,24,112,79,24,204,142,174,175,198,74,84,252,112,134,80,59,34,1,205,37,177,29,17,15,205,245,203,204,222,53,41,135,157,37,6,22,219,209,89,210,142,186,58,
561 178,108,47,79,220,209,126,49,121,173,149,110,167,134,166,185,231,217,195,36,219,183,53,211,200,74,224,165,216,209,140,84,76,205,25,201,93,102,57,100,122,66,21,121,170,100,46,238,104,78,117,84,203,234,39,7,91,85,122,157,25,164,16,22,4,212,105,180,144,
562 227,102,206,74,178,57,231,84,160,86,225,34,220,131,130,32,174,41,120,7,183,4,116,92,144,58,1,74,169,70,193,14,210,18,118,21,104,216,147,240,68,129,142,140,2,131,15,65,152,18,246,21,124,10,75,65,22,116,39,122,232,26,69,220,170,69,244,2,227,200,61,103,
563 207,177,40,200,225,128,208,243,212,19,173,138,236,41,120,138,67,1,77,231,226,251,219,123,84,9,9,71,10,62,195,231,69,100,133,52,208,133,215,181,109,142,226,11,5,95,226,43,5,207,240,53,241,114,195,143,22,195,143,70,134,30,19,121,75,194,55,10,190,197,119,
564 84,236,243,0,171,57,195,214,50,236,172,96,2,102,103,204,156,158,10,26,166,29,212,169,236,54,11,218,187,44,232,82,8,22,125,6,23,239,172,6,53,163,40,78,105,148,109,109,59,199,61,4,7,7,178,131,17,5,207,241,61,135,246,131,128,193,255,249,180,232,141,156,
565 3,43,65,228,181,205,245,85,42,116,83,40,92,122,221,23,38,203,43,181,80,176,140,85,89,198,200,178,173,34,215,197,90,183,166,153,29,63,202,218,44,83,254,176,138,30,42,79,56,175,146,217,15,84,139,25,84,239,112,177,7,20,35,93,112,138,55,130,146,186,174,237,
566 90,76,165,103,119,41,153,179,184,163,226,190,181,44,172,43,229,224,179,204,158,169,241,252,59,67,175,8,215,160,211,186,240,254,7,66,213,205,167,138,96,129,90,177,37,220,174,113,102,171,234,76,248,85,141,227,202,69,58,106,218,154,113,96,62,161,59,124,
567 171,52,140,123,223,203,194,20,68,225,106,145,128,190,138,54,82,131,164,147,8,186,158,92,207,27,97,40,92,213,75,36,34,189,162,242,6,92,158,254,179,38,221,84,41,163,51,25,213,166,135,64,30,219,106,165,246,17,17,220,49,45,50,170,32,88,35,143,53,8,158,69,
568 174,233,124,3,215,232,255,214,15,254,243,64,224,45,141,198,235,180,139,210,44,208,236,29,58,134,240,130,22,117,232,163,209,231,8,59,208,79,163,226,26,96,0,175,211,76,143,19,33,178,226,135,255,38,59,137,230,205,161,145,99,212,173,156,194,147,16,127,135,
569 152,240,140,230,225,205,195,23,63,129,148,71,253,49,26,38,196,19,200,1,49,143,215,2,162,95,201,227,210,132,55,224,245,95,38,235,198,132,167,5,77,241,60,154,39,124,1,159,64,18,127,194,51,76,251,150,205,23,14,90,14,167,199,9,19,160,112,157,180,239,194,
570 48,174,98,12,221,244,205,208,67,31,0,189,14,204,121,23,74,1,38,95,133,49,228,64,223,36,251,17,130,236,195,67,140,210,138,251,28,67,132,184,139,52,247,225,6,125,149,120,201,87,19,110,226,77,178,26,43,144,118,117,111,145,110,156,36,34,73,222,38,47,244,
571 79,80,200,221,49,69,244,209,188,116,138,214,196,176,191,237,24,237,121,116,44,143,188,156,246,140,139,109,98,247,207,232,29,105,19,111,114,170,121,92,241,7,242,232,252,9,190,128,247,215,231,162,240,203,191,127,157,162,43,225,191,90,36,124,130,238,99,
572 244,252,113,86,129,118,10,11,10,19,164,221,40,17,188,65,235,113,202,61,167,58,77,97,131,4,119,130,200,120,113,153,234,49,137,41,58,215,76,228,223,37,173,135,62,128,174,227,61,90,137,28,222,89,74,150,156,68,240,130,223,118,226,220,249,15,80,75,3,4,10,
573 0,0,8,8,0,22,178,149,71,72,214,183,36,211,10,0,0,35,24,0,0,40,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,87,114,97,112,112,101,114,69,120,101,99,117,116,111,114,46,99,108,97,115,115,149,87,121,96,28,85,25,255,77,178,
574 201,110,54,211,132,110,146,182,41,41,44,37,109,210,205,69,203,221,150,35,73,83,26,200,213,108,210,154,162,214,201,238,52,89,216,236,132,217,217,30,8,10,40,40,42,162,28,34,20,68,69,173,183,65,233,6,136,128,162,22,197,27,239,251,62,241,194,3,111,240,247,
575 205,76,54,179,219,109,13,127,236,155,247,189,247,189,239,248,125,199,123,251,228,115,15,63,10,96,189,18,242,227,45,126,220,17,192,91,131,40,193,157,126,220,21,68,25,14,6,161,224,110,89,185,199,143,183,5,112,175,31,111,15,226,29,120,103,16,21,184,47,136,
576 74,28,244,227,93,65,84,227,96,5,57,223,45,195,123,100,56,36,195,123,229,244,251,100,120,191,176,124,32,128,15,202,247,67,178,242,97,153,125,36,128,25,249,222,47,195,71,3,248,152,124,31,144,237,195,50,203,6,48,43,223,7,101,120,40,128,135,229,59,39,195,
577 199,253,120,36,128,71,197,138,199,132,253,19,65,156,142,79,138,157,143,203,236,83,50,251,116,0,159,17,31,142,248,241,132,240,28,145,157,251,100,246,89,63,62,23,196,217,56,24,192,147,242,253,124,0,95,8,224,139,1,124,41,128,47,7,240,149,0,190,42,203,79,
578 249,241,181,32,186,132,237,235,242,253,134,12,79,85,226,155,248,150,72,249,182,31,223,9,162,23,223,21,37,223,11,226,251,248,129,152,246,195,32,126,132,31,7,241,19,252,52,128,159,41,168,223,210,27,29,25,238,237,26,29,233,29,28,216,61,58,220,183,123,104,
579 120,112,168,103,120,100,76,65,168,239,50,109,175,214,145,212,82,19,29,81,203,76,164,38,54,41,88,210,109,164,210,150,150,178,118,104,201,140,174,96,101,158,128,174,206,104,143,71,66,254,230,80,231,200,54,207,230,138,188,205,232,182,206,221,27,206,60,107,
580 119,116,180,95,193,242,93,189,67,187,163,35,131,195,61,133,18,61,59,5,226,130,211,166,49,173,155,86,66,79,43,88,230,152,158,177,18,201,142,161,220,58,205,175,90,224,218,154,72,210,254,42,135,51,97,116,8,45,14,238,211,204,20,125,29,204,88,211,25,43,39,
581 202,70,161,115,122,90,79,197,181,113,155,177,60,102,164,246,36,38,20,172,235,51,204,137,142,9,83,139,39,245,142,125,166,70,38,179,99,167,243,237,182,121,50,166,102,37,140,20,15,213,236,49,76,26,116,153,30,179,182,36,76,142,134,121,64,193,197,205,249,
582 86,20,87,121,60,61,61,251,245,88,134,194,168,194,215,109,196,233,88,117,95,34,165,15,100,166,198,117,115,68,142,75,60,141,152,150,220,161,153,9,161,221,69,129,205,181,134,33,161,117,174,192,161,2,156,202,55,39,82,9,235,124,5,231,21,181,181,16,233,99,
583 120,176,67,129,66,97,117,158,237,158,253,49,125,218,69,199,103,77,38,24,189,198,197,57,186,108,218,212,167,53,83,223,146,72,51,59,199,51,34,100,212,76,40,56,161,121,157,163,32,165,91,29,163,195,189,18,172,180,145,49,99,11,241,94,216,9,230,12,72,251,241,
584 115,198,223,212,181,184,45,210,24,53,147,204,225,60,122,139,78,165,49,205,210,227,59,53,6,174,130,128,77,105,150,165,155,57,167,108,36,182,206,47,83,65,69,124,65,88,85,210,208,226,67,158,68,109,90,20,154,130,91,32,145,98,17,234,218,84,78,19,207,244,166,
585 152,163,206,242,38,63,126,193,168,79,232,150,23,15,130,193,149,188,44,84,208,210,252,66,82,214,175,219,144,19,187,75,155,47,61,186,37,20,147,212,43,45,34,153,44,186,215,101,24,22,237,211,166,251,53,241,72,51,5,37,113,208,167,153,19,68,164,166,136,14,
586 26,145,112,68,42,104,56,158,66,5,181,227,69,228,31,163,70,139,154,194,140,112,216,182,25,83,244,185,146,240,185,145,96,188,215,54,31,109,220,186,98,246,170,110,159,57,48,160,137,148,115,138,156,91,172,164,184,190,71,203,36,231,251,237,185,139,146,180,
587 171,168,168,128,169,95,145,97,215,137,179,10,119,41,40,219,235,136,172,99,25,25,166,213,159,72,167,201,183,224,108,48,106,215,140,83,255,181,5,245,215,46,242,21,172,254,255,149,74,23,188,41,174,160,185,128,223,33,219,92,178,125,161,67,171,152,196,47,
588 169,186,88,77,200,222,175,100,72,168,248,53,126,195,58,93,112,120,56,147,178,18,83,122,174,176,21,180,186,54,133,23,132,135,247,208,152,112,211,154,116,83,56,110,144,76,25,86,88,223,207,210,105,103,205,44,200,26,28,151,238,232,199,111,85,60,141,223,137,
589 194,223,179,106,23,89,61,42,118,227,101,42,198,176,75,197,165,120,177,138,151,224,165,42,14,224,74,21,41,24,42,254,128,63,82,89,220,83,175,93,90,90,87,241,39,60,163,226,117,184,73,197,159,69,93,30,199,144,102,77,170,248,139,112,252,85,54,235,188,155,
590 209,73,141,151,104,52,51,165,226,111,142,140,155,85,60,43,108,234,149,137,233,40,163,161,59,26,254,46,187,255,200,219,112,4,255,83,54,254,37,27,53,69,122,52,145,236,54,50,201,184,141,150,244,178,240,190,34,192,154,198,148,13,108,187,192,245,111,21,150,
591 248,250,31,17,252,95,60,167,226,121,206,20,192,96,183,138,231,181,238,164,24,252,250,249,124,113,91,180,138,140,176,46,47,204,231,174,76,34,25,151,210,246,103,204,228,48,43,89,85,20,165,132,153,221,81,0,152,83,129,74,27,61,242,46,239,208,205,180,237,
592 209,50,239,106,119,82,99,21,236,73,136,96,95,59,161,81,149,82,60,51,15,70,126,111,87,240,248,113,211,138,239,3,139,141,37,29,142,231,46,141,176,158,162,42,114,53,185,70,55,181,134,155,10,141,45,92,115,45,109,10,107,169,120,254,206,130,181,77,237,225,
593 145,73,61,173,135,247,37,146,201,240,184,30,54,245,41,99,47,21,166,13,35,213,30,30,74,234,12,123,56,147,118,77,147,110,202,107,173,125,13,83,244,105,197,231,87,202,4,189,114,21,183,10,254,203,189,245,234,185,98,24,78,197,175,42,1,165,194,175,4,85,165,
594 82,10,240,21,48,252,138,170,42,75,148,42,191,82,173,42,39,40,75,21,116,14,24,97,187,185,208,28,107,50,124,185,126,192,81,155,158,214,99,98,110,156,6,20,205,156,121,236,88,131,39,122,147,32,122,128,80,238,247,164,97,77,238,6,28,244,172,158,122,236,119,
595 212,124,139,229,69,83,218,44,99,185,93,236,105,155,220,149,87,242,14,43,57,156,203,189,120,207,245,222,82,78,143,40,222,190,235,138,221,24,84,95,157,46,188,168,151,54,231,63,77,132,171,166,224,58,151,226,101,67,108,46,170,170,38,93,140,185,80,132,148,
596 249,209,188,206,234,138,2,222,92,59,225,86,250,152,91,65,158,218,149,152,118,212,5,211,94,194,217,113,132,187,59,14,17,57,254,53,54,50,105,26,251,114,79,198,10,138,137,198,38,117,169,227,37,114,31,243,209,151,178,156,203,36,247,214,91,120,193,215,229,
597 216,163,78,190,197,120,128,97,44,179,12,226,202,184,106,246,139,84,65,219,162,110,115,183,209,200,253,105,25,243,185,177,249,5,165,196,81,111,194,218,98,207,99,5,167,121,165,118,79,106,102,148,23,182,158,138,233,121,102,229,253,11,89,90,144,242,246,75,
598 74,58,51,67,214,92,244,157,104,231,85,145,13,2,20,75,26,18,182,149,199,126,97,49,140,49,50,91,246,163,219,174,140,197,62,36,143,10,83,177,75,180,216,139,140,118,165,45,59,128,141,69,223,159,5,238,227,20,254,251,173,4,16,68,61,182,99,152,84,148,84,9,214,
599 147,30,241,208,43,72,143,122,232,6,210,59,60,244,201,164,119,122,232,83,73,191,200,67,175,69,72,110,118,206,67,114,185,219,95,222,239,246,151,215,62,191,85,168,128,134,113,158,136,145,26,64,57,79,1,43,231,160,140,205,161,100,44,18,42,157,133,111,14,101,
600 99,179,40,111,153,133,127,198,150,27,231,88,206,51,64,51,116,142,203,156,83,216,99,235,144,153,104,97,85,96,34,39,59,1,191,205,213,22,201,34,112,23,86,204,161,98,44,20,244,61,130,202,177,210,72,244,65,168,179,88,242,152,232,141,20,85,87,133,82,142,173,
601 20,210,70,24,58,60,106,219,92,215,100,230,168,133,188,185,28,181,202,118,158,40,227,202,108,100,22,85,20,93,77,209,39,28,198,210,72,235,97,132,34,45,135,81,19,105,59,140,218,22,26,117,39,110,107,105,125,16,117,145,7,184,61,139,101,89,44,183,167,161,21,
602 242,201,162,126,22,43,179,56,209,89,107,112,214,86,217,107,39,57,107,39,59,107,97,98,118,74,22,171,157,197,83,157,197,70,155,113,141,179,182,214,89,107,178,215,154,15,161,97,163,207,134,35,226,192,209,34,112,212,251,102,209,242,216,253,116,99,13,238,
603 194,61,88,231,2,177,21,75,57,110,128,143,235,213,56,29,181,56,131,81,63,19,39,225,44,174,156,131,8,206,37,181,17,189,216,68,56,54,195,196,121,184,1,231,83,70,39,165,92,128,123,113,33,178,232,182,1,60,131,208,220,139,229,184,12,151,83,30,65,66,18,83,54,
604 148,179,54,168,138,61,147,12,42,177,103,2,111,41,231,124,25,114,148,168,198,121,78,246,26,9,88,107,31,81,108,123,2,245,118,230,60,128,154,44,218,185,210,193,12,202,226,180,153,150,133,96,134,108,109,91,169,253,34,168,180,116,53,46,241,4,180,209,181,162,
605 140,249,61,141,43,104,133,73,202,199,111,154,251,86,78,247,118,123,13,16,216,67,161,245,89,108,56,130,165,115,56,157,89,187,126,22,103,204,226,204,25,90,117,86,97,14,13,81,229,118,166,232,136,173,82,117,68,184,42,189,138,50,57,69,207,50,217,229,228,13,
606 74,223,28,206,102,2,157,19,9,157,75,13,89,108,12,109,226,16,9,109,118,169,243,108,234,252,60,234,2,151,186,144,67,22,157,20,209,69,17,221,253,173,161,45,101,78,246,19,170,232,152,47,180,62,154,69,207,78,82,181,173,89,108,125,8,23,149,96,231,33,84,246,
607 219,238,108,219,41,158,181,136,83,180,175,132,150,102,114,41,177,150,133,6,22,126,9,3,213,195,16,245,179,184,227,44,111,147,99,134,229,189,151,94,92,77,111,197,223,8,253,235,103,162,236,197,62,242,239,101,117,72,240,5,246,27,92,12,74,240,106,236,183,
608 155,200,2,26,65,249,71,224,162,241,74,98,33,225,91,53,135,222,49,2,124,113,127,11,237,189,132,191,190,67,8,14,200,183,141,121,91,66,163,170,80,71,198,58,198,181,46,23,132,149,4,83,186,65,5,213,86,81,97,136,217,84,199,111,3,225,22,3,195,54,212,171,114,
609 69,189,202,206,63,233,37,181,120,57,174,178,93,119,204,186,154,63,190,237,220,254,178,129,95,9,101,192,169,173,254,194,78,149,241,132,59,224,186,170,208,153,107,220,243,29,238,249,50,57,95,120,248,42,207,225,178,220,225,107,113,157,139,73,146,70,75,151,
610 9,181,58,218,7,54,250,218,90,234,153,246,131,247,23,100,223,53,196,242,90,150,240,117,185,2,148,114,152,47,187,16,94,69,244,21,123,118,61,35,82,98,207,94,131,215,242,108,144,102,223,72,80,124,57,0,36,254,252,55,226,58,176,217,45,197,64,164,69,97,239,
611 56,165,208,135,235,61,37,22,200,105,12,224,13,118,172,69,210,77,174,164,173,148,84,234,72,106,45,38,233,70,79,160,142,150,36,179,55,114,86,98,203,188,217,149,121,11,169,50,187,81,176,88,217,21,54,108,244,213,251,142,160,188,222,55,211,122,4,101,173,51,
612 171,238,68,69,132,249,189,109,70,89,208,183,154,178,64,187,130,148,88,77,89,33,188,153,30,220,194,139,241,54,38,204,237,220,191,195,131,99,99,206,150,198,156,45,141,174,45,50,123,19,79,11,142,43,41,97,216,70,235,214,28,122,67,238,245,212,96,55,226,161,
613 50,183,17,143,249,236,234,116,175,167,2,28,238,246,32,218,144,211,221,224,234,86,104,163,240,223,254,63,80,75,3,4,10,0,0,8,8,0,22,178,149,71,132,26,164,171,178,10,0,0,66,24,0,0,42,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,
614 114,47,71,114,97,100,108,101,87,114,97,112,112,101,114,77,97,105,110,46,99,108,97,115,115,157,88,7,120,20,199,21,254,7,78,218,211,106,85,56,9,164,195,148,3,11,212,144,206,128,141,177,192,16,89,18,32,144,16,160,102,129,109,188,156,22,233,240,233,86,220,
615 237,81,226,150,98,167,216,137,211,72,177,147,56,61,78,226,20,156,56,39,217,138,77,236,20,39,78,119,122,239,205,233,189,59,249,103,119,117,58,221,45,66,95,190,15,205,237,188,121,253,189,121,239,13,79,62,243,240,163,0,214,139,141,42,182,225,46,21,27,240,
616 50,185,188,92,46,175,80,240,74,21,5,18,92,128,87,41,56,227,199,171,253,120,141,220,189,86,197,235,112,183,31,247,248,241,122,5,111,80,81,38,177,202,240,70,121,120,175,138,55,225,205,10,222,162,162,210,1,191,85,197,14,188,77,242,124,187,92,222,33,151,
617 119,170,184,15,239,82,240,110,5,239,241,227,126,9,122,175,138,229,120,159,130,247,171,88,133,15,168,88,134,179,10,30,80,81,35,185,220,135,15,42,248,144,31,15,170,168,197,135,85,164,49,33,191,38,229,242,144,92,30,246,99,202,143,143,168,240,227,17,185,
618 127,84,193,57,21,31,197,99,42,30,199,199,84,124,28,159,80,241,73,60,161,224,83,10,62,173,98,51,158,84,241,25,124,214,143,207,73,154,207,251,241,5,5,95,148,159,95,146,135,79,201,195,47,75,70,79,249,241,21,201,232,171,126,124,77,193,215,165,45,119,201,
619 229,27,126,220,46,127,191,233,199,183,84,124,27,223,81,240,93,63,190,39,137,191,175,226,7,248,161,92,126,164,226,199,248,137,138,159,226,103,10,126,174,162,15,191,16,168,218,121,160,181,189,171,227,112,127,111,199,129,195,187,122,186,59,14,247,236,235,
620 235,236,217,43,16,232,58,166,159,208,195,49,61,62,18,238,181,18,209,248,200,22,129,146,54,51,158,180,244,184,53,160,199,82,134,64,40,143,188,189,163,175,181,179,171,163,61,195,167,194,69,217,223,223,217,209,151,129,46,155,5,205,35,42,220,26,141,71,173,
621 109,2,11,235,234,7,4,124,109,230,48,165,149,117,69,227,198,222,212,216,17,35,209,167,31,137,25,82,73,51,162,199,6,244,68,84,238,93,160,207,26,141,38,5,214,118,153,137,145,240,72,66,31,142,25,225,147,9,125,124,220,72,132,119,218,219,65,103,215,173,71,
622 227,52,202,55,198,95,129,37,117,135,242,77,182,165,235,137,17,242,171,240,56,22,80,93,206,187,245,132,64,169,131,17,53,195,59,162,49,131,167,165,227,9,147,135,86,212,72,74,136,128,146,48,77,171,61,74,220,194,113,61,145,52,248,177,58,91,207,72,44,26,110,
623 51,199,198,244,248,176,52,118,159,141,67,70,69,17,51,126,130,140,36,193,101,185,4,189,167,147,150,49,182,47,35,42,139,65,219,52,25,121,40,230,184,21,101,252,60,68,218,114,134,179,232,136,94,158,204,97,75,23,57,246,165,172,104,44,60,3,151,118,58,188,250,
624 169,236,46,115,140,118,22,198,204,145,17,169,236,69,94,81,232,178,15,73,87,230,66,58,78,25,145,148,101,18,191,198,11,127,112,54,150,116,123,199,169,136,49,109,78,133,62,60,156,235,3,129,149,117,179,163,49,123,39,3,171,58,98,28,141,87,228,160,215,231,
625 198,114,145,171,77,182,140,242,186,60,52,65,94,203,29,96,220,176,194,253,7,58,123,79,199,45,253,84,70,97,226,248,99,76,91,249,157,73,25,23,85,186,210,21,51,96,36,146,54,70,229,180,140,156,171,120,194,65,112,238,3,85,73,24,73,51,149,136,24,173,73,226,
626 24,250,152,192,226,140,110,157,241,241,148,229,128,73,170,29,73,69,99,195,7,140,136,17,29,183,50,104,54,251,108,45,55,212,93,56,77,242,204,223,62,47,162,185,114,66,237,181,205,112,238,203,146,188,11,219,44,5,106,184,6,215,106,24,193,45,26,110,198,77,
627 26,142,225,38,86,163,11,93,36,13,191,196,211,116,85,174,59,25,53,254,149,59,164,77,41,98,54,141,50,41,52,252,10,191,86,240,27,13,191,197,239,136,115,92,160,224,120,42,106,208,103,27,255,143,43,168,225,247,248,131,134,63,226,79,10,254,172,225,47,248,43,
628 147,106,230,66,237,210,147,163,221,250,184,134,191,225,239,26,254,129,127,106,72,226,14,13,167,241,108,13,22,238,84,240,47,13,255,198,127,4,150,122,184,175,83,214,229,88,140,23,206,227,176,221,60,25,143,153,250,48,107,128,115,114,82,195,243,113,155,244,
629 226,51,179,221,54,77,177,79,183,70,91,147,73,99,140,21,53,33,241,254,203,133,46,64,173,7,242,85,172,105,73,139,27,25,159,94,75,183,141,21,66,44,96,170,101,167,7,205,117,40,155,103,202,162,100,187,80,17,62,77,20,136,66,77,40,140,168,240,83,53,81,132,219,
630 88,70,174,97,184,19,53,2,197,217,36,66,21,197,146,78,99,185,152,79,141,87,68,137,38,74,69,153,34,202,53,177,72,4,20,81,161,137,74,177,88,17,75,52,81,37,170,233,180,57,238,43,253,61,147,47,7,82,113,43,58,102,100,14,165,26,65,69,44,213,196,69,82,95,223,
631 81,154,169,137,101,98,185,192,182,54,61,30,55,173,208,176,65,119,140,49,17,66,145,152,158,76,142,211,179,161,163,102,34,228,170,27,98,231,8,29,77,152,99,161,8,155,220,17,61,105,132,106,215,36,107,155,103,165,105,207,145,99,70,196,210,196,10,177,82,74,
632 12,105,98,149,20,23,12,219,55,185,41,225,92,229,89,62,90,45,46,102,104,247,154,33,27,37,228,162,132,166,171,4,85,72,197,135,41,165,210,171,164,107,162,70,172,209,196,90,81,43,176,137,60,220,90,19,138,219,197,38,148,28,55,34,209,163,81,99,56,20,141,159,
633 135,127,179,34,234,52,81,143,107,89,158,61,202,11,35,215,102,166,72,55,219,67,211,62,113,229,53,75,99,27,20,209,168,137,117,162,137,215,81,144,109,88,19,151,224,54,69,172,151,247,227,22,58,225,188,197,68,82,111,144,237,33,22,51,79,246,199,111,136,243,
634 26,244,76,55,141,154,186,250,249,52,222,66,211,213,247,114,207,241,96,14,22,61,211,117,116,142,178,212,227,50,47,30,213,147,173,137,145,212,152,17,183,46,164,90,134,175,156,9,142,70,71,82,9,94,172,53,121,101,55,223,24,217,242,10,236,169,99,190,214,120,
635 142,5,89,100,118,209,99,43,26,49,172,236,174,88,61,221,177,242,7,5,197,157,99,4,174,154,71,163,200,226,194,202,184,165,62,103,47,135,168,148,213,42,171,94,160,46,23,151,198,174,190,240,40,65,101,121,23,7,115,59,187,83,173,118,123,78,16,182,233,173,196,
636 143,15,203,121,211,187,155,229,79,44,179,237,205,233,122,249,177,240,30,69,23,229,14,41,132,93,55,39,99,175,86,49,221,14,60,79,103,85,126,91,128,98,216,86,208,33,135,188,178,198,83,132,211,141,60,207,188,186,133,45,231,226,243,187,59,203,5,13,30,44,115,
637 187,239,46,38,80,76,14,69,21,204,204,11,79,134,249,121,101,103,180,158,224,109,116,50,161,40,179,151,45,212,176,246,234,114,100,212,18,198,120,76,151,163,74,34,201,131,205,117,243,10,163,215,48,87,59,63,82,154,95,54,3,109,147,237,196,177,145,214,89,108,
638 16,172,11,237,166,243,154,89,61,125,7,147,140,93,34,106,157,14,231,226,80,236,138,185,49,28,63,200,183,151,51,146,241,217,150,199,117,230,148,252,170,207,119,198,10,71,78,93,153,169,55,51,55,59,45,183,107,203,244,164,224,238,89,168,44,147,173,56,15,83,
639 78,200,213,217,206,234,27,77,152,39,157,123,56,48,155,73,167,19,182,222,200,168,97,191,72,140,227,41,61,70,127,45,206,38,119,26,235,150,250,131,68,96,33,24,211,25,199,43,60,130,113,200,131,198,43,144,139,61,104,237,59,100,39,144,53,234,132,235,64,222,
640 168,94,239,69,119,158,241,221,231,140,114,213,117,158,231,82,90,241,76,65,62,205,135,240,249,121,207,86,190,194,131,31,35,17,137,153,178,101,52,204,157,163,179,3,145,219,243,242,106,59,131,195,158,55,221,255,60,221,198,152,108,245,84,253,66,188,51,29,
641 114,237,252,48,249,32,163,195,220,255,210,240,26,112,119,206,122,221,118,153,230,13,169,113,198,161,238,96,253,0,86,97,3,182,1,240,33,136,1,12,114,68,190,154,187,5,40,226,126,40,107,175,114,127,48,107,95,194,253,161,172,125,41,41,132,124,214,112,189,
642 142,144,48,228,184,13,20,52,76,64,60,96,163,28,230,90,104,3,87,224,122,174,154,131,0,29,71,248,91,132,8,134,137,69,98,113,134,226,138,9,123,124,18,11,186,26,39,177,176,155,139,111,239,20,10,134,38,80,216,226,11,250,210,80,6,131,190,130,71,224,31,90,24,
643 40,234,29,242,5,212,222,52,138,211,208,102,192,37,18,92,42,193,131,83,40,35,101,121,75,65,176,64,210,46,10,250,26,210,8,180,20,78,162,162,69,9,42,132,22,78,161,146,40,139,211,88,146,70,85,144,39,213,45,254,160,191,105,18,65,185,89,218,82,180,46,88,52,
644 137,139,90,212,160,218,48,133,101,67,193,162,41,44,231,26,88,49,137,149,19,8,77,97,213,80,208,63,129,213,19,184,120,10,53,228,181,38,141,181,51,150,239,70,128,235,26,58,122,45,109,173,165,195,234,81,133,6,44,71,35,46,197,58,236,66,51,246,211,109,87,99,
645 61,189,179,17,6,161,167,176,9,183,98,51,110,71,11,94,130,173,56,131,43,241,24,90,109,239,141,59,30,34,222,81,59,124,143,242,57,57,74,143,22,225,33,68,249,37,67,242,32,31,150,163,88,72,57,247,227,6,196,136,181,31,199,49,134,56,189,126,61,189,110,146,75,
646 33,57,92,75,104,2,10,101,181,113,40,29,133,159,210,54,241,209,150,34,183,51,212,235,4,78,50,34,167,108,57,2,221,252,230,171,206,13,116,132,188,22,240,183,150,190,156,66,237,80,67,160,110,2,245,147,160,131,171,92,80,99,22,104,198,33,165,84,12,104,71,5,
647 58,232,146,29,182,81,75,28,86,184,145,74,192,254,58,102,27,165,202,23,178,43,240,50,55,179,138,201,174,209,249,119,54,39,191,58,179,242,171,216,246,11,200,226,230,12,139,86,23,175,202,86,56,141,117,252,107,10,52,7,194,105,92,50,129,245,185,236,186,179,
648 216,85,101,216,241,245,238,178,187,151,174,147,122,239,174,192,134,52,54,166,113,105,26,151,165,177,105,207,125,40,233,154,194,230,161,198,9,92,113,142,50,90,2,91,210,216,122,15,170,37,48,112,165,239,17,108,27,90,216,208,59,137,237,19,120,214,57,87,153,
649 214,9,92,117,214,150,85,78,223,92,238,106,178,130,50,128,94,194,6,8,237,67,37,250,153,58,131,76,162,171,121,127,15,102,188,87,201,144,221,138,231,144,190,156,73,243,92,60,143,112,191,124,45,187,186,62,205,16,22,240,119,128,186,6,218,210,104,223,211,240,
650 4,74,108,125,58,28,37,118,48,117,119,118,53,82,147,93,141,129,206,52,118,119,175,155,198,216,35,49,214,237,229,81,87,211,217,22,121,135,186,130,190,115,123,236,179,189,188,232,61,231,200,125,37,182,208,193,210,201,109,246,47,176,157,201,223,205,239,221,
651 246,175,99,207,6,250,19,252,42,162,230,37,44,1,85,76,164,149,76,197,26,166,115,35,125,27,166,151,175,96,212,183,48,109,119,51,97,247,48,89,165,141,13,148,208,72,75,111,167,237,178,74,181,226,5,120,33,225,43,9,125,17,147,88,16,179,152,30,120,177,29,163,
652 36,238,112,237,222,103,167,46,253,216,16,40,74,99,223,221,168,116,146,149,155,253,105,28,144,62,159,68,239,76,228,157,236,180,40,33,133,165,76,255,153,12,88,97,95,27,201,221,194,157,46,247,205,46,247,210,41,244,145,105,9,37,76,160,63,55,143,110,204,226,
653 82,234,114,17,188,106,18,235,165,255,3,80,75,3,4,10,0,0,8,8,0,22,178,149,71,217,206,17,120,160,6,0,0,180,14,0,0,34,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,73,110,115,116,97,108,108,36,49,46,99,108,97,115,115,157,87,
654 107,119,27,213,21,221,215,26,89,138,60,73,28,1,1,81,135,4,48,32,43,216,74,12,9,36,78,66,19,59,128,65,49,33,78,226,198,77,91,198,210,32,143,51,158,81,71,35,39,161,15,160,188,194,35,208,2,165,152,119,31,16,104,75,27,90,172,56,164,13,143,118,173,174,213,
655 126,236,71,126,5,127,160,101,31,141,100,203,178,226,38,245,90,62,247,222,51,231,158,179,239,57,251,62,244,207,255,124,114,30,192,70,252,125,25,186,113,88,196,119,68,124,87,196,247,68,60,32,194,136,161,7,99,17,100,99,136,34,23,129,25,67,12,99,50,120,80,
656 122,249,40,198,165,181,68,51,33,226,136,8,91,196,100,12,163,112,162,112,101,80,144,193,247,163,240,196,186,24,131,143,146,104,166,218,112,20,199,196,224,184,12,31,106,195,15,240,195,54,252,8,63,22,241,112,20,143,136,250,209,24,126,130,199,98,120,92,226,
657 140,226,137,40,158,140,226,41,233,158,16,241,180,204,127,38,70,180,207,70,240,92,4,39,35,120,94,161,125,202,176,59,109,55,107,216,163,86,225,78,203,54,21,86,100,38,140,41,35,109,185,105,25,247,41,180,137,77,206,42,250,3,150,167,112,89,109,228,89,99,37,
658 223,114,157,3,158,61,55,201,49,253,244,129,125,131,156,180,74,204,178,174,243,160,149,47,121,134,216,41,116,101,92,47,159,206,123,70,206,54,211,71,61,163,80,48,189,244,72,208,246,215,155,114,126,162,49,204,240,184,209,187,105,243,112,105,82,33,30,4,179,
659 13,39,159,30,166,129,147,231,132,86,127,220,42,118,110,80,232,104,22,101,208,41,250,134,109,139,221,54,203,177,252,29,10,143,39,151,50,92,152,132,102,163,218,90,47,122,81,139,81,119,29,84,208,250,221,28,179,190,50,99,57,230,80,105,114,204,244,246,27,
660 99,82,135,120,70,202,114,208,240,44,25,87,149,154,172,82,1,10,250,160,227,48,130,109,20,139,38,53,215,44,177,152,206,141,92,183,70,103,44,84,123,178,171,177,190,49,127,178,48,87,253,80,78,138,220,98,117,42,92,30,24,50,251,118,122,208,55,185,10,215,19,
661 243,73,195,59,98,122,129,249,114,199,52,115,197,1,247,168,99,187,70,78,65,141,18,153,239,22,50,230,148,105,147,47,68,214,94,231,38,195,130,10,22,207,117,125,133,213,11,87,120,188,80,91,229,186,134,41,219,22,66,222,33,40,118,31,203,154,5,201,107,49,130,
662 23,8,182,182,174,74,126,239,27,155,48,179,18,105,217,176,149,119,12,191,228,209,235,206,197,6,117,113,200,213,108,201,243,76,199,79,247,51,83,2,164,89,216,97,183,228,101,205,96,241,122,53,191,61,98,198,18,238,118,178,182,91,100,97,247,152,254,184,203,
663 115,224,167,58,126,134,23,117,108,193,86,29,27,176,81,71,175,136,91,112,171,142,77,216,172,227,54,220,174,163,15,47,209,87,125,40,29,47,99,183,194,149,141,132,217,85,178,236,156,233,233,248,57,94,209,241,11,188,202,122,245,184,71,116,76,203,184,15,175,
664 233,120,29,111,232,120,83,196,91,162,123,27,239,40,132,123,10,134,231,235,248,165,168,127,133,95,51,90,173,98,116,186,78,60,253,38,130,119,117,188,135,83,58,222,199,7,17,252,86,199,239,240,123,29,31,226,15,58,254,136,211,17,124,164,227,79,248,115,4,31,
665 235,152,17,63,101,236,231,97,48,96,218,166,47,78,72,27,38,212,245,142,211,221,25,204,70,112,86,199,39,56,23,193,95,116,252,21,231,153,185,3,206,67,86,161,32,182,36,192,58,223,165,225,167,248,76,199,231,248,66,199,223,196,229,128,44,186,99,41,30,147,77,
666 141,53,84,88,179,100,17,9,114,126,202,28,105,20,174,190,112,28,130,205,122,166,225,155,3,228,158,194,150,166,7,69,211,45,190,104,111,133,146,178,199,151,231,77,127,175,33,176,2,226,68,56,30,50,38,205,70,218,206,31,102,226,219,225,126,234,78,54,57,53,
667 22,169,170,188,224,196,168,239,6,42,133,235,147,205,78,173,198,227,167,205,42,14,212,74,87,129,203,13,220,106,21,3,156,43,137,115,231,88,209,181,75,190,185,215,240,199,153,24,35,155,53,139,60,103,55,240,164,205,92,242,9,218,100,25,243,185,106,205,9,153,
668 204,249,32,27,37,72,243,236,215,130,52,189,82,50,110,62,95,201,198,130,236,85,183,252,82,217,75,92,208,25,83,99,187,76,234,21,205,234,113,112,30,114,175,64,222,118,233,144,7,107,27,178,239,2,59,96,254,136,141,230,230,186,107,147,13,87,209,130,140,10,
669 174,40,73,71,162,237,119,121,35,55,240,65,42,93,131,125,203,255,134,221,48,121,241,161,190,98,161,134,177,173,234,165,193,147,62,217,213,252,50,137,47,214,114,123,140,27,197,33,243,24,93,104,78,165,169,193,188,85,96,118,95,10,76,174,241,166,139,220,188,
670 1,221,7,234,158,28,117,183,229,252,195,70,175,31,207,67,219,36,208,238,191,8,104,245,204,185,152,13,90,11,176,89,2,244,253,223,111,150,122,87,183,93,114,26,229,12,11,142,196,33,243,168,168,176,142,15,201,30,62,67,210,104,109,111,151,187,13,96,219,91,
671 109,121,195,85,90,94,114,149,150,247,92,165,229,69,200,231,116,136,255,125,216,198,217,219,217,219,139,22,68,216,222,152,90,63,3,149,186,121,6,45,169,238,25,132,82,9,109,6,90,42,17,158,65,56,149,104,157,65,107,234,12,34,31,209,178,5,59,40,91,57,31,140,
672 124,7,165,94,233,223,136,111,162,31,242,56,226,77,66,43,122,111,241,17,166,37,212,91,231,16,61,148,250,24,45,101,44,59,135,216,161,51,104,11,70,122,25,203,227,43,40,202,88,121,134,143,21,106,67,101,172,154,198,154,245,101,196,167,177,154,10,37,202,224,
673 195,101,179,184,252,116,48,51,254,26,34,218,41,104,161,237,29,211,152,88,210,255,21,115,254,135,186,203,88,61,34,62,103,113,101,213,48,126,21,63,83,165,149,145,160,85,25,87,7,223,191,33,186,238,179,232,8,161,59,112,182,102,164,134,102,22,215,12,241,211,
674 90,133,173,90,66,59,11,94,170,211,216,46,189,107,21,62,67,116,107,184,33,198,117,140,145,8,115,1,1,148,106,144,68,120,22,215,143,156,250,239,167,85,191,52,232,44,227,6,137,198,255,214,89,86,101,161,155,155,2,168,45,129,163,120,50,24,134,26,253,86,29,
675 16,102,87,93,254,184,192,27,152,191,173,90,37,180,54,139,20,115,188,126,36,161,157,174,176,66,170,58,138,213,148,189,72,146,67,91,200,162,12,185,115,152,189,7,200,156,19,100,205,73,242,230,67,86,246,60,173,255,129,157,248,55,118,225,43,244,171,56,6,84,
676 7,223,15,107,113,151,186,29,131,106,2,247,168,227,200,168,147,216,163,94,193,144,122,157,60,19,166,236,227,175,160,19,236,221,73,166,134,56,115,61,238,98,47,140,47,201,153,187,49,8,77,184,82,229,81,82,77,225,30,126,85,56,172,118,225,94,98,105,97,188,
677 127,97,15,134,16,162,231,85,184,143,95,53,122,14,24,24,124,187,159,126,247,81,163,81,51,220,190,147,126,247,7,92,228,94,81,21,158,134,83,101,220,124,122,9,34,135,171,0,230,220,80,30,168,216,31,196,72,165,253,22,14,85,190,141,226,219,76,0,248,115,145,
678 59,26,149,191,175,1,80,75,3,4,10,0,0,8,8,0,22,178,149,71,106,32,106,144,180,1,0,0,86,3,0,0,56,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,80,97,116,104,65,115,115,101,109,98,108,101,114,36,76,111,99,97,108,68,105,115,
679 116,114,105,98,117,116,105,111,110,46,99,108,97,115,115,149,82,91,75,27,65,20,254,206,102,221,213,116,171,113,181,182,218,91,180,121,136,107,235,218,226,91,75,65,18,4,33,180,133,22,31,124,40,76,146,33,78,186,217,13,147,77,139,255,74,193,80,240,161,63,
680 192,31,85,60,51,134,210,168,16,124,216,153,115,251,46,115,216,203,191,23,127,0,188,197,171,57,204,96,173,8,15,79,77,244,204,28,207,125,188,244,81,38,248,109,53,200,143,84,159,48,223,232,138,159,34,86,89,188,175,18,249,126,220,170,43,77,240,242,99,53,
681 168,236,16,54,26,153,238,196,29,45,218,137,140,127,105,209,239,75,29,127,17,249,241,222,96,32,123,205,68,106,198,121,31,84,170,242,143,132,189,234,244,241,73,209,201,108,243,144,224,214,178,182,36,44,52,84,42,63,13,123,77,169,191,9,6,18,194,70,214,18,
682 201,161,208,202,228,227,162,107,140,18,22,109,175,206,246,181,106,14,115,149,165,132,224,32,77,165,174,37,130,165,121,100,119,170,181,202,45,18,126,91,216,145,249,255,37,187,158,82,117,243,230,238,138,60,199,91,53,25,39,95,179,161,110,201,235,36,156,
683 16,217,54,184,0,69,60,8,16,96,61,192,28,102,3,248,152,245,177,65,120,119,127,143,236,198,90,73,68,218,137,63,55,187,178,149,19,10,85,179,202,242,52,54,172,243,159,225,241,63,83,64,104,60,112,20,26,67,64,169,100,44,218,14,111,18,15,249,156,231,236,59,
684 28,184,124,47,71,91,35,80,244,27,78,244,122,132,66,244,102,4,247,140,235,14,22,44,135,153,81,204,212,101,212,15,44,33,65,137,43,101,102,99,44,22,249,131,141,140,150,99,35,163,110,180,30,97,101,172,21,243,77,124,207,68,231,40,156,254,35,247,108,81,91,
685 194,224,122,96,76,72,120,124,39,216,189,9,62,185,3,236,224,137,61,87,217,45,248,237,196,157,23,252,18,186,2,80,75,3,4,10,0,0,8,8,0,22,178,149,71,146,99,74,27,25,8,0,0,75,15,0,0,33,0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,
686 114,47,68,111,119,110,108,111,97,100,46,99,108,97,115,115,133,87,137,127,20,103,25,126,102,179,187,51,59,12,57,22,18,88,40,144,166,13,108,238,34,10,146,180,212,36,144,118,219,52,193,44,9,93,80,113,178,59,217,44,221,204,108,103,102,9,84,109,189,170,245,
687 110,181,30,85,164,94,21,91,143,150,182,108,40,208,226,85,84,60,90,173,86,91,252,23,252,23,212,231,155,221,236,17,86,204,47,249,142,247,251,222,227,123,159,231,123,231,203,149,127,159,127,5,192,118,252,83,101,99,133,176,3,57,209,220,47,26,91,101,227,40,
688 112,85,228,113,76,198,162,10,5,199,85,156,192,3,42,62,132,15,139,230,35,98,207,131,42,30,194,71,101,124,76,198,199,85,52,227,19,42,154,240,73,21,15,227,83,98,249,211,10,30,81,241,25,124,86,52,159,83,241,121,124,65,197,23,241,37,209,60,26,162,237,199,
689 20,124,89,197,87,240,184,140,175,42,248,154,138,205,248,122,0,222,207,68,187,130,111,168,120,2,223,84,241,45,156,84,176,83,76,190,45,140,156,18,146,83,10,158,84,240,29,5,223,85,240,61,5,223,87,240,3,5,79,201,248,161,138,211,248,145,140,167,101,60,35,
690 227,199,18,32,65,139,153,166,97,143,102,117,199,49,28,9,29,241,19,142,107,44,236,183,173,156,97,187,25,195,225,232,248,137,225,188,59,111,152,110,38,169,187,150,45,161,113,255,212,228,29,83,251,226,241,35,163,119,78,79,220,45,65,138,73,88,61,106,153,
691 142,171,155,238,140,158,205,27,13,34,74,9,171,70,166,199,198,246,77,29,137,199,14,237,163,104,91,179,132,96,214,74,167,13,90,217,56,110,217,233,129,180,173,167,178,198,192,162,173,231,232,113,96,220,91,28,146,208,196,121,86,56,204,88,230,132,190,96,72,
692 8,143,31,213,143,233,3,89,221,76,15,196,93,59,99,166,185,45,92,181,109,198,176,29,118,116,113,107,198,204,184,123,36,140,68,175,227,227,90,115,215,74,186,102,36,248,71,173,20,221,55,141,103,76,99,34,191,48,107,216,7,244,217,172,23,144,149,212,179,51,
693 186,157,17,243,146,208,239,206,103,152,199,77,245,28,239,181,22,205,172,165,167,24,247,13,73,203,156,203,164,243,182,177,50,193,222,9,26,162,194,179,146,42,41,72,216,18,45,6,103,26,238,192,244,84,172,20,106,198,26,24,203,100,13,47,76,89,79,165,108,195,
694 161,239,198,218,173,68,33,101,56,110,198,44,217,110,172,213,149,160,238,59,158,52,114,98,209,145,241,19,9,205,203,110,99,166,107,216,166,158,101,60,121,59,187,194,240,56,53,27,243,142,97,15,167,141,18,232,204,252,108,126,110,78,128,235,59,60,194,144,
695 204,252,194,148,33,194,111,202,217,86,90,68,55,106,229,133,81,82,230,46,90,181,242,174,132,182,114,60,147,121,55,151,119,153,122,67,95,160,117,63,115,196,120,215,215,120,37,203,76,35,41,130,229,14,95,134,235,173,101,253,152,89,173,30,38,56,201,124,86,
696 119,141,233,229,40,37,172,141,118,213,163,145,74,128,202,244,81,197,134,25,195,76,9,174,175,42,78,74,75,45,149,165,10,219,44,167,72,208,144,229,84,11,135,237,228,60,141,197,173,188,157,52,68,170,121,71,150,25,208,47,236,104,216,139,113,13,183,227,61,
697 26,134,49,162,97,84,52,119,99,156,137,157,119,221,92,127,78,80,67,4,47,227,167,26,126,134,103,37,236,185,14,173,110,254,255,119,87,184,124,78,198,25,13,207,227,5,25,47,106,56,139,130,134,37,156,211,48,141,9,25,47,105,56,143,11,228,231,114,78,71,60,64,
698 141,84,53,54,196,164,154,66,213,75,194,193,69,209,188,44,227,21,13,151,240,115,13,41,240,232,170,56,71,159,135,130,140,95,104,248,37,126,165,225,215,120,85,198,101,13,191,193,111,101,252,78,195,21,252,94,195,31,68,48,31,192,31,153,251,140,224,138,157,
699 207,185,70,74,198,159,52,188,134,215,37,172,41,195,61,89,38,174,132,200,114,22,218,23,117,167,189,74,177,95,68,67,53,169,95,198,159,53,252,5,111,200,248,171,134,191,225,77,13,127,199,235,26,254,33,18,238,193,220,127,172,4,186,86,154,149,192,108,42,78,
700 23,42,18,217,114,250,77,15,116,149,163,26,177,238,193,190,177,211,25,232,116,218,163,157,206,144,247,219,85,53,228,13,171,80,112,114,246,40,233,44,227,45,13,111,227,42,21,175,3,48,97,169,179,26,171,44,111,186,30,59,182,47,167,206,243,91,149,186,170,104,
701 138,12,98,58,210,134,91,226,209,9,9,91,163,117,42,99,189,107,212,81,183,222,86,34,240,10,85,91,249,58,175,248,172,168,142,225,238,53,230,244,124,150,23,117,99,85,193,171,217,231,217,208,170,249,199,123,37,194,213,109,238,41,206,155,151,111,121,165,200,
702 5,23,238,75,101,108,199,43,173,135,150,13,148,74,164,132,128,107,177,182,84,41,86,106,92,75,244,218,90,27,137,214,175,89,149,208,74,250,188,201,76,162,89,41,90,18,54,172,112,81,83,208,218,234,175,176,152,49,55,83,198,253,121,22,242,10,46,219,234,224,
703 82,255,27,214,200,4,85,85,71,9,235,170,50,84,91,54,215,212,17,179,22,219,94,29,15,68,15,143,116,197,106,40,115,96,190,184,180,58,153,183,5,2,203,243,218,74,91,148,210,252,234,140,19,171,92,206,234,234,189,159,209,214,9,163,74,76,255,57,49,163,86,61,70,
704 10,96,254,231,231,158,12,16,83,147,46,111,169,86,30,157,215,237,184,72,172,153,52,106,72,61,236,237,22,31,117,70,179,182,30,220,12,103,209,206,184,228,155,204,180,196,98,34,128,6,190,110,40,79,102,45,199,168,189,89,94,144,140,98,206,178,23,116,30,97,
705 119,157,35,28,30,95,89,24,234,221,51,220,200,247,227,118,190,221,222,137,0,54,96,55,6,57,30,226,187,208,135,91,57,191,173,106,190,7,97,241,125,225,56,44,62,49,94,63,234,245,1,238,217,139,125,108,199,56,115,185,215,207,126,125,247,18,164,238,158,179,240,
706 117,247,158,69,67,119,223,89,248,41,10,156,241,172,221,193,118,3,130,108,55,113,247,102,132,176,5,141,104,199,26,70,180,14,29,184,147,43,221,69,59,136,225,46,239,173,186,222,243,47,121,35,17,129,207,27,137,24,26,56,230,199,174,20,193,24,231,98,215,218,
707 112,240,28,228,203,104,188,0,37,33,45,33,116,14,106,197,123,35,119,1,157,124,114,111,165,215,168,231,81,43,234,149,60,74,184,7,19,220,45,108,78,115,183,216,223,212,91,192,170,2,180,131,221,61,189,75,88,189,210,92,15,205,245,114,220,231,153,107,47,170,
708 148,15,208,132,73,236,247,92,52,225,189,152,162,102,156,99,63,37,7,56,158,94,118,38,253,139,41,93,205,149,171,210,132,52,24,232,41,160,113,48,120,1,77,137,11,104,78,208,107,203,18,194,19,145,96,1,107,6,69,70,215,14,202,17,127,184,53,34,23,208,22,241,
709 23,176,110,48,208,178,173,249,162,50,168,132,118,169,145,64,68,41,96,125,98,103,200,247,36,38,207,33,82,192,134,39,208,250,60,54,134,111,40,96,211,5,108,78,132,183,44,161,253,82,155,218,26,122,88,223,165,182,169,107,113,227,66,232,241,83,104,237,126,
710 17,190,240,77,5,220,124,208,19,26,187,212,190,136,210,208,26,42,160,243,244,127,158,246,86,183,22,176,45,18,184,12,37,18,40,32,218,119,25,221,125,5,116,157,198,77,131,90,253,117,89,172,71,180,75,103,120,212,0,78,242,133,0,254,93,244,250,98,34,31,32,27,
711 196,127,76,62,50,51,128,119,97,21,118,98,35,118,145,19,239,38,74,187,185,50,200,209,16,185,112,27,145,223,195,132,222,142,4,121,161,147,19,247,145,13,14,185,248,32,217,248,8,83,249,40,97,56,73,102,60,69,110,60,67,52,159,37,0,47,80,227,60,101,175,82,118,
712 133,178,215,40,123,131,178,183,9,134,0,45,71,143,171,240,24,102,112,144,252,140,146,207,247,210,143,76,47,239,167,159,67,4,120,156,187,15,51,138,16,229,135,240,62,202,85,1,86,25,230,171,101,152,175,150,96,246,225,45,62,67,142,144,14,29,120,9,31,100,172,
713 126,158,237,77,204,34,201,190,154,4,124,224,148,88,44,72,160,176,215,153,72,255,120,184,155,84,190,39,220,195,118,34,220,203,118,208,31,238,19,93,32,220,47,186,96,120,64,116,114,248,150,102,229,101,108,79,52,80,171,33,158,240,247,196,19,129,72,32,158,
714 8,70,130,241,132,28,145,227,9,165,55,158,104,14,246,177,33,109,226,231,240,142,231,202,169,239,240,28,206,208,241,189,76,65,2,45,60,222,122,30,117,11,15,185,149,199,236,227,33,68,138,166,138,129,149,14,28,224,234,28,83,193,79,61,117,211,222,197,108,97,
715 2,230,189,139,41,174,111,134,35,63,173,140,224,40,255,2,180,53,68,168,70,152,222,62,22,158,172,151,94,31,22,188,56,76,66,45,74,139,143,208,239,0,154,21,250,218,65,192,213,255,2,80,75,3,4,10,0,0,8,8,0,22,178,149,71,192,25,62,198,80,0,0,0,78,0,0,0,35,0,
716 0,0,103,114,97,100,108,101,45,119,114,97,112,112,101,114,45,99,108,97,115,115,112,97,116,104,46,112,114,111,112,101,114,116,105,101,115,83,206,205,79,41,205,73,85,72,73,77,203,204,203,44,201,204,207,227,82,246,205,207,83,112,73,77,86,48,50,84,48,50,178,
717 50,52,179,50,49,81,112,118,13,81,48,50,48,52,229,42,40,202,207,74,77,46,41,182,77,47,74,76,201,73,213,77,206,201,228,42,42,205,43,201,204,77,181,229,2,0,80,75,3,4,10,0,0,8,8,0,10,178,149,71,36,217,150,101,206,0,0,0,28,1,0,0,24,0,0,0,98,117,105,108,100,
718 45,114,101,99,101,105,112,116,46,112,114,111,112,101,114,116,105,101,115,53,143,189,110,195,48,12,132,119,190,74,17,65,148,127,51,104,201,86,160,200,210,162,107,65,75,180,163,192,146,12,73,54,250,248,181,155,132,219,125,228,241,200,97,117,179,189,174,
719 126,224,164,67,12,12,195,1,190,156,231,92,200,47,90,73,108,80,41,84,136,141,172,223,228,94,96,162,247,174,188,91,173,186,118,176,198,178,237,42,57,54,21,81,111,16,135,186,59,159,251,150,104,164,166,103,84,53,181,112,139,185,4,242,172,45,111,40,166,68,
720 118,102,17,211,4,46,127,6,90,242,45,22,61,210,156,25,238,180,209,55,167,236,98,208,40,58,33,127,164,130,152,175,135,249,195,133,245,119,23,175,126,37,176,18,242,212,170,211,196,129,147,51,176,164,120,103,83,244,35,1,146,121,126,6,107,230,244,127,64,49,
721 180,15,23,132,237,177,228,66,153,181,18,40,95,224,233,56,208,31,80,75,3,4,10,0,0,8,8,0,10,178,149,71,0,0,0,0,2,0,0,0,0,0,0,0,15,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,3,0,80,75,3,4,10,0,0,8,8,0,10,178,149,71,144,200,244,150,60,2,
722 0,0,83,5,0,0,49,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,65,98,115,116,114,97,99,116,67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,149,84,93,111,18,65,20,61,3,11,139,43,182,136,109,
723 173,223,208,15,229,163,116,219,62,153,66,72,8,209,104,66,170,17,210,196,199,101,25,215,109,96,151,12,67,163,127,194,223,162,47,52,209,196,31,224,143,50,222,89,144,80,150,180,244,97,231,222,57,123,239,185,115,230,222,221,63,127,127,254,6,112,136,35,3,
724 9,236,232,216,53,16,193,142,1,29,207,149,247,66,121,57,29,121,29,5,29,69,134,120,197,245,92,89,101,136,230,242,167,12,90,221,239,112,134,213,134,235,241,147,97,175,205,69,203,106,119,9,73,55,124,219,234,158,90,194,85,251,9,168,201,207,238,128,161,212,
725 240,133,99,58,194,234,116,185,105,119,93,179,214,30,72,97,217,178,238,247,122,150,215,81,100,117,223,59,231,66,114,81,102,216,184,204,245,181,255,159,239,232,38,68,149,86,171,92,37,54,221,30,35,12,199,185,198,153,117,110,153,93,203,115,204,183,20,162,
726 88,203,51,216,187,246,25,183,101,57,31,134,72,139,37,28,210,178,182,136,130,174,73,210,107,46,213,61,44,200,141,247,45,49,224,130,97,107,94,192,204,193,223,7,49,20,189,232,148,149,25,172,41,133,235,57,129,182,40,105,100,48,94,125,177,121,95,186,190,55,
727 208,177,199,112,171,233,58,158,37,135,130,174,236,96,105,54,162,202,7,116,31,42,173,227,176,138,106,24,186,66,76,168,11,70,211,31,10,155,191,118,85,31,179,87,245,109,95,213,73,194,192,109,134,204,117,215,149,68,9,251,73,152,56,72,226,30,14,25,138,55,
728 152,16,134,212,188,38,134,237,37,68,133,203,204,68,213,132,51,236,113,79,78,155,66,13,161,17,252,228,58,65,67,118,115,215,207,128,250,210,98,193,204,48,188,92,56,180,249,121,146,32,179,51,67,69,119,254,38,84,42,28,181,212,244,107,89,250,43,36,64,66,232,
729 223,17,33,75,205,161,53,73,187,26,89,70,54,86,184,0,251,65,78,20,119,104,141,7,96,26,43,180,38,199,1,88,69,138,236,221,75,72,154,44,163,206,173,81,158,162,251,70,86,35,187,249,11,145,143,23,136,158,20,74,35,104,133,82,113,132,216,222,8,241,239,211,10,
730 43,100,65,121,9,172,211,126,35,168,84,24,231,78,42,41,111,157,222,176,192,187,79,79,132,162,83,120,128,135,148,171,206,145,9,56,54,39,231,24,199,63,154,198,63,166,248,39,228,107,132,60,197,179,64,122,134,158,177,151,197,86,96,183,255,1,80,75,3,4,10,0,
731 0,8,8,0,10,178,149,71,50,95,101,143,166,0,0,0,232,0,0,0,40,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,49,46,99,108,97,115,115,133,140,65,10,194,48,16,69,255,104,181,90,
732 11,118,229,186,136,107,67,207,80,20,4,69,193,19,196,118,168,45,105,2,73,245,112,46,60,128,135,18,83,92,186,112,62,243,63,31,102,222,235,253,120,2,200,16,135,8,67,68,132,232,108,110,182,224,109,173,152,176,200,77,219,74,93,238,107,205,39,105,29,219,117,
733 35,239,146,48,223,232,66,25,87,235,234,192,221,213,148,33,102,132,165,177,149,168,172,44,21,139,66,213,226,231,121,149,17,64,136,119,90,179,205,149,116,142,29,33,233,145,66,73,93,137,227,165,225,162,35,164,255,72,73,234,57,3,124,103,232,5,223,2,140,124,
734 6,24,123,159,250,141,252,13,245,45,153,124,0,80,75,3,4,10,0,0,8,8,0,10,178,149,71,82,66,9,29,168,2,0,0,247,6,0,0,60,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,77,105,
735 115,115,105,110,103,79,112,116,105,111,110,65,114,103,83,116,97,116,101,46,99,108,97,115,115,157,149,93,79,211,96,20,199,255,207,54,186,173,235,100,160,32,190,50,23,148,189,32,99,136,128,128,38,130,47,49,78,52,193,96,130,87,15,172,153,53,221,83,210,22,
736 223,47,188,241,198,27,253,32,94,72,162,35,241,194,15,224,135,50,158,167,45,115,27,75,198,150,38,237,57,79,207,249,157,215,180,127,254,254,250,13,160,132,21,21,49,228,85,196,81,136,147,52,37,213,171,42,18,152,150,103,69,41,205,68,49,27,197,53,6,197,218,
737 117,13,75,68,49,199,48,244,216,147,159,112,219,209,237,13,151,187,58,131,246,64,8,221,94,51,185,227,232,14,195,92,217,178,171,197,170,205,43,166,94,220,49,141,226,154,85,171,113,81,41,27,66,247,253,38,142,64,150,41,202,138,33,12,247,22,195,66,182,31,
738 64,110,147,33,178,102,85,40,159,65,105,184,190,87,219,214,237,167,124,219,164,147,225,178,181,195,205,77,110,27,82,15,14,35,238,11,131,210,29,121,100,56,142,33,170,62,242,182,93,13,170,90,236,158,69,71,79,42,37,85,227,111,183,117,210,108,215,127,71,81,
739 178,229,151,252,21,47,154,92,84,139,27,174,77,110,203,185,45,134,48,183,171,50,191,35,47,25,146,150,104,65,108,117,64,116,128,246,215,253,132,37,214,45,113,24,42,209,50,223,213,78,185,119,15,211,26,32,101,137,38,147,187,162,66,181,103,115,155,81,92,103,
740 0,195,243,190,134,222,221,167,228,45,70,232,205,140,188,149,24,38,142,227,194,160,110,88,123,246,142,126,207,144,139,50,122,196,102,90,246,67,195,32,82,242,54,175,65,197,9,13,11,24,211,176,136,27,26,206,225,188,134,37,140,71,65,172,249,254,246,136,97,
741 170,151,22,51,204,246,222,64,134,76,247,118,48,76,30,99,56,126,163,99,134,115,184,67,170,55,240,93,83,151,97,102,178,61,47,140,234,181,98,175,166,11,151,33,221,205,25,105,250,128,197,33,87,105,88,78,131,36,5,33,57,33,58,25,34,237,62,105,33,122,38,242,
742 236,0,161,124,225,39,194,251,164,134,200,28,100,30,38,207,119,24,96,239,161,178,15,56,73,103,163,190,57,78,145,4,79,146,88,70,215,105,140,5,208,165,0,170,228,11,117,68,190,53,120,10,228,82,127,108,226,40,13,142,130,51,56,235,113,104,75,2,206,67,138,79,
743 25,32,153,255,129,112,29,3,133,169,58,148,239,109,184,79,30,46,237,27,54,112,201,0,39,37,149,164,16,201,23,48,30,128,111,6,9,198,37,152,114,140,182,67,63,55,229,24,111,64,227,141,28,211,184,20,160,22,60,61,64,81,142,207,254,183,79,149,238,236,11,98,236,
744 171,135,211,124,67,31,151,2,77,97,34,128,220,33,203,176,223,176,3,176,253,182,100,94,55,85,216,220,176,203,94,227,165,116,5,147,94,69,89,207,51,71,53,3,25,68,104,56,37,104,17,249,19,43,97,4,242,23,86,194,69,210,51,244,68,42,246,15,80,75,3,4,10,0,0,8,
745 8,0,10,178,149,71,188,172,77,50,145,2,0,0,131,5,0,0,61,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,105,111,110,83,116,114,105,110,103,67,111,109,112,97,114,
746 97,116,111,114,46,99,108,97,115,115,157,84,207,79,19,65,20,254,102,186,101,97,109,161,242,163,96,181,130,90,161,80,100,41,32,72,74,136,164,137,9,177,17,19,12,137,222,166,237,166,12,89,118,201,238,150,248,175,192,201,155,7,123,241,2,137,38,198,179,127,
747 148,241,205,118,173,66,107,106,56,116,222,155,247,190,121,239,219,111,222,244,199,207,47,223,0,20,241,204,192,16,230,13,24,106,209,177,160,99,209,128,134,37,181,152,58,150,85,154,108,81,199,138,142,85,134,129,45,233,200,96,155,33,150,159,63,96,208,202,
748 110,221,98,24,169,72,199,122,213,60,174,90,222,27,81,181,41,50,90,113,107,194,62,16,158,84,251,40,168,5,135,210,103,72,239,157,4,210,117,246,3,79,58,141,178,123,124,34,60,17,184,30,67,98,215,113,44,175,108,11,223,183,8,183,89,113,189,134,217,240,68,221,
749 182,204,154,45,77,194,30,11,167,174,154,189,22,158,111,121,185,222,149,74,12,122,45,220,81,211,185,124,229,72,156,10,211,22,78,195,108,35,75,221,145,249,93,58,227,134,213,138,138,125,23,160,147,94,33,17,252,67,215,11,8,199,222,253,222,172,92,107,180,
750 87,61,178,106,65,169,59,162,26,241,247,203,87,123,68,57,149,33,165,215,24,16,150,235,251,249,197,146,186,132,220,255,0,25,134,246,101,195,17,65,83,137,178,245,47,170,205,64,218,230,31,37,183,186,133,216,166,82,198,190,219,244,106,214,11,169,110,53,221,
751 213,110,73,29,74,32,129,100,2,79,177,174,99,131,225,121,95,142,101,225,91,187,142,111,57,190,12,228,169,213,61,30,211,125,16,170,227,163,4,38,144,102,72,93,231,205,176,113,195,105,186,82,172,45,22,195,120,47,181,24,30,246,191,9,154,24,219,114,26,193,
752 97,248,134,104,26,102,250,157,193,50,61,66,131,70,226,22,61,89,13,92,9,75,187,97,218,153,100,105,90,16,95,184,4,255,76,14,199,8,173,3,42,200,83,72,145,159,104,3,112,27,227,80,115,69,242,68,135,63,33,70,113,96,167,112,129,152,246,1,186,246,17,90,108,123,
753 241,239,221,186,150,61,131,49,161,157,35,206,91,217,115,229,158,33,174,181,190,66,123,203,46,17,47,16,122,160,213,105,124,159,254,67,192,71,49,204,199,144,229,227,152,229,19,200,243,73,20,249,20,86,121,38,36,180,214,110,26,17,82,222,36,166,66,146,59,
754 184,67,30,39,114,171,200,224,46,209,203,34,135,123,228,105,169,29,34,158,141,136,191,164,76,140,108,114,161,240,29,250,34,253,46,48,216,234,249,245,51,109,96,167,89,146,40,78,135,205,146,148,155,86,48,53,53,81,225,77,178,60,146,147,245,150,51,221,6,116,
755 10,198,169,96,142,242,49,60,14,241,179,152,11,109,30,99,100,51,20,31,66,1,163,228,61,32,139,212,32,221,96,1,79,144,249,5,80,75,3,4,10,0,0,8,8,0,10,178,149,71,232,35,13,242,71,1,0,0,75,2,0,0,49,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,
756 47,67,111,109,109,97,110,100,76,105,110,101,65,114,103,117,109,101,110,116,69,120,99,101,112,116,105,111,110,46,99,108,97,115,115,149,145,205,74,3,49,20,133,79,250,51,163,181,182,90,109,43,234,194,238,180,85,7,215,149,130,136,130,48,184,176,165,251,116,
757 26,166,145,153,68,50,51,234,107,185,42,184,240,1,124,40,49,73,75,21,45,130,89,220,228,158,220,251,221,19,242,254,241,250,6,224,12,205,18,10,216,50,97,219,69,221,69,131,192,57,231,130,167,61,130,250,161,127,79,31,169,23,81,17,122,253,84,113,17,118,143,
758 134,4,133,75,57,102,4,85,159,11,118,155,197,35,166,6,116,20,105,165,230,203,128,70,67,170,184,201,231,98,33,157,240,132,224,196,151,42,244,66,69,199,17,243,130,136,123,151,50,142,169,24,27,200,133,10,179,152,137,244,234,57,96,15,41,151,162,75,224,198,
759 44,73,104,104,169,191,92,16,180,151,120,251,166,12,38,74,62,153,249,214,112,49,160,89,162,73,245,165,21,4,165,190,204,84,192,174,185,241,219,250,203,216,169,1,148,81,132,99,66,133,160,243,143,87,17,236,126,205,191,203,68,202,99,182,184,68,11,121,253,
760 11,102,229,64,204,4,29,93,157,245,116,158,211,187,211,238,76,65,94,236,253,138,142,37,171,54,117,229,14,86,245,169,49,171,210,250,154,165,56,40,99,93,51,12,171,50,103,221,232,25,121,189,187,237,206,241,20,185,159,176,61,221,180,111,97,7,179,178,5,204,
761 157,195,204,169,138,13,107,113,211,118,215,62,1,80,75,3,4,10,0,0,8,8,0,10,178,149,71,63,23,104,255,199,7,0,0,135,19,0,0,61,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,
762 75,110,111,119,110,79,112,116,105,111,110,80,97,114,115,101,114,83,116,97,116,101,46,99,108,97,115,115,221,88,107,120,20,229,21,126,191,100,147,89,38,3,134,133,0,129,86,167,154,144,100,115,15,1,139,208,180,33,162,164,134,64,27,76,140,180,218,97,119,76,
763 6,55,51,219,153,217,4,236,197,74,91,237,221,94,208,54,86,123,177,8,218,122,129,74,18,66,188,212,94,176,162,245,214,162,79,255,246,121,250,60,125,250,223,159,173,61,103,102,118,179,155,221,176,137,63,251,231,155,243,157,239,220,190,115,251,206,238,197,
764 255,158,127,1,64,59,222,149,177,5,119,174,160,37,33,163,19,99,18,76,25,33,88,140,73,242,242,121,94,108,94,28,94,92,166,79,73,24,15,99,66,194,17,25,215,224,168,12,5,119,49,244,133,48,190,88,129,47,225,203,76,116,183,76,226,191,194,219,123,36,124,85,198,
765 122,124,61,140,123,101,108,195,125,50,190,129,111,242,201,183,100,124,27,223,97,194,239,134,241,61,198,220,95,129,239,227,7,188,252,80,194,143,248,248,56,31,63,32,227,24,30,148,240,99,25,117,176,194,248,9,127,39,121,121,40,140,159,242,247,97,25,143,224,
766 103,76,251,243,10,252,2,247,75,248,37,171,121,84,194,175,36,156,16,80,172,164,107,88,230,128,107,27,230,136,132,147,132,217,151,133,161,109,175,105,234,118,79,66,115,28,221,17,104,237,179,236,145,214,17,91,139,39,244,214,88,194,104,237,177,198,198,52,
767 51,222,103,152,250,126,205,118,116,187,38,155,127,135,64,185,175,65,224,234,203,176,250,60,68,93,17,155,71,22,96,241,84,196,179,24,137,165,204,113,53,87,151,112,138,184,125,19,6,24,33,208,82,220,214,44,122,54,117,92,75,164,248,150,149,125,135,181,113,
768 173,53,229,26,137,214,62,195,113,233,108,197,128,49,98,106,110,202,38,193,53,11,142,119,250,251,132,102,142,180,6,247,238,98,113,238,168,225,212,180,93,254,230,190,5,76,189,211,48,13,183,75,224,66,125,113,242,101,70,161,184,231,139,59,122,121,206,108,
769 24,20,8,245,88,113,242,214,21,76,210,159,26,59,164,219,7,180,67,9,194,68,250,172,152,150,24,212,108,131,247,1,50,196,222,18,88,119,147,105,77,152,190,85,57,209,220,94,220,128,194,172,228,91,217,50,187,237,145,212,152,110,186,2,187,234,243,195,213,176,
770 220,84,9,107,25,121,145,124,113,2,171,216,247,154,237,246,235,71,92,82,45,208,86,191,108,29,171,70,116,119,143,230,204,91,94,90,223,112,171,119,25,226,76,38,116,246,74,153,151,178,2,37,70,141,192,218,172,188,236,117,117,91,115,45,206,172,10,203,29,213,
771 237,125,65,25,42,73,47,180,233,109,94,178,229,69,62,200,16,9,143,11,64,224,223,255,15,233,89,156,186,221,75,225,146,35,109,188,180,243,210,193,203,22,94,58,121,217,202,125,96,9,98,40,96,3,86,202,142,233,55,24,156,230,235,242,104,90,56,104,10,246,160,
772 87,193,13,184,145,161,39,4,214,204,135,178,219,182,181,163,220,103,248,232,215,10,118,161,71,193,86,108,87,112,29,118,40,216,137,143,41,232,66,183,130,65,12,9,52,46,110,83,58,147,118,31,137,233,65,248,183,4,199,205,9,58,87,253,86,173,214,213,58,117,106,
773 220,210,29,213,180,92,213,213,238,212,85,205,84,211,25,223,66,253,113,62,227,247,29,58,172,199,200,178,223,224,73,54,239,41,5,79,227,25,129,157,221,166,170,143,37,221,163,25,54,117,66,115,212,164,109,141,27,113,61,174,222,97,217,106,108,17,213,45,18,
774 78,43,56,131,223,42,184,5,55,43,120,22,67,10,206,98,72,194,148,192,182,162,46,223,107,56,14,101,149,159,57,116,229,160,127,84,21,196,179,205,211,36,181,223,250,32,134,42,152,193,57,9,179,10,206,99,78,193,115,120,70,194,243,10,94,192,139,10,126,199,193,
775 232,218,155,74,184,6,213,106,70,186,163,78,232,182,190,100,249,47,225,247,18,254,160,224,143,236,131,63,225,66,142,239,253,242,81,240,50,187,253,207,120,69,193,69,188,42,176,126,33,197,174,148,145,136,235,54,245,216,3,163,186,170,224,53,252,133,151,215,
776 5,54,164,213,25,142,26,215,147,182,30,35,159,196,213,102,34,122,3,175,72,120,83,193,91,44,252,109,252,85,194,223,4,212,98,149,170,224,18,222,17,184,246,3,246,106,129,142,37,182,142,28,166,213,5,112,205,203,234,65,2,77,203,105,32,244,166,23,47,125,129,
777 186,226,189,50,104,52,212,218,105,45,167,108,24,211,168,211,111,47,240,70,29,236,91,88,117,244,108,21,120,122,170,10,189,111,44,60,161,155,35,238,168,167,171,151,94,151,220,25,134,208,90,60,190,128,59,173,134,94,157,8,61,70,221,137,132,53,145,121,143,
778 232,177,150,12,103,55,23,249,101,19,195,191,167,192,193,37,56,35,255,241,94,170,3,43,180,88,76,119,156,154,246,206,54,106,217,61,75,214,149,25,0,10,120,114,225,165,242,94,29,26,11,201,105,233,167,244,182,2,142,47,254,180,229,141,5,139,61,192,84,190,142,
779 113,23,233,220,188,52,6,50,142,98,54,24,140,180,145,250,134,252,161,118,99,38,168,233,62,149,21,220,176,17,140,16,244,104,229,48,103,141,22,145,124,44,101,197,168,230,240,220,67,6,155,222,103,109,125,67,126,82,113,200,226,241,249,225,166,138,108,185,
780 62,104,65,100,253,144,102,155,94,93,230,50,103,98,147,137,247,86,142,247,246,37,12,37,129,24,195,106,221,79,50,220,33,155,239,199,131,183,150,76,234,38,165,126,115,193,193,112,145,102,186,99,1,253,162,21,57,79,31,118,173,116,179,89,83,192,20,114,92,146,
781 119,9,30,210,200,25,55,218,86,42,57,100,112,197,174,206,241,255,128,206,222,91,153,131,32,22,91,31,179,198,51,177,175,189,156,71,210,169,55,8,149,126,146,118,210,79,222,114,68,120,164,32,40,194,83,133,247,165,193,194,251,210,108,225,125,105,238,160,249,
782 239,122,130,75,176,187,178,146,135,21,143,179,132,103,23,58,249,36,237,30,68,41,97,128,166,104,227,20,74,162,98,6,165,209,57,132,134,103,80,54,133,242,104,211,20,164,104,243,20,194,209,234,208,20,86,68,171,9,43,159,241,36,222,68,235,149,144,104,196,60,
783 1,89,60,138,42,241,24,54,138,147,184,74,156,66,173,120,28,141,226,9,244,17,77,39,202,88,62,246,98,31,224,65,108,119,137,7,177,229,165,30,196,182,135,60,136,173,47,35,235,246,227,83,25,27,37,143,190,63,58,141,138,135,176,105,14,202,112,100,101,232,121,
784 172,26,46,141,158,133,52,112,14,87,204,160,242,197,198,105,172,78,31,71,242,143,9,46,111,156,197,154,18,12,145,160,181,167,51,183,216,200,30,16,79,65,18,79,147,245,167,177,89,156,65,151,120,22,189,226,172,119,131,117,190,246,204,13,250,241,105,12,144,
785 109,2,7,112,115,96,227,16,89,79,227,54,106,73,75,120,26,85,147,168,102,125,179,88,39,48,137,149,115,88,63,204,206,221,112,58,87,245,42,190,190,96,170,243,80,197,115,158,58,197,23,20,168,19,60,37,6,74,58,60,165,160,104,248,74,158,204,200,41,103,188,120,
786 41,139,63,156,225,191,37,109,164,120,128,28,73,78,22,101,236,200,73,212,101,89,232,123,173,186,160,215,86,240,254,28,54,250,90,55,245,249,108,31,162,209,117,26,31,246,128,207,133,78,164,111,126,101,58,2,87,21,142,192,44,221,19,123,155,102,241,17,86,91,
787 69,192,213,130,102,175,107,250,27,155,167,81,115,234,253,127,249,98,106,47,160,131,160,146,115,216,60,135,58,74,199,250,72,195,52,162,44,109,26,141,145,38,31,102,66,130,166,65,188,45,254,190,117,22,109,89,10,54,164,21,180,247,243,77,136,174,227,212,251,
788 255,36,80,158,15,194,117,20,6,136,11,88,35,94,166,172,189,72,177,127,21,183,139,215,48,33,94,199,113,241,6,38,197,155,120,88,188,133,147,226,109,92,18,151,240,158,120,7,255,17,239,82,44,254,238,57,188,139,220,127,156,114,118,152,178,162,20,247,96,19,
789 110,197,65,146,253,30,5,225,51,94,134,255,131,42,197,199,145,243,131,192,116,209,24,248,89,220,6,81,9,170,71,45,8,177,77,178,36,14,98,180,177,169,185,58,84,93,54,3,113,102,65,152,31,241,180,238,241,233,50,89,169,224,16,213,183,240,160,88,80,97,10,226,
790 65,133,41,208,131,10,83,112,135,87,97,12,141,96,212,235,7,134,167,225,48,62,234,37,89,57,182,225,24,174,133,140,143,211,247,19,33,254,27,236,24,101,125,9,110,167,47,42,195,88,79,223,175,129,255,105,59,134,199,66,242,255,0,80,75,3,4,10,0,0,8,8,0,10,178,
791 149,71,28,107,22,177,205,2,0,0,219,6,0,0,55,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,105,111,110,67,111,109,112,97,114,97,116,111,114,46,99,108,97,115,115,
792 149,85,109,79,211,80,20,126,110,215,209,81,58,24,111,83,240,5,68,12,27,111,101,128,32,12,17,156,98,22,23,48,153,33,241,99,25,205,44,233,90,210,118,196,159,225,15,225,139,95,192,72,98,248,236,143,34,158,219,54,115,176,74,225,67,123,207,61,231,57,207,185,
793 247,188,180,127,174,126,253,6,80,192,142,140,52,230,100,244,242,87,15,230,37,44,200,16,177,40,99,9,203,18,94,74,88,145,145,226,251,20,94,73,88,227,240,117,9,69,9,27,18,94,51,116,109,24,150,225,109,50,36,114,249,125,6,177,100,31,234,12,125,21,195,210,
794 119,155,141,3,221,249,172,29,152,164,25,168,216,53,205,220,215,28,131,239,67,165,232,125,53,92,134,204,222,177,103,216,86,201,110,28,107,142,230,217,14,131,82,182,44,221,41,153,154,235,234,132,88,170,216,78,93,173,59,218,161,169,171,53,211,80,9,219,208,
795 172,67,30,230,147,230,184,186,51,121,147,163,200,32,213,252,29,5,250,144,187,133,32,240,44,198,35,242,101,226,180,125,185,192,48,17,239,208,130,47,210,93,27,6,247,26,168,28,105,39,154,106,106,86,93,173,122,142,97,213,139,129,141,32,83,185,54,227,222,
796 193,145,94,243,138,157,26,126,10,225,219,194,117,170,208,198,45,5,9,84,14,248,116,177,89,43,20,121,213,38,239,2,100,232,174,26,117,75,243,154,60,163,149,255,29,181,233,25,166,250,175,12,27,241,89,218,36,106,185,106,55,157,154,190,99,240,182,200,118,132,
797 159,231,212,10,50,232,87,240,6,91,18,182,25,86,239,216,18,65,150,219,155,43,27,109,224,252,83,18,222,42,40,225,29,117,229,205,66,49,108,197,134,44,105,174,94,182,92,221,114,13,207,56,209,59,99,143,197,32,20,140,224,61,195,120,92,214,56,110,148,161,112,
798 239,185,184,118,177,160,114,12,67,81,165,163,22,143,111,11,42,93,93,247,130,32,52,168,253,185,124,91,27,84,117,222,146,183,220,37,96,97,24,110,143,111,154,116,166,128,46,65,131,65,105,207,85,162,236,209,13,87,204,71,141,197,181,209,10,231,174,83,147,
799 47,99,129,190,111,189,52,60,125,244,117,20,33,240,150,163,221,0,237,84,90,105,174,144,156,62,135,240,131,4,1,131,244,238,226,74,118,133,33,146,149,0,128,97,60,4,159,64,42,81,232,252,157,200,146,180,174,204,156,33,113,1,241,11,59,71,242,39,186,46,33,237,
800 206,118,168,214,197,11,164,248,190,123,110,68,60,131,124,218,138,214,139,4,23,49,40,208,157,4,193,143,186,28,48,135,81,185,244,8,143,253,147,172,224,9,73,220,243,57,158,98,140,124,167,232,98,227,36,137,153,109,58,221,179,240,116,31,201,66,188,72,79,207,
801 92,162,103,150,158,51,40,167,145,87,28,15,128,173,96,105,76,16,57,243,165,73,146,132,12,248,24,133,196,107,180,10,97,206,88,116,206,178,1,160,69,152,36,194,28,217,19,200,251,248,105,204,248,235,44,30,208,58,65,121,76,83,41,178,148,217,23,180,34,147,34,
802 141,74,63,178,81,250,65,169,88,197,232,95,80,75,3,4,10,0,0,8,8,0,10,178,149,71,228,98,213,39,225,2,0,0,110,7,0,0,63,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,85,110,
803 107,110,111,119,110,79,112,116,105,111,110,80,97,114,115,101,114,83,116,97,116,101,46,99,108,97,115,115,189,85,203,82,19,65,20,61,61,201,36,97,50,64,8,16,241,133,136,40,201,16,8,225,161,34,136,34,165,165,85,20,90,133,178,96,215,36,83,227,232,100,134,
804 154,76,148,95,240,95,92,72,21,143,42,23,126,128,255,224,198,215,194,141,27,55,186,176,188,61,153,10,17,66,37,113,225,230,222,238,219,247,156,190,125,238,205,228,253,239,183,239,0,228,113,91,65,12,227,10,58,48,209,65,171,156,48,147,194,228,197,193,148,
805 130,105,204,68,113,53,138,107,12,114,217,227,158,30,197,28,67,252,17,119,203,186,187,38,2,12,234,3,219,214,221,101,139,151,203,122,153,97,98,197,113,141,156,225,242,162,165,231,10,150,153,91,118,74,37,110,23,87,76,91,175,226,70,234,224,243,12,33,238,
806 26,12,201,149,103,252,5,207,89,220,54,114,107,158,107,218,6,29,197,11,135,88,134,225,163,204,62,79,177,142,159,32,145,5,211,54,189,69,6,61,125,156,177,57,65,123,197,103,214,25,194,203,78,145,138,235,22,41,171,149,210,166,238,62,230,155,150,46,94,228,
807 20,184,181,206,93,83,236,131,96,216,123,106,146,72,3,79,236,231,182,243,210,126,184,229,153,142,253,151,156,45,148,112,18,152,158,223,101,232,222,125,94,94,114,141,74,73,183,61,82,55,157,217,160,176,99,83,134,235,173,234,219,222,146,144,123,50,157,105,
808 183,79,138,99,31,210,222,105,160,110,219,140,49,94,227,35,114,202,222,178,116,49,98,55,24,192,240,234,63,52,176,121,118,222,111,178,180,61,41,76,94,152,41,97,166,25,70,90,1,211,203,214,156,138,91,208,239,153,162,253,169,99,57,19,226,141,42,122,209,39,
809 204,188,138,110,36,84,244,32,169,66,65,151,138,97,12,70,177,160,226,38,22,163,184,197,48,247,207,211,193,48,213,20,219,0,212,211,32,150,109,71,100,250,225,54,23,138,97,52,221,106,51,134,154,13,1,67,39,47,22,239,110,123,46,95,231,86,133,246,253,141,198,
810 181,1,213,177,43,49,68,31,194,14,250,88,134,144,20,13,161,85,82,180,200,247,212,37,242,17,72,162,125,52,177,253,180,43,209,46,76,190,95,99,7,144,180,177,61,132,180,236,30,194,218,248,30,228,29,58,144,144,34,155,130,76,51,254,17,50,251,4,133,125,70,55,
811 251,130,62,246,21,167,232,76,171,18,96,0,103,0,127,37,46,100,254,74,92,41,249,43,81,76,136,162,103,113,46,184,58,75,94,100,73,225,215,181,123,34,34,194,190,249,188,106,245,52,224,101,56,143,193,0,153,11,144,178,182,143,200,155,35,224,239,117,96,185,6,
812 190,64,202,84,193,115,228,165,147,192,63,124,112,170,154,80,123,145,140,139,254,139,152,24,239,128,102,145,114,196,21,9,109,151,212,218,69,104,31,81,114,242,33,163,34,88,216,79,196,217,175,186,146,18,85,86,234,72,47,46,7,92,27,164,32,233,139,152,54,150,
813 29,63,0,219,57,82,213,7,31,63,83,205,169,85,21,195,149,64,231,24,70,3,157,99,72,251,58,139,85,198,239,140,132,49,159,45,139,78,242,195,20,137,99,22,106,88,252,99,206,226,52,85,121,137,60,18,98,108,102,113,61,172,252,1,80,75,3,4,10,0,0,8,8,0,10,178,149,
814 71,34,122,201,90,146,5,0,0,153,13,0,0,38,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,79,112,116,105,111,110,46,99,108,97,115,115,157,86,91,115,211,86,16,254,148,24,203,177,69,18,12,196,225,30,
815 32,128,99,19,220,22,2,148,164,80,8,183,64,72,128,164,73,67,160,69,177,85,71,84,145,92,89,230,210,251,189,253,11,188,244,173,229,165,15,180,83,194,164,204,116,250,196,67,103,250,39,250,67,218,126,71,86,100,217,178,75,166,147,137,206,158,213,158,221,111,
816 119,191,61,242,31,127,255,250,27,128,151,241,109,28,59,48,37,99,58,142,54,76,117,96,59,222,232,192,12,102,133,244,166,120,204,37,112,3,243,9,220,196,45,241,120,75,198,219,9,220,134,42,99,65,70,62,142,206,234,169,130,144,52,33,189,35,164,162,120,44,198,
817 160,199,112,71,40,223,141,193,16,170,37,113,214,20,15,75,70,73,198,123,18,100,171,228,232,150,89,150,208,53,126,71,189,171,230,42,142,110,228,166,52,103,88,66,199,148,94,52,85,167,98,107,18,246,214,191,29,169,110,13,213,44,230,166,28,91,55,139,195,39,
818 121,66,81,237,98,101,73,51,157,233,7,37,30,218,16,176,26,53,212,114,153,38,155,26,117,35,25,113,50,81,208,202,121,91,119,193,72,72,134,221,83,89,208,74,182,150,87,133,201,172,106,155,212,74,136,235,102,190,178,64,157,216,72,55,8,186,104,91,149,210,172,
819 238,44,74,56,220,8,218,178,139,185,162,173,22,12,45,151,55,244,220,168,181,180,164,154,133,113,221,212,38,221,200,110,18,209,17,221,212,157,147,18,82,233,0,140,49,71,179,213,5,67,27,30,152,145,16,25,181,10,154,40,25,79,78,84,150,22,52,123,90,188,19,192,
820 173,188,106,204,168,182,46,246,158,50,106,121,105,181,233,253,126,1,92,80,174,83,199,178,25,53,226,44,234,236,194,158,23,99,172,175,161,143,75,66,79,125,112,182,192,3,208,44,143,22,29,204,174,217,86,212,33,94,212,156,201,85,2,109,72,15,132,40,180,175,
821 81,215,34,108,98,81,45,159,246,184,35,97,40,29,34,206,192,90,234,114,60,116,78,144,107,77,71,251,211,107,50,83,2,56,153,114,39,243,63,27,36,238,166,213,124,235,169,27,181,181,114,197,96,102,91,66,111,207,84,116,163,160,9,6,116,210,119,157,179,163,233,
822 176,175,53,161,76,18,214,105,195,176,238,5,177,182,167,7,56,30,91,253,87,87,8,72,47,25,90,192,36,190,58,97,90,65,194,102,55,183,240,196,41,212,95,168,205,216,80,184,195,107,154,178,100,186,129,44,130,79,71,211,255,195,151,75,196,41,171,98,231,181,243,
823 186,160,123,79,200,234,144,240,170,224,32,108,210,180,22,225,162,90,94,100,20,5,59,177,75,70,89,129,131,189,10,246,136,71,70,104,42,10,238,226,158,140,251,10,30,96,76,193,251,248,64,66,119,99,79,100,124,168,224,35,124,204,14,214,92,143,235,101,182,59,
824 213,162,219,10,246,97,191,130,79,240,169,130,3,66,250,12,159,139,237,23,244,49,95,107,66,223,96,31,47,181,91,10,210,24,96,225,231,107,119,29,117,95,98,84,193,87,248,90,193,55,34,118,223,139,42,85,135,124,114,225,142,150,119,92,82,204,172,226,118,95,204,
825 88,58,123,31,153,158,187,122,142,61,10,95,5,18,98,186,119,105,177,208,117,189,15,92,102,201,176,150,159,26,242,123,66,187,207,168,17,211,93,234,135,165,10,137,135,215,215,81,128,24,213,130,160,99,58,108,43,8,29,85,75,37,205,164,193,96,211,105,105,61,
826 110,81,67,51,139,130,193,172,193,152,132,237,233,209,255,178,142,57,86,85,37,34,22,10,28,33,14,115,144,173,163,150,97,16,147,160,164,11,203,214,150,172,187,26,118,243,243,187,131,223,250,40,146,130,101,96,163,184,107,163,190,77,16,205,223,247,243,159,
827 156,112,229,3,222,202,174,115,77,10,46,250,118,89,126,198,37,18,121,144,242,33,106,126,71,59,34,92,47,101,158,66,202,60,67,219,220,83,180,63,65,36,243,51,214,61,65,180,166,145,179,43,136,73,184,114,112,5,29,18,30,98,27,133,184,196,243,137,137,204,47,
828 136,12,174,64,105,195,236,163,127,254,250,137,222,218,145,227,115,15,98,124,238,164,255,20,186,208,139,30,230,178,155,88,134,137,229,60,165,49,90,188,68,139,12,45,134,145,224,239,153,253,60,153,230,155,87,112,152,248,136,10,71,48,4,184,210,78,28,37,242,
829 99,148,21,174,85,205,113,63,175,87,41,157,160,151,106,86,57,238,132,205,58,1,237,177,107,144,115,139,40,148,251,220,160,85,39,235,188,0,85,39,35,212,189,134,147,158,147,107,92,5,8,57,147,21,149,120,236,231,21,119,213,3,60,156,113,93,245,84,205,124,172,
830 178,215,153,26,86,161,233,247,177,158,114,195,188,206,167,8,115,140,26,97,211,145,217,136,196,106,160,182,64,160,67,60,158,11,96,238,240,2,73,56,221,212,201,250,102,78,14,187,248,154,57,57,131,81,207,201,159,94,194,218,51,116,178,233,93,227,172,94,247,
831 115,40,89,177,46,99,195,44,215,228,115,164,179,203,216,248,29,226,217,238,190,101,108,154,205,38,55,139,119,194,40,233,10,201,30,207,54,245,16,189,141,182,189,174,201,50,182,212,0,158,32,37,193,86,198,216,196,46,238,122,217,135,93,44,208,126,118,98,144,
832 25,30,97,158,175,17,230,89,254,93,198,57,92,39,121,230,112,145,191,66,47,5,202,175,121,9,197,112,139,118,231,92,2,156,199,5,47,181,83,193,94,118,135,170,51,193,94,78,182,232,165,152,42,225,236,34,249,90,117,118,194,43,118,55,115,140,114,78,190,135,28,
833 121,132,72,251,143,13,68,155,10,212,187,219,175,247,165,230,126,216,183,31,90,248,153,109,234,231,114,243,228,146,161,228,230,153,220,205,22,201,29,240,146,75,251,76,26,242,64,201,153,200,19,164,66,206,110,211,153,26,192,35,251,120,198,125,30,5,167,47,
834 217,56,125,90,147,233,3,174,52,29,93,185,241,176,222,114,116,39,220,123,100,210,115,162,121,21,73,9,39,188,184,182,242,106,18,98,102,5,219,40,214,174,168,78,174,192,18,47,31,147,213,177,2,85,74,249,216,82,222,197,91,27,103,161,201,250,227,124,149,210,
835 53,87,186,254,47,80,75,3,4,10,0,0,8,8,0,10,178,149,71,156,108,92,207,167,1,0,0,166,3,0,0,56,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,105,111,110,80,97,114,
836 115,101,114,83,116,97,116,101,46,99,108,97,115,115,149,82,93,75,27,65,20,61,179,89,179,118,77,77,180,154,226,119,140,41,70,41,110,20,95,36,34,104,64,20,130,10,145,60,248,54,73,134,237,200,102,86,102,39,37,255,163,191,164,79,133,62,248,3,250,163,138,119,
837 54,1,17,11,105,118,30,206,157,187,231,158,203,61,119,254,252,253,253,12,224,16,95,124,100,176,233,195,197,166,135,146,135,109,134,236,169,84,210,156,49,100,170,123,109,6,183,17,247,4,67,190,41,149,184,25,244,59,66,223,243,78,68,153,197,102,220,229,81,
838 155,107,105,239,227,164,107,190,201,132,97,225,246,201,200,88,221,113,157,8,221,50,220,208,175,220,181,82,66,55,34,158,36,130,40,199,205,88,135,65,168,121,47,18,65,55,146,65,35,238,247,185,234,217,62,163,186,202,59,145,58,195,124,172,40,212,230,70,12,
839 205,185,14,61,148,25,230,222,244,169,85,247,38,75,191,21,245,99,69,90,131,190,80,134,225,162,218,124,228,223,121,16,113,21,6,45,163,165,10,235,83,43,206,135,194,92,241,228,85,149,204,124,72,27,81,229,83,36,140,240,176,195,0,134,221,234,100,237,195,186,
840 221,132,51,172,49,84,254,135,77,141,90,241,64,119,197,165,180,75,41,190,227,28,216,9,115,152,65,214,67,133,225,104,250,85,48,20,94,93,186,237,60,138,46,13,249,117,26,151,24,202,147,71,97,40,77,34,185,37,122,194,46,236,151,133,99,103,34,87,61,186,5,132,
841 100,49,102,246,127,193,249,73,129,131,217,148,100,125,255,129,15,20,231,70,4,248,248,8,184,180,54,44,164,184,136,79,41,46,97,57,197,162,205,23,44,115,101,44,126,66,232,140,197,217,191,197,139,35,194,72,60,141,86,177,150,150,173,167,252,13,106,15,202,
842 101,232,108,97,206,245,145,39,44,16,126,38,68,97,246,5,80,75,3,4,10,0,0,8,8,0,10,178,149,71,91,120,110,152,148,7,0,0,199,17,0,0,38,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,80,97,114,115,101,100,67,111,109,109,97,110,100,76,105,110,
843 101,46,99,108,97,115,115,149,87,217,127,27,87,21,254,70,219,200,210,68,177,85,199,142,221,38,85,211,56,150,101,57,134,36,208,120,169,139,227,38,77,28,219,41,113,73,112,90,10,19,107,34,79,144,103,148,209,200,137,91,74,75,161,208,133,165,165,5,154,150,
844 125,51,139,129,164,52,9,38,63,150,55,248,241,206,27,111,188,240,87,16,190,59,51,26,75,214,184,49,47,51,231,222,57,247,59,231,124,103,185,210,63,254,251,199,63,3,248,48,222,79,160,19,134,12,51,129,16,140,22,228,81,150,113,41,129,168,187,176,196,163,34,
845 195,78,160,197,221,169,38,177,132,203,73,92,193,178,120,60,35,227,89,25,159,75,160,21,70,2,219,241,92,18,159,199,101,25,207,39,241,2,190,16,199,139,50,190,152,224,177,47,37,208,142,151,100,124,57,129,110,24,113,124,69,188,95,142,227,21,241,126,85,104,
846 188,38,78,126,53,137,175,225,178,88,126,93,0,124,67,198,235,113,188,145,64,15,190,153,196,155,120,75,232,124,75,60,190,45,30,111,201,248,142,132,237,102,217,214,77,163,114,100,121,214,182,116,163,200,157,169,139,234,146,58,88,181,245,210,224,180,90,30,
847 145,208,50,171,23,13,213,174,90,154,132,147,141,95,71,221,101,73,53,138,131,46,192,200,148,105,21,7,139,150,90,40,105,131,243,37,125,240,113,213,170,104,133,9,115,113,81,53,10,83,186,161,157,114,44,142,140,17,57,85,182,180,138,102,216,238,86,165,209,
848 248,172,102,83,229,193,198,157,0,131,14,144,165,45,154,75,90,193,7,74,105,87,108,75,29,183,138,213,69,226,115,163,181,14,103,74,175,8,232,189,27,182,54,193,142,141,234,134,110,143,73,232,204,214,41,156,176,53,75,61,95,210,70,250,206,72,136,76,152,5,77,
849 120,207,240,102,170,139,231,53,235,9,241,77,66,122,202,156,87,75,103,84,75,23,107,111,179,197,229,156,38,132,66,147,77,9,33,125,175,132,246,58,239,28,99,182,105,241,155,82,118,248,116,3,149,144,221,42,221,140,195,244,206,236,217,120,38,72,59,98,47,232,
850 149,0,221,38,124,234,202,102,141,246,246,32,134,36,116,52,210,176,92,174,81,113,56,64,127,244,238,238,137,180,140,4,101,99,75,103,69,198,226,182,89,43,248,246,108,95,80,18,148,75,85,211,214,198,141,194,164,169,11,162,131,147,31,116,50,86,241,144,101,
851 87,168,8,238,171,118,185,106,75,232,106,58,112,164,170,151,10,154,72,173,172,87,142,233,86,133,90,210,57,145,217,160,240,2,43,116,116,203,186,129,254,182,44,168,149,90,61,237,200,54,107,244,209,155,214,5,213,171,185,211,110,167,145,32,30,27,55,150,107,
852 39,187,178,117,5,59,97,150,74,218,188,195,183,56,189,189,100,22,167,180,37,173,228,247,103,71,176,178,132,92,224,135,77,2,31,8,182,25,28,250,185,13,68,213,162,219,122,7,181,21,53,251,232,134,185,146,174,85,79,253,100,217,215,180,185,73,0,219,212,66,193,
853 65,60,163,150,170,218,38,244,179,92,163,75,238,247,22,234,215,8,127,58,64,247,238,229,255,127,132,171,184,67,181,102,175,167,105,214,4,160,211,215,196,172,89,181,230,181,99,186,104,240,142,38,248,253,194,105,5,135,241,54,9,93,39,233,184,90,89,224,133,
854 162,96,0,251,155,62,112,240,43,188,111,15,40,56,132,3,18,238,89,255,58,110,89,234,178,32,88,193,71,240,81,25,87,21,188,131,119,101,124,87,193,247,240,125,5,63,192,15,37,100,238,230,55,51,182,53,86,20,252,8,63,150,241,19,54,196,70,238,101,252,84,193,207,
855 240,115,9,7,189,113,56,156,233,169,228,51,141,23,145,187,215,120,91,137,189,6,192,83,231,47,178,144,21,204,224,148,130,21,252,130,87,207,38,83,131,119,69,62,163,224,151,248,21,135,70,175,130,41,76,43,152,0,249,253,53,86,101,252,70,193,39,49,167,224,183,
856 248,29,71,121,221,140,96,167,20,213,82,205,171,163,87,230,53,143,135,157,174,79,153,222,158,74,111,198,48,237,76,65,187,192,232,11,251,69,198,46,200,184,166,224,58,86,21,188,135,167,20,252,30,171,205,228,54,49,39,33,156,21,117,145,110,158,81,156,195,
857 186,119,181,177,84,26,154,166,238,202,75,55,239,114,88,114,250,204,144,91,7,157,173,29,49,156,69,227,48,119,137,36,68,130,157,235,207,158,182,6,67,238,207,140,109,13,27,13,107,86,37,141,56,211,251,112,182,25,188,121,39,208,131,216,5,211,90,84,137,49,
858 20,208,182,79,126,48,200,250,205,162,150,203,154,81,88,31,124,141,131,108,243,171,37,62,111,26,182,170,139,232,119,4,196,32,8,108,15,154,164,12,188,40,232,216,23,116,40,40,204,84,227,216,227,121,78,44,225,120,161,48,94,42,81,112,75,31,15,240,87,106,39,
859 127,68,71,144,22,29,15,9,131,92,133,240,33,174,217,232,254,250,32,215,135,54,172,217,232,254,250,33,36,249,62,140,33,202,195,128,52,128,48,100,238,188,146,187,5,41,119,27,161,185,91,8,223,64,132,98,148,98,236,6,228,117,49,78,177,133,98,226,6,146,253,
860 107,80,36,76,231,215,176,77,194,85,156,164,144,146,240,87,108,159,185,141,86,234,180,13,71,6,110,34,189,134,123,36,12,71,187,162,158,94,70,72,142,98,251,112,44,247,62,34,93,177,174,200,26,118,132,113,118,229,206,191,86,238,188,119,157,206,132,49,194,
861 231,1,40,124,118,51,228,29,252,173,223,65,169,147,63,205,119,50,228,123,49,137,251,48,139,93,176,177,27,47,226,126,188,132,12,94,38,73,163,60,113,156,1,217,72,225,97,140,33,134,167,209,139,71,240,49,254,199,152,37,226,56,142,16,111,146,248,19,120,148,
862 118,30,194,199,157,175,33,65,1,142,226,24,224,72,143,17,69,194,9,202,10,223,238,206,164,79,226,73,74,156,28,124,146,66,124,130,86,132,78,127,186,35,246,39,116,206,133,115,140,75,190,133,157,179,115,17,33,38,29,49,42,196,184,16,255,128,174,107,14,140,
863 8,210,61,218,227,56,238,154,234,247,220,8,137,113,230,102,9,255,225,59,198,247,233,219,232,38,183,247,78,71,198,92,254,135,35,130,61,135,217,67,66,242,152,141,238,122,7,137,124,250,190,155,216,117,54,159,222,237,188,186,162,117,171,240,216,202,157,191,
864 231,111,226,254,107,62,221,251,157,202,232,67,28,57,36,232,69,150,21,151,103,173,29,100,208,195,36,125,156,117,118,156,20,78,114,103,154,53,38,60,22,4,103,177,7,143,83,138,178,210,70,28,50,35,194,83,159,204,211,164,88,144,25,231,201,211,76,66,136,232,
865 199,241,4,105,11,215,17,44,180,206,248,4,159,165,196,65,236,17,124,130,59,34,65,109,185,254,155,200,156,21,236,50,250,7,66,88,245,105,76,56,10,194,157,71,28,199,58,220,3,190,19,109,204,247,24,225,36,156,251,0,216,120,48,236,36,97,79,222,5,246,73,60,229,
866 229,234,77,190,5,3,125,4,219,83,215,33,221,181,14,105,159,201,177,51,30,188,138,104,100,117,229,206,191,195,171,126,10,58,72,162,168,167,110,82,177,135,36,236,165,175,189,244,88,152,206,17,180,155,14,9,131,162,101,51,126,221,246,249,238,244,225,83,172,
867 247,250,186,21,59,159,246,105,253,12,37,94,118,94,252,21,162,132,133,142,104,67,58,187,55,68,231,90,167,243,127,195,206,219,232,153,75,239,139,56,213,220,47,10,246,22,122,255,146,95,175,218,180,19,97,129,77,166,81,190,64,39,23,28,39,51,46,96,157,67,46,
868 63,41,182,172,104,189,16,229,243,152,247,152,26,116,152,3,162,162,73,54,182,68,169,174,37,162,30,160,27,69,129,79,141,70,221,40,30,245,178,168,8,16,70,145,101,245,92,223,144,192,50,75,251,82,93,2,21,223,65,5,69,199,65,48,0,221,67,52,188,4,238,110,224,
869 101,70,148,93,222,153,104,125,52,49,176,238,111,202,9,90,76,156,42,167,210,146,159,45,34,248,118,118,59,211,72,114,164,9,199,231,20,90,29,74,196,217,139,248,172,103,251,13,207,246,80,127,109,118,250,245,147,173,171,31,186,50,176,134,92,136,219,41,81,
870 183,92,244,135,196,4,253,231,122,232,110,49,61,195,33,249,44,221,121,142,183,192,243,156,251,47,248,238,237,226,40,125,216,41,166,4,123,191,86,76,67,190,203,67,142,163,34,67,37,7,115,241,127,80,75,3,4,10,0,0,8,8,0,10,178,149,71,139,65,53,108,124,1,0,
871 0,11,3,0,0,58,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,80,114,111,106,101,99,116,80,114,111,112,101,114,116,105,101,115,67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,157,146,75,79,
872 194,64,20,133,207,5,4,68,124,63,80,195,162,236,192,4,26,19,117,227,35,81,140,43,162,36,24,247,67,59,150,49,109,135,12,3,9,255,74,87,38,46,252,1,254,40,227,20,170,49,216,68,227,44,238,233,156,57,223,244,118,166,111,239,47,175,0,246,177,91,64,22,27,121,
873 108,230,177,149,71,41,135,237,28,118,8,217,19,17,10,125,70,72,87,107,119,132,76,83,186,156,176,220,18,33,191,30,6,93,174,110,89,215,55,206,90,75,58,204,191,99,74,68,243,216,204,232,158,24,16,142,90,82,121,182,167,152,235,115,219,241,133,221,86,242,129,
874 59,218,72,159,43,45,248,160,41,131,128,133,110,180,107,83,134,35,99,114,117,76,88,245,248,103,104,124,211,215,66,134,132,141,106,173,245,192,70,204,246,89,232,217,29,173,68,232,153,232,206,143,232,37,215,76,248,220,37,148,19,214,6,142,18,241,142,133,
875 142,28,42,135,95,137,168,229,189,63,245,214,136,58,40,34,135,60,129,218,132,98,127,74,213,141,246,9,23,29,174,173,216,138,116,242,102,235,94,42,75,247,184,213,29,10,223,181,166,13,88,85,222,240,26,86,189,29,140,163,220,105,48,30,49,127,200,107,13,194,
876 193,127,14,141,112,56,131,157,119,7,90,177,223,56,84,48,103,238,63,26,25,80,244,97,166,206,155,153,109,148,140,206,237,61,131,158,204,67,10,5,83,179,19,115,29,11,166,22,167,1,163,139,19,124,9,203,49,92,143,225,244,90,234,113,6,45,125,67,211,95,232,74,
877 2,154,158,69,203,137,232,106,2,154,153,69,43,9,168,249,119,39,169,245,15,80,75,3,4,10,0,0,8,8,0,10,178,149,71,50,108,87,182,74,2,0,0,4,5,0,0,70,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,
878 114,115,101,114,36,67,97,115,101,73,110,115,101,110,115,105,116,105,118,101,83,116,114,105,110,103,67,111,109,112,97,114,97,116,111,114,46,99,108,97,115,115,165,83,93,111,18,65,20,61,51,124,44,224,98,145,182,248,89,197,138,150,47,187,165,250,98,32,141,
879 74,98,66,36,106,66,211,247,1,6,156,102,217,109,118,151,198,191,226,127,224,197,151,154,248,96,124,246,71,25,239,44,27,76,11,6,19,67,152,123,231,206,185,231,206,61,119,246,231,175,111,223,1,52,240,60,3,3,79,50,72,233,37,129,61,189,148,13,84,116,184,106,
880 160,110,224,169,129,125,134,100,75,57,42,56,98,136,149,43,39,12,241,182,59,148,12,27,93,229,200,119,211,73,95,122,199,162,111,83,36,223,117,7,194,62,17,158,210,251,40,24,15,62,42,159,225,65,91,248,178,227,248,210,241,85,160,206,101,47,240,148,51,110,
881 187,147,51,225,137,192,245,24,204,142,227,72,175,109,11,223,151,148,240,186,235,122,99,107,236,137,161,45,173,129,173,44,194,78,132,51,212,85,63,8,207,151,94,105,13,101,147,193,24,132,59,186,198,94,185,123,42,206,133,101,11,103,108,205,145,205,229,72,
882 165,67,57,238,89,160,92,167,161,251,89,2,44,142,15,169,179,161,26,141,24,88,231,10,251,251,254,169,28,4,205,229,136,102,231,159,14,46,19,71,103,250,164,97,192,98,64,72,183,182,249,70,83,207,162,244,47,64,134,116,79,141,29,17,76,181,18,173,191,93,117,
883 26,40,219,250,35,95,107,185,251,35,162,202,244,220,169,55,144,111,148,30,110,97,169,220,190,78,50,145,193,53,19,7,104,152,56,4,41,153,187,74,101,98,19,91,6,158,49,188,252,223,49,95,98,159,55,196,176,181,170,35,134,221,245,106,49,108,70,143,230,216,237,
884 140,29,215,147,186,62,195,246,138,7,164,7,154,94,160,25,138,235,232,73,18,131,62,55,202,162,15,48,14,174,117,162,157,73,59,139,44,13,31,137,234,87,240,47,228,112,100,105,77,234,32,79,226,58,249,230,28,128,13,228,161,159,9,73,24,37,143,8,29,39,155,175,
885 213,47,16,59,218,249,140,196,206,76,251,241,217,130,41,175,17,60,133,36,79,35,195,51,48,185,25,178,86,231,153,17,171,246,182,81,8,43,229,113,147,60,78,119,48,113,11,183,17,203,189,162,154,119,162,154,111,17,163,31,144,173,214,126,32,81,167,255,5,146,
886 179,149,23,47,206,129,139,18,89,220,197,189,176,68,22,59,228,241,28,72,137,98,68,252,130,44,143,148,96,171,149,40,204,1,11,194,4,17,62,164,243,24,118,67,252,35,148,66,251,24,55,194,62,56,201,94,67,142,238,126,159,44,114,169,223,80,75,3,4,10,0,0,8,8,0,
887 10,178,149,71,133,165,180,23,103,18,0,0,198,42,0,0,38,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,46,99,108,97,115,115,157,89,11,120,84,213,181,94,43,243,56,147,147,3,36,
888 145,0,131,60,34,15,201,99,146,0,66,128,240,50,68,84,148,4,48,8,134,135,120,72,78,146,129,201,76,152,153,0,81,168,162,212,42,245,81,171,162,96,125,87,169,173,86,69,73,136,81,172,173,239,98,109,171,125,221,62,108,239,237,245,222,91,219,123,111,123,219,
889 122,107,91,233,191,246,153,153,204,76,14,38,246,227,227,236,61,123,175,189,214,218,235,241,239,181,119,222,252,248,185,19,68,52,139,79,230,210,14,250,127,249,252,69,62,31,201,231,175,26,253,45,151,254,78,31,235,228,161,83,58,237,96,210,169,137,89,227,
890 28,157,116,105,93,58,25,236,214,217,195,94,153,214,52,246,105,156,155,199,58,231,233,84,192,134,78,249,60,66,227,145,58,21,241,168,60,206,231,130,60,46,228,51,228,51,90,227,34,157,14,240,24,31,143,213,105,60,143,211,216,175,211,36,30,239,227,51,229,247,
891 4,249,76,20,138,73,58,93,195,147,125,92,44,35,103,201,103,138,140,76,245,241,52,104,201,211,125,124,182,198,51,116,10,48,139,228,18,141,75,117,170,98,246,113,153,180,229,242,9,200,138,10,249,84,10,131,42,225,59,83,62,179,68,79,181,110,118,30,159,195,
892 115,228,83,160,241,92,157,22,115,181,198,243,116,90,202,243,53,94,160,113,141,78,203,120,161,78,181,188,72,136,22,107,188,68,167,243,197,10,75,117,186,80,102,22,243,185,26,215,234,116,177,48,92,198,115,124,92,39,86,57,79,102,150,251,104,167,72,57,95,
893 62,23,232,124,33,175,144,222,69,26,95,156,71,235,120,165,143,235,53,110,144,238,42,17,185,218,199,107,68,239,75,124,220,40,191,215,106,124,169,78,87,8,227,117,92,32,189,245,226,138,128,244,2,26,95,230,227,38,217,215,6,157,90,121,163,244,54,249,120,179,
894 88,231,114,157,183,240,21,58,155,188,213,199,205,162,9,252,209,162,179,197,173,62,110,147,201,118,141,131,76,196,100,172,8,135,173,104,93,200,140,197,172,24,211,152,85,157,241,96,36,220,24,143,6,195,109,117,145,142,78,51,106,198,35,81,141,183,49,77,174,
895 51,99,214,138,112,204,10,199,130,241,224,78,43,155,136,41,223,94,157,190,110,59,211,184,75,195,219,195,145,93,97,123,114,181,25,141,89,209,198,184,25,183,52,14,65,226,197,167,153,235,96,42,112,24,14,51,21,213,7,99,49,136,182,103,107,163,109,106,10,123,
896 169,109,141,91,81,123,52,166,113,132,105,180,26,57,63,24,141,197,27,187,182,66,175,14,51,220,2,6,203,172,214,72,212,202,26,215,184,51,101,128,218,93,102,212,202,144,139,60,200,203,24,192,126,141,116,107,49,157,177,106,245,218,21,171,26,182,52,212,214,
897 47,223,178,186,118,237,218,229,151,52,48,249,87,110,51,119,154,85,93,241,96,168,42,106,181,89,187,171,86,155,113,104,21,94,200,52,42,98,43,187,172,59,201,99,84,26,117,189,217,9,154,220,198,96,91,216,140,119,69,177,195,229,153,179,139,236,159,33,51,220,
898 86,101,51,88,184,50,18,109,171,106,139,154,45,33,171,170,57,20,172,74,236,109,101,48,108,217,202,46,92,2,158,5,102,40,20,217,85,31,220,109,181,36,204,197,196,27,176,3,53,158,225,47,204,20,182,88,157,81,171,217,84,190,128,20,40,15,27,218,178,131,145,42,
899 53,180,62,26,196,48,88,159,49,77,66,41,170,150,158,23,140,153,91,67,22,44,238,93,20,12,7,227,75,152,92,37,165,235,152,220,117,145,22,75,54,11,181,26,186,58,182,90,209,181,66,8,81,43,35,205,102,104,157,25,13,202,239,196,160,59,222,30,132,26,83,62,97,111,
900 182,103,68,124,73,74,175,132,74,34,47,63,123,144,201,211,41,75,152,230,149,108,28,108,197,210,108,81,138,127,75,154,64,112,200,107,30,248,9,193,14,108,0,157,203,119,55,91,201,128,196,30,230,151,164,81,173,128,38,178,195,225,137,51,148,194,9,127,49,205,
901 25,210,26,211,6,101,15,184,120,173,112,11,50,6,238,94,129,208,138,36,227,87,44,239,160,190,128,132,102,19,205,194,218,72,66,182,203,20,14,57,193,105,200,176,180,136,84,251,65,214,47,76,13,103,110,19,113,215,153,189,49,7,183,58,109,94,87,11,19,121,94,
902 57,244,214,51,55,61,38,51,170,186,59,147,145,229,228,13,135,164,146,148,89,57,108,218,97,121,115,242,64,6,2,129,18,145,20,171,13,15,228,227,180,146,65,140,156,2,94,87,140,86,33,189,91,135,27,204,78,108,220,102,52,10,119,186,67,86,24,77,65,115,54,108,
903 124,114,250,37,160,37,21,44,2,26,131,88,196,50,209,173,209,138,99,193,57,153,35,139,134,135,95,122,167,96,206,165,49,179,13,78,244,167,123,166,182,179,19,17,110,103,21,18,223,136,100,32,244,232,72,180,197,138,38,147,200,30,21,181,0,111,173,202,21,201,
904 145,252,52,181,86,6,99,162,169,107,187,213,13,216,216,105,134,186,32,212,99,133,227,81,249,189,220,110,139,50,145,121,154,26,150,85,145,174,184,4,160,163,134,200,64,156,67,29,234,56,200,100,113,126,114,24,52,35,51,148,134,114,158,16,172,129,214,213,97,
905 238,102,154,154,109,65,199,240,157,150,181,161,211,144,45,116,218,134,211,49,227,184,122,238,208,199,147,227,58,247,182,72,16,17,182,168,36,109,125,93,36,20,178,154,149,199,157,66,218,1,172,60,56,38,196,201,233,72,182,106,235,54,48,17,220,83,147,177,
906 148,43,178,101,192,21,49,43,85,200,120,183,118,181,182,138,79,198,13,18,180,76,205,136,184,86,41,31,50,207,247,1,134,139,202,100,99,75,157,119,36,147,195,220,212,167,206,232,84,42,234,102,115,179,21,139,77,155,59,115,38,211,244,146,161,65,160,20,5,64,
907 206,238,153,3,43,231,203,202,115,134,179,114,80,209,146,100,177,64,88,228,37,126,204,82,170,44,24,62,195,65,197,133,111,17,232,237,66,66,111,140,116,69,155,81,195,9,142,143,25,196,162,82,24,24,116,23,221,109,208,65,186,211,160,47,208,109,6,221,65,119,
908 50,141,79,242,94,213,21,239,236,138,195,166,150,217,97,139,208,56,110,208,15,184,203,160,195,188,19,31,122,80,62,247,0,16,7,54,120,161,25,107,199,38,113,226,59,232,40,11,119,105,188,219,224,110,190,210,160,135,233,49,166,226,161,142,131,65,236,145,198,
909 26,95,101,240,30,222,43,12,63,35,159,171,153,170,135,60,246,28,235,90,89,125,141,198,251,12,190,150,175,211,120,191,193,159,229,235,13,254,28,223,0,156,203,142,45,131,111,228,3,136,131,138,10,131,63,207,55,49,85,12,41,52,189,234,22,89,55,227,24,168,168,
910 216,120,249,226,205,229,6,223,194,7,12,190,149,191,96,240,109,252,69,131,111,231,59,0,104,37,75,99,165,9,138,197,149,101,6,223,201,7,133,232,46,131,239,230,67,0,109,53,47,211,50,75,135,196,105,121,137,177,138,205,149,101,72,203,52,56,77,86,155,203,163,
911 209,72,212,224,195,162,244,216,193,89,27,12,181,72,66,51,246,117,15,127,201,224,123,249,62,131,239,23,67,60,192,119,24,252,32,63,100,240,195,124,200,224,47,211,61,6,63,194,143,106,124,196,224,175,8,183,108,7,14,202,54,131,31,227,175,38,3,34,19,191,37,
912 126,190,157,225,224,181,81,203,130,131,153,102,13,179,128,27,184,78,137,117,191,38,159,199,13,126,130,191,158,220,103,2,212,195,219,173,150,84,112,206,27,38,243,236,75,156,193,79,242,83,25,91,169,141,70,205,110,57,50,52,126,26,129,17,40,54,232,151,244,
913 43,131,143,138,1,159,225,103,13,62,198,79,105,220,99,208,79,185,215,224,227,89,203,83,167,136,193,125,18,113,238,233,177,233,225,140,192,179,49,218,224,231,248,6,131,251,249,121,8,153,174,188,244,2,2,41,86,92,44,11,12,62,33,105,56,198,25,141,53,126,81,
914 232,191,129,34,37,173,70,3,218,182,153,33,20,187,93,29,56,172,83,133,56,106,47,123,235,197,51,166,199,102,20,7,99,197,102,8,8,208,210,93,220,130,34,32,108,181,84,138,22,47,137,153,191,105,240,183,36,27,106,234,204,112,56,18,47,54,91,90,138,35,105,107,
915 77,172,13,39,71,154,109,154,88,220,140,198,139,119,5,227,237,197,51,42,102,84,26,116,11,221,170,241,203,6,191,194,175,106,252,154,100,196,245,76,27,135,201,177,56,18,14,117,23,55,71,194,113,51,24,134,162,157,237,102,24,219,137,6,155,139,155,219,225,177,
916 102,132,88,12,241,41,178,84,179,101,70,229,39,6,172,237,124,141,95,55,248,13,81,100,66,201,166,165,123,54,117,94,85,27,2,223,189,27,83,189,138,45,155,203,74,13,126,147,17,188,83,134,140,37,92,14,206,29,146,104,200,231,131,5,67,178,56,221,75,194,112,226,
917 221,249,157,129,105,246,167,191,71,13,7,138,79,243,70,49,119,120,112,58,232,201,98,184,249,156,253,112,193,20,248,52,151,165,225,224,125,230,163,71,249,233,233,29,82,47,253,188,233,142,197,173,142,65,15,9,246,113,188,112,160,172,207,58,168,85,89,63,122,
918 208,45,127,131,186,230,103,161,22,202,61,175,25,19,236,146,10,104,227,224,186,176,116,112,153,63,34,3,186,192,64,21,252,224,52,174,164,244,116,165,163,255,52,133,171,232,52,214,249,198,143,153,237,195,40,132,134,190,74,14,125,23,158,165,164,21,14,214,
919 2,245,84,48,113,101,7,180,102,108,47,237,42,95,56,120,20,184,220,110,198,26,172,221,113,245,160,131,186,209,29,86,63,70,151,148,58,21,223,249,29,102,247,86,185,189,71,227,201,219,100,81,137,67,89,187,65,222,39,118,116,153,161,88,22,65,210,93,32,88,49,
920 200,106,255,188,77,52,156,209,205,237,226,220,220,88,215,214,88,34,162,139,74,86,56,150,226,35,36,232,211,182,176,193,97,11,255,204,237,219,241,157,102,100,66,152,24,89,189,215,204,28,198,115,64,214,179,135,22,12,183,88,187,229,93,192,141,45,173,16,31,
921 175,112,222,154,174,32,74,37,43,211,50,39,215,124,90,217,121,137,51,43,118,177,220,154,189,166,186,244,2,93,28,121,159,166,90,147,130,63,30,73,221,221,75,28,85,31,217,102,197,81,245,12,168,175,219,21,83,200,18,52,243,134,172,112,91,188,93,133,41,12,144,
922 23,9,55,68,194,73,7,230,43,202,228,54,150,139,126,174,54,169,204,206,118,138,61,167,192,78,3,11,85,210,185,112,158,35,152,218,162,145,174,206,245,65,145,91,152,14,13,242,228,33,113,55,99,232,204,79,68,104,22,178,36,207,74,53,231,133,176,218,80,232,19,
923 224,7,233,162,99,67,169,135,131,130,140,28,183,31,96,70,102,34,160,109,208,243,172,88,115,52,152,124,237,235,148,39,140,249,14,54,25,166,149,188,219,173,110,101,158,145,3,147,245,166,88,199,35,1,9,191,248,212,107,138,162,241,65,252,58,251,141,197,139,
924 174,29,62,246,43,201,192,11,65,122,8,12,1,235,233,47,41,19,156,50,123,32,216,60,173,161,174,24,180,26,237,100,77,28,164,195,140,221,196,251,192,130,79,165,107,102,80,59,162,35,92,174,171,234,50,102,135,86,90,241,159,241,119,133,20,174,69,213,237,125,
925 128,81,29,42,198,70,224,171,21,110,182,50,108,100,47,175,183,23,45,116,224,92,159,228,55,42,141,155,252,205,8,152,210,98,197,130,81,171,37,117,15,19,4,232,194,132,214,140,112,85,183,243,79,72,122,135,191,138,208,89,180,131,154,136,200,75,227,165,120,
926 70,47,71,110,239,196,244,69,213,191,29,255,113,145,87,253,131,170,45,148,123,62,81,254,56,185,43,226,247,40,208,226,218,142,239,151,240,107,49,185,209,195,104,89,63,121,154,142,146,183,151,180,94,242,61,173,24,220,139,175,142,150,104,41,141,164,115,233,
927 62,244,12,155,156,238,167,7,136,20,171,7,19,172,54,147,71,209,78,44,235,165,92,176,211,155,122,41,239,24,185,208,53,154,202,221,189,52,226,24,241,0,227,66,72,38,90,134,239,2,176,171,163,9,116,158,18,48,198,102,146,16,32,189,187,232,33,136,216,71,15,211,
928 151,49,103,107,157,163,168,114,203,202,143,211,200,30,26,245,84,138,173,87,233,183,42,141,85,110,138,85,46,61,66,143,98,254,8,250,178,237,175,224,255,195,244,24,185,132,169,235,32,244,207,3,27,119,63,229,55,245,83,65,83,217,179,228,234,163,66,166,94,
929 58,163,151,70,215,247,83,81,83,89,128,123,105,76,67,121,31,141,197,213,199,237,119,247,209,56,166,67,124,82,122,126,166,111,208,248,26,79,133,223,211,67,103,30,226,39,252,158,194,9,61,52,241,16,229,247,211,164,38,89,58,185,225,8,223,139,225,226,30,58,
930 235,16,141,7,165,223,3,226,41,61,52,181,198,235,247,246,208,52,16,236,1,193,116,69,80,233,247,228,47,238,161,179,171,189,54,101,17,40,102,8,173,230,215,252,248,229,190,66,173,45,193,162,11,176,168,84,45,58,75,209,186,61,9,82,176,245,123,188,41,186,201,
931 71,169,236,48,21,129,186,28,212,135,41,175,159,2,240,84,197,139,88,2,162,26,175,108,219,239,237,163,202,28,68,204,24,225,229,77,72,84,218,209,187,9,222,53,154,162,212,18,148,251,42,250,169,10,140,102,22,206,234,161,217,66,60,187,135,206,145,118,106,141,
932 207,239,235,161,57,135,168,208,239,75,110,23,170,208,1,25,158,219,224,169,206,45,202,21,147,85,63,68,243,177,43,252,146,125,205,168,209,51,89,234,9,150,122,138,229,220,134,253,185,124,228,212,203,71,104,41,116,201,73,87,55,49,127,132,166,15,165,151,16,
933 233,202,101,243,26,142,124,60,179,162,135,230,7,36,158,92,42,158,142,82,0,223,141,52,142,54,209,84,196,120,45,93,78,23,209,22,90,75,87,144,137,127,219,105,43,117,83,51,93,77,45,116,19,89,72,177,86,68,89,27,61,75,237,244,18,5,233,187,180,141,126,6,170,
934 247,40,68,31,82,7,157,162,48,143,160,8,143,165,78,158,72,59,184,152,162,92,74,113,158,71,93,220,72,59,121,35,237,226,109,212,205,157,116,37,239,165,171,248,0,237,225,71,105,47,63,142,223,199,104,31,63,79,215,241,171,180,159,223,166,27,248,3,186,145,127,
935 79,55,243,31,233,86,254,43,221,198,31,211,237,57,146,254,18,251,61,72,176,110,100,195,87,233,107,248,222,73,147,233,113,122,2,189,71,144,108,50,166,65,51,195,158,133,46,54,157,6,105,83,232,235,244,36,233,28,67,206,63,133,21,185,208,106,171,154,245,65,
936 110,110,162,87,74,175,211,211,160,211,160,131,189,214,135,157,253,1,214,122,18,191,107,249,57,122,6,61,15,149,243,59,176,196,49,73,245,28,119,50,15,209,123,4,250,225,214,192,191,69,110,29,71,150,78,229,95,81,31,61,7,155,247,39,49,70,81,61,159,145,173,
937 54,196,189,128,254,9,122,49,129,58,115,49,34,25,175,149,185,33,166,108,0,8,108,224,186,27,74,28,74,3,46,45,5,92,7,157,89,228,12,98,113,47,88,220,231,192,98,31,146,253,37,155,5,187,161,185,134,177,77,130,27,189,180,160,190,188,161,226,68,181,219,85,237,
938 41,242,20,185,31,66,74,22,121,102,215,120,3,201,220,170,201,193,118,23,230,208,250,253,30,196,239,47,2,125,180,136,169,161,194,6,19,26,91,145,192,146,197,130,48,129,30,90,114,228,212,251,101,3,49,57,5,214,38,32,153,15,182,153,4,187,204,68,91,13,47,172,
939 129,31,214,195,207,27,224,55,209,119,19,252,53,9,113,96,123,69,71,36,127,19,171,92,192,242,18,250,22,104,220,84,64,211,225,159,39,176,195,53,160,120,153,94,193,216,98,64,174,248,204,165,56,36,177,115,19,189,170,176,211,135,200,127,13,222,207,73,121,202,
940 30,121,67,25,241,77,250,182,109,17,215,42,240,3,154,242,91,253,180,180,169,188,151,206,5,124,214,2,86,151,53,1,5,235,122,233,188,134,138,20,190,246,209,114,152,162,159,206,135,233,46,168,113,87,40,107,212,0,195,18,246,56,41,189,132,65,188,54,155,11,133,
941 205,10,176,81,72,136,140,191,40,201,228,98,48,89,137,204,214,108,46,185,254,220,4,151,117,210,75,64,180,46,32,82,237,126,128,166,248,125,78,24,211,71,245,96,118,132,38,15,76,79,24,60,125,234,81,191,175,176,225,56,173,130,20,168,176,90,216,190,74,121,
942 138,247,97,210,10,215,96,192,237,207,245,235,125,116,137,75,232,103,34,32,228,160,104,148,61,139,118,94,9,6,165,221,36,233,37,180,211,138,60,130,79,213,199,105,109,181,7,225,33,75,46,29,188,164,51,181,100,157,88,161,143,214,171,229,74,248,153,129,194,
943 203,220,47,80,83,147,2,104,212,186,141,61,180,17,27,90,16,72,238,103,19,182,82,4,208,219,92,120,185,189,41,79,6,121,147,59,193,209,94,120,234,38,132,225,150,167,83,33,120,37,2,75,64,38,23,9,236,71,10,151,66,187,217,72,224,213,8,11,19,105,27,70,154,238,
944 66,154,74,150,221,15,173,78,32,244,254,5,1,246,115,132,209,251,8,151,223,33,132,62,66,208,124,76,39,89,167,183,0,137,223,225,124,122,155,231,208,119,249,92,250,30,215,209,247,185,141,222,225,93,244,46,223,74,63,228,87,232,199,252,58,253,132,79,130,75,
945 18,222,14,162,98,56,41,96,69,215,0,152,37,100,115,33,251,49,122,11,188,53,72,191,157,190,67,111,35,60,223,167,105,0,187,39,49,251,59,132,246,247,212,138,213,208,245,40,194,221,75,53,100,67,148,7,178,13,5,126,26,79,82,105,113,12,208,216,6,184,255,62,189,
946 139,177,53,224,168,198,36,168,147,105,129,222,15,232,135,8,249,92,126,153,126,68,63,70,18,248,249,89,250,9,52,112,209,108,190,7,218,222,70,110,236,236,5,250,169,74,51,73,154,57,104,109,61,127,150,210,243,231,0,85,91,214,47,48,102,243,120,35,197,227,61,
947 164,165,46,47,203,137,250,231,151,104,161,7,93,212,79,87,192,153,102,189,123,73,249,107,228,45,92,179,178,172,143,182,166,23,38,52,61,81,152,212,120,38,30,166,220,0,206,252,230,245,1,57,236,90,164,231,2,178,252,8,158,181,6,192,165,82,210,86,244,129,38,
948 34,115,36,164,22,208,175,1,30,255,14,160,121,31,64,243,159,40,5,255,11,149,219,111,104,57,125,160,188,177,4,218,4,80,110,253,43,253,27,246,230,71,63,1,250,56,42,127,141,117,164,122,239,195,182,2,23,203,232,63,192,35,7,220,133,207,157,233,160,175,232,
949 127,131,214,134,250,15,0,178,71,233,183,9,144,109,135,101,100,215,39,202,235,3,39,150,184,170,221,69,238,137,15,209,174,64,145,123,118,141,71,33,171,39,81,139,248,251,169,181,169,176,45,145,0,158,198,227,212,222,75,65,84,56,146,228,219,146,243,219,179,
950 231,143,82,72,44,211,209,67,225,195,9,154,72,54,205,126,55,0,251,198,126,90,220,36,165,103,47,117,214,7,20,248,164,227,247,164,138,84,42,187,149,94,238,64,18,1,222,11,12,28,47,213,52,2,223,63,209,104,250,51,32,253,67,154,79,127,129,109,62,162,203,232,
951 111,40,34,254,78,123,48,119,45,140,114,11,51,61,206,56,49,216,69,207,227,168,73,66,251,104,148,24,71,213,49,155,131,12,16,104,207,65,127,175,130,118,23,236,124,165,130,118,55,14,132,17,42,174,221,56,13,167,165,160,253,68,10,218,79,36,160,253,22,248,87,
952 114,34,39,223,135,76,249,239,196,233,88,133,86,60,35,22,118,63,158,85,103,87,167,157,139,30,250,31,97,136,197,255,75,191,119,88,236,202,46,210,157,23,255,193,81,114,206,240,36,255,31,253,209,97,49,15,67,50,236,245,167,212,173,168,90,205,16,141,63,131,
953 118,244,80,20,88,238,62,66,110,215,51,84,86,24,59,78,241,103,40,244,180,170,33,6,138,132,106,228,200,60,244,254,172,36,125,136,172,22,140,28,69,93,184,175,137,98,23,162,221,141,59,91,55,218,43,209,46,67,123,21,218,61,104,247,130,199,103,208,94,173,252,
954 184,131,246,185,117,186,22,237,117,24,159,132,118,63,218,207,162,189,30,243,69,104,63,135,246,6,180,55,186,115,232,0,218,207,131,254,38,180,55,131,110,29,208,244,29,111,238,63,0,80,75,3,4,10,0,0,8,8,0,10,178,149,71,95,15,62,210,163,2,0,0,41,7,0,0,51,
955 0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,65,102,116,101,114,79,112,116,105,111,110,115,46,99,108,97,115,115,173,149,109,79,211,80,20,199,255,183,27,235,232,6,27,40,
956 136,207,11,130,64,11,148,161,162,136,49,81,124,8,201,68,19,116,137,188,49,119,107,29,213,174,53,119,69,241,35,248,93,124,33,137,74,162,137,31,192,15,101,60,183,171,163,178,145,130,49,77,122,207,57,247,220,223,57,231,222,115,219,159,191,190,253,0,80,198,
957 138,6,21,211,26,178,152,233,39,73,87,49,171,33,141,121,13,38,22,84,148,85,44,50,228,234,126,179,201,61,171,226,120,54,195,120,197,23,13,179,33,184,229,218,102,221,117,204,39,92,180,108,107,117,223,103,133,33,115,203,241,156,224,54,195,228,116,178,251,
958 76,149,33,189,234,91,4,47,72,195,250,118,179,102,139,167,188,230,146,101,184,226,215,185,91,229,194,145,122,100,76,7,91,78,139,33,127,231,101,96,139,199,111,2,199,247,164,186,230,121,182,88,117,121,171,101,147,106,30,140,28,139,25,38,33,38,226,235,41,
959 235,98,147,191,175,217,27,1,23,65,219,200,48,50,93,121,197,223,114,211,229,94,195,220,8,132,227,53,86,102,54,25,82,92,52,100,114,93,147,12,3,190,23,67,168,184,194,48,212,150,219,81,105,50,160,26,54,123,144,123,196,74,46,162,139,45,247,223,143,242,207,
960 249,222,186,239,253,169,38,247,87,6,119,123,213,150,28,47,30,73,197,85,6,48,172,29,225,152,147,201,229,176,21,148,157,5,249,42,51,76,28,101,9,131,182,225,111,139,186,253,192,145,173,49,218,229,51,47,139,204,35,135,188,124,93,203,163,31,154,138,37,134,
961 229,68,250,51,239,181,231,191,243,122,156,222,216,97,83,50,198,117,21,55,242,88,198,77,134,185,99,245,32,195,236,113,182,159,97,241,248,221,65,55,56,121,87,25,166,186,78,244,176,243,42,37,249,49,124,232,213,235,255,161,97,226,173,248,175,233,118,197,
962 165,27,204,45,235,254,78,32,120,149,187,219,246,33,31,129,42,74,244,197,204,66,182,255,176,236,41,146,250,160,200,62,35,203,0,105,15,73,83,104,204,233,108,15,138,110,124,65,106,151,84,5,131,244,30,68,138,86,214,208,199,234,208,152,133,2,217,70,219,238,
963 40,226,4,16,74,18,203,232,57,137,145,8,186,68,163,244,82,82,31,59,172,12,228,37,220,138,49,148,14,67,33,203,169,144,49,134,179,17,227,17,173,160,232,40,124,71,250,185,161,127,70,74,102,216,247,233,0,176,25,2,75,109,215,14,176,16,1,165,116,142,36,133,
964 228,243,184,24,161,239,70,53,107,146,106,124,69,70,223,167,106,114,134,9,100,89,43,150,170,214,33,107,109,114,81,22,62,30,241,238,145,143,140,159,209,141,61,176,221,3,25,190,136,101,152,233,112,50,184,20,110,155,148,38,48,25,102,116,57,92,57,69,39,5,
965 232,116,78,42,12,12,145,215,105,26,207,164,229,15,208,192,5,26,75,52,162,152,165,127,160,129,57,104,191,1,80,75,3,4,10,0,0,8,8,0,10,178,149,71,71,209,102,236,146,2,0,0,156,5,0,0,51,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,
966 109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,105,111,110,83,116,114,105,110,103,46,99,108,97,115,115,149,83,237,78,19,65,20,61,211,15,182,148,181,93,202,151,40,154,130,85,218,45,101,41,226,39,136,198,26,19,35,1,19,12,6,255,13,237,
967 88,150,108,119,155,221,197,232,163,248,4,254,149,68,32,209,196,7,240,161,140,119,166,43,66,219,4,248,115,231,222,59,115,238,61,231,206,204,239,63,63,126,1,168,226,217,32,174,160,148,38,99,166,145,65,89,134,115,41,84,210,152,135,165,97,33,13,13,101,105,
968 170,210,44,166,112,87,158,93,210,112,95,195,3,134,56,247,155,12,185,181,61,254,145,91,14,119,155,214,102,232,219,110,115,153,97,192,107,135,182,231,146,179,98,187,118,184,202,48,91,236,61,215,155,41,109,49,36,106,94,67,48,100,215,108,87,172,239,183,118,
969 132,255,150,239,56,66,118,242,234,220,217,226,190,45,227,40,153,8,119,237,128,65,223,80,13,59,101,40,124,229,186,194,175,57,60,8,4,237,90,107,158,223,180,154,62,111,56,194,170,59,182,85,243,90,45,238,54,100,139,55,220,15,132,95,56,141,39,1,153,166,8,
970 95,216,65,219,225,159,215,121,139,250,140,22,75,253,132,166,66,175,227,107,120,200,0,134,215,23,210,121,62,159,170,154,69,236,211,130,52,85,105,22,25,10,23,193,49,12,241,122,93,4,65,161,186,180,64,240,90,241,146,234,251,10,77,111,122,251,126,93,188,180,
971 229,208,199,123,42,204,75,136,142,97,24,58,114,24,145,230,145,142,44,12,98,94,169,104,120,172,99,25,43,12,19,221,165,159,239,219,78,67,248,58,158,96,85,199,13,76,49,176,138,142,235,152,210,240,148,161,114,41,234,12,198,255,250,27,59,123,162,30,50,204,
972 156,63,51,122,203,69,57,110,163,155,29,233,14,66,238,135,193,59,59,220,101,24,235,115,185,165,247,244,202,121,187,45,220,6,209,237,119,160,39,21,105,166,169,230,207,227,134,60,253,184,12,253,214,24,77,148,198,73,94,78,78,153,214,164,202,141,208,155,27,
973 165,104,155,162,56,173,89,243,24,113,179,124,136,132,57,119,8,118,160,160,99,10,150,160,247,57,132,4,211,49,200,168,40,203,96,156,242,249,14,12,19,184,6,40,79,182,97,202,147,141,98,228,211,109,68,109,62,168,24,88,49,191,35,145,75,30,97,224,11,166,126,
974 66,219,62,70,74,134,131,148,103,180,28,33,253,21,147,255,54,134,206,108,124,59,225,52,32,107,177,97,197,67,239,212,141,120,48,249,20,162,158,22,173,114,47,105,30,65,239,6,143,159,2,39,59,96,67,138,205,71,224,13,146,71,194,161,153,229,185,99,196,14,186,
975 224,154,130,155,157,35,39,51,208,48,29,205,64,195,140,154,129,244,110,161,128,184,145,194,109,220,233,97,70,226,186,153,105,103,152,77,171,210,49,204,42,91,196,164,186,146,24,221,238,61,92,69,26,55,105,133,145,250,11,80,75,3,4,10,0,0,8,8,0,10,178,149,
976 71,120,38,226,84,96,4,0,0,26,11,0,0,59,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,65,98,115,116,114,97,99,116,80,114,111,112,101,114,116,105,101,115,67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,
977 97,115,115,173,86,91,119,26,85,20,254,14,12,76,50,153,230,130,161,53,38,173,73,12,21,2,13,173,182,105,45,52,74,211,212,96,201,69,169,137,105,43,118,128,9,153,20,102,112,102,136,68,255,131,239,174,229,123,95,235,11,109,92,75,87,159,253,29,254,14,117,159,
978 129,32,100,176,165,89,194,226,92,246,217,103,239,111,127,251,156,125,248,227,175,95,127,7,112,5,63,72,56,135,219,34,150,37,156,197,29,222,172,72,184,139,79,37,172,34,205,167,159,241,209,61,9,25,172,73,88,199,198,16,54,241,249,16,190,64,150,55,247,7,240,
979 165,4,15,182,6,176,61,132,113,124,197,39,59,188,121,32,226,33,223,255,72,196,215,34,114,12,254,164,166,107,246,18,131,55,28,217,98,16,150,141,162,202,48,146,209,116,117,189,86,201,171,230,125,37,95,38,73,32,99,20,148,242,150,98,106,124,222,18,10,246,
980 158,102,49,92,207,24,102,41,94,50,149,98,89,141,23,202,90,60,149,183,108,83,41,216,155,166,81,85,77,91,83,173,101,163,82,81,244,34,55,187,108,232,7,36,84,205,4,195,88,73,61,86,58,220,168,218,154,161,51,140,135,35,153,125,229,64,137,151,21,189,20,207,
981 218,166,166,151,72,117,194,165,122,71,181,21,173,172,22,25,166,122,172,89,5,83,107,89,28,44,24,250,174,86,170,153,4,57,20,62,9,182,3,218,166,98,90,132,139,19,225,175,58,99,134,217,215,235,147,182,209,114,245,42,237,38,50,210,22,11,77,10,24,110,187,208,
982 56,38,139,29,187,18,77,50,106,182,86,142,175,41,213,68,228,196,156,50,87,53,40,9,44,77,73,122,162,30,110,41,229,154,186,82,175,154,170,101,57,144,2,189,216,244,104,115,196,116,135,169,52,37,68,177,13,30,140,216,12,198,234,17,141,27,29,131,84,109,103,
983 153,31,156,147,232,206,118,31,156,195,234,241,225,185,214,173,154,116,195,116,75,150,184,191,149,122,65,109,34,20,241,13,101,55,171,149,116,197,118,178,251,227,27,243,217,167,219,200,41,193,174,246,13,200,217,185,145,223,87,11,118,34,226,22,81,202,234,
984 151,121,115,165,59,163,237,229,226,127,93,194,94,87,47,121,170,112,28,246,179,70,205,44,168,119,53,158,194,104,127,23,125,129,219,146,241,54,38,24,70,79,218,149,241,46,166,101,204,96,90,196,99,25,239,67,17,145,151,81,64,81,198,44,95,81,177,43,162,196,
985 87,246,68,104,50,246,241,68,68,89,70,5,186,8,67,70,21,223,202,48,193,175,192,45,25,54,106,12,144,113,128,239,100,212,113,200,155,239,25,206,116,197,43,35,130,121,58,129,167,42,91,20,246,27,48,237,214,238,208,74,153,165,90,69,213,237,246,137,102,152,126,
986 93,181,161,114,27,126,232,206,78,164,159,194,243,10,227,199,213,87,222,83,172,99,88,68,233,92,184,47,195,195,180,171,171,228,46,134,255,39,136,174,235,194,144,236,199,182,107,95,219,195,197,254,52,169,176,208,171,226,84,83,226,33,16,238,172,0,25,205,
987 226,87,110,184,91,194,48,160,181,170,40,149,189,174,13,29,213,53,224,150,82,201,37,254,214,213,186,237,60,195,15,232,97,213,157,73,247,83,216,190,234,162,166,23,213,250,198,46,67,176,23,21,105,254,36,212,104,251,141,176,123,119,159,197,102,208,170,241,
988 67,77,246,120,40,233,116,207,39,57,24,238,37,23,102,232,255,197,57,240,143,8,198,111,61,181,239,208,44,78,61,221,77,248,230,159,131,253,66,3,15,38,169,245,59,194,32,166,192,239,173,163,128,243,184,0,8,2,47,13,78,63,211,234,103,121,79,58,239,97,174,101,
989 180,74,218,94,234,47,70,125,191,193,179,227,157,111,192,155,221,17,168,19,178,13,248,214,98,13,248,215,98,52,21,27,24,216,254,215,107,0,2,181,147,4,116,138,190,231,17,34,143,28,193,116,211,90,19,129,51,10,209,143,145,222,8,85,160,48,237,102,188,120,144,
990 22,247,254,39,121,247,83,159,139,114,191,13,12,54,32,29,97,136,97,253,210,17,100,134,159,176,66,131,51,12,47,225,185,41,76,8,129,225,6,70,22,125,65,223,207,24,139,209,116,244,8,99,94,108,63,197,36,205,188,65,95,3,129,9,33,232,19,30,55,240,86,107,233,
991 239,23,177,103,228,193,235,160,190,64,148,130,216,8,17,19,11,196,194,135,196,67,138,240,237,16,178,71,132,139,71,176,68,136,22,16,165,111,140,208,133,112,21,151,104,46,96,12,247,40,5,151,157,248,114,237,248,114,244,111,243,3,135,245,28,89,187,74,241,
992 93,107,231,129,75,22,73,114,157,198,2,73,110,224,35,135,191,155,163,41,242,149,160,17,231,96,149,44,114,155,210,124,52,246,18,227,13,4,159,245,204,109,147,89,169,237,89,66,178,229,89,194,45,66,221,233,199,211,242,244,49,62,113,250,212,63,80,75,3,4,10,
993 0,0,8,8,0,10,178,149,71,147,157,188,21,188,2,0,0,32,5,0,0,44,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,80,97,114,115,101,100,67,111,109,109,97,110,100,76,105,110,101,79,112,116,105,111,110,46,99,108,97,115,115,141,83,91,79,19,65,20,
994 254,182,183,45,237,34,165,92,20,65,40,23,161,45,202,138,23,188,80,171,4,49,33,105,196,164,6,131,111,67,59,89,134,108,119,155,221,45,17,127,10,207,38,190,248,160,137,74,144,68,125,246,71,25,207,236,46,165,20,73,124,153,157,57,251,157,239,124,223,57,51,
995 191,255,124,255,1,96,17,43,41,100,80,80,81,76,33,130,66,15,250,48,159,162,229,134,138,155,73,44,164,144,128,158,198,45,44,38,113,91,126,239,168,184,43,191,247,228,178,164,226,190,138,7,10,18,123,204,108,113,87,65,166,178,203,246,152,222,242,132,169,87,
996 132,235,45,43,232,169,10,195,98,94,203,225,10,102,186,126,151,130,179,201,44,67,175,122,142,176,140,229,50,165,36,74,194,18,94,89,65,52,95,216,84,16,91,181,235,148,220,87,17,22,127,209,106,108,115,231,21,219,54,41,146,173,216,53,102,110,50,71,200,115,
997 24,140,121,59,130,148,228,43,182,99,232,134,195,234,38,215,107,166,208,95,50,199,229,245,85,187,209,96,86,93,82,109,52,61,97,91,84,46,105,112,111,83,26,80,48,152,47,156,151,68,30,78,16,68,156,61,129,116,154,156,61,23,188,192,90,154,213,235,43,142,209,
998 106,112,203,83,48,148,63,143,146,142,147,172,13,201,254,75,79,114,135,185,161,98,106,209,27,5,169,170,221,114,106,252,185,144,29,24,187,192,234,130,100,210,48,132,97,5,3,167,106,87,28,135,237,75,201,26,250,145,213,112,29,179,10,38,78,171,174,155,38,55,
999 152,89,245,152,199,215,222,214,184,207,69,136,128,52,87,183,185,155,179,108,47,183,195,246,120,142,89,251,57,255,50,44,200,66,83,42,30,106,120,4,146,60,26,194,73,121,174,209,50,61,209,52,121,128,116,9,90,194,99,186,60,221,78,53,148,241,68,195,83,41,104,
1000 246,255,198,121,134,101,99,123,151,215,168,135,151,206,142,134,238,136,43,222,5,189,91,167,149,134,43,71,177,222,57,250,32,149,116,71,105,96,93,131,10,255,201,190,171,194,93,107,52,189,125,76,210,155,201,208,131,162,129,201,46,210,119,128,78,17,12,34,
1001 78,123,106,57,173,151,41,82,70,148,118,64,166,120,8,165,120,140,200,214,33,162,95,17,251,236,163,175,208,42,223,33,40,35,70,57,35,180,211,2,60,174,98,212,231,31,195,181,144,171,25,114,45,21,191,33,126,128,222,99,36,182,178,234,33,146,63,139,95,16,59,
1002 66,15,25,125,31,134,83,39,225,232,17,210,17,252,130,246,169,93,113,152,52,130,106,169,84,163,159,248,199,169,66,30,19,29,213,151,218,213,199,41,30,241,171,235,116,146,255,226,146,245,148,44,225,7,167,59,146,227,97,114,208,144,28,197,38,49,21,90,120,70,
1003 17,105,87,147,36,243,71,232,141,224,117,119,43,230,144,38,57,35,190,80,31,27,242,201,221,52,102,124,25,116,103,67,198,82,40,43,27,244,224,146,130,3,168,177,15,100,252,99,151,198,249,14,141,217,182,193,57,31,149,255,11,80,75,3,4,10,0,0,8,8,0,10,178,149,
1004 71,182,192,176,115,152,2,0,0,170,6,0,0,61,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,105,111,110,65,119,97,114,101,80,97,114,115,101,114,83,116,97,116,101,
1005 46,99,108,97,115,115,173,85,237,78,19,81,16,61,183,93,186,237,118,177,21,161,126,224,7,98,17,186,20,10,53,200,167,10,18,49,36,13,154,212,52,193,127,183,237,90,23,183,187,230,238,214,143,71,241,9,252,227,15,77,68,141,36,62,128,15,101,156,91,150,90,210,
1006 154,69,226,159,206,206,204,153,115,166,119,230,238,254,252,245,253,7,128,121,172,39,144,196,13,13,58,178,242,105,66,163,159,155,26,38,49,165,33,7,67,197,180,6,21,51,42,102,53,36,48,167,98,94,69,145,33,89,115,155,77,238,212,75,150,99,50,140,151,92,209,
1007 40,52,4,175,219,102,161,102,91,133,199,92,120,102,125,243,15,102,149,33,230,63,183,188,236,92,31,116,23,174,93,40,36,122,205,114,44,255,46,195,195,169,112,120,184,124,174,194,160,108,186,117,106,54,37,3,59,173,102,213,20,79,120,213,166,200,80,201,173,
1008 113,187,194,133,37,253,32,168,200,118,25,50,143,94,250,150,235,108,188,230,34,80,43,251,220,167,188,190,237,56,166,216,180,185,231,153,132,91,14,237,50,219,159,137,254,107,186,201,223,86,77,242,132,127,136,97,24,153,42,237,241,87,188,96,115,167,81,40,
1009 251,194,114,26,171,185,167,12,81,46,26,178,225,158,36,141,196,117,118,92,231,136,32,121,172,217,251,253,232,194,59,62,222,166,86,118,91,162,102,110,89,242,120,50,61,232,89,169,160,35,133,180,142,179,88,208,49,136,51,58,110,99,84,197,162,142,37,44,171,
1010 88,209,177,138,53,134,133,80,229,141,103,190,41,182,44,225,249,229,86,53,72,51,12,247,11,75,181,59,12,51,39,227,60,60,31,26,152,222,237,74,14,218,181,197,83,206,144,33,255,47,103,169,226,30,3,24,38,195,87,59,59,223,94,221,184,229,29,13,118,44,108,215,
1011 25,6,121,189,254,224,141,47,120,133,219,45,243,47,203,84,233,165,234,81,167,153,243,90,205,244,188,236,194,28,93,220,137,19,92,69,185,164,47,254,203,149,61,233,217,108,247,168,157,158,107,60,28,167,140,209,27,82,167,119,103,4,195,114,197,129,116,90,46,
1012 61,69,162,80,104,143,134,104,178,231,200,43,17,34,74,54,109,76,239,131,25,236,43,34,70,126,31,209,79,65,45,168,150,242,44,15,141,205,32,197,102,49,66,177,12,229,168,134,236,69,160,253,36,53,34,196,121,9,163,1,243,10,249,18,21,51,166,191,64,249,208,225,
1013 139,65,174,85,177,139,39,214,225,137,225,50,174,80,158,225,42,198,2,158,61,12,180,81,69,227,51,162,68,53,64,150,125,67,236,29,50,7,80,119,165,39,51,212,121,252,61,82,7,72,236,6,174,246,177,163,169,73,6,182,136,56,91,234,210,45,118,116,139,129,110,4,215,
1014 219,53,227,184,64,214,32,229,36,125,95,206,43,17,58,203,28,174,41,242,43,147,67,158,16,9,178,5,226,189,69,22,233,248,111,80,75,3,4,10,0,0,8,8,0,10,178,149,71,39,4,72,12,25,1,0,0,103,2,0,0,41,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,
1015 67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,141,81,77,75,195,64,16,125,211,214,198,212,175,170,39,207,34,52,10,70,175,77,41,72,81,20,2,10,9,222,183,233,186,108,73,55,178,221,148,254,54,15,254,0,127,
1016 148,184,77,161,4,147,66,23,150,157,121,179,239,189,97,230,231,247,235,27,192,61,206,29,116,29,156,18,156,36,83,11,174,13,161,223,11,167,108,193,252,148,41,225,191,24,174,217,56,229,65,9,123,29,79,121,98,2,175,10,17,58,143,203,132,127,26,153,169,185,131,
1017 51,130,27,73,161,152,201,53,39,220,213,9,15,74,88,100,180,84,34,24,6,113,28,120,246,18,158,123,97,166,133,47,52,155,164,220,79,82,233,191,49,61,231,147,81,54,155,49,53,9,165,218,185,179,235,29,164,54,190,174,157,198,135,20,69,219,87,21,98,137,82,104,
1018 232,192,123,39,244,6,113,191,106,60,172,157,82,148,229,58,225,79,50,181,250,23,37,185,209,122,9,92,223,174,88,132,203,237,206,155,175,132,238,127,11,194,205,118,226,131,22,249,140,43,179,217,84,155,64,104,96,117,154,45,66,19,45,155,237,217,172,101,241,
1019 54,28,27,53,176,95,84,220,154,74,199,86,14,112,88,196,107,228,8,199,197,123,242,7,80,75,3,4,10,0,0,8,8,0,10,178,149,71,67,209,22,230,234,3,0,0,124,11,0,0,60,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,
1020 110,101,80,97,114,115,101,114,36,66,101,102,111,114,101,70,105,114,115,116,83,117,98,67,111,109,109,97,110,100,46,99,108,97,115,115,197,86,109,83,19,87,20,126,110,178,112,113,179,104,72,13,149,182,216,72,131,64,94,8,65,171,64,16,11,17,144,18,137,109,
1021 148,54,216,183,77,88,211,213,100,215,217,108,170,127,161,63,161,255,194,206,180,131,150,169,246,91,103,250,165,255,163,63,162,211,115,119,99,8,38,176,193,113,166,95,238,203,185,207,61,231,185,207,158,123,246,254,245,239,111,47,0,164,113,95,198,89,204,
1022 157,162,102,94,70,24,115,28,25,25,18,22,101,44,224,90,0,75,184,206,241,137,152,44,115,172,8,216,13,25,50,86,57,214,6,176,206,113,83,198,6,62,149,49,136,77,142,156,140,16,182,56,242,28,183,25,250,237,239,245,122,116,134,97,44,103,90,149,84,197,82,119,
1023 171,90,170,92,213,83,89,179,86,83,141,221,156,110,104,183,85,171,174,89,25,66,47,234,134,110,47,49,172,79,122,195,95,71,56,230,221,54,92,102,106,155,65,202,154,187,26,195,25,97,216,106,212,74,154,117,71,45,85,201,18,202,153,101,181,186,173,90,186,152,
1024 55,141,146,160,203,16,94,209,238,155,150,182,166,91,117,187,208,40,53,125,50,40,27,134,161,89,217,170,90,175,107,4,155,243,36,25,237,234,136,78,26,40,31,64,187,136,211,121,22,134,65,211,40,216,170,101,231,31,217,186,105,112,124,206,48,228,142,221,88,
1025 180,104,147,175,157,201,220,3,245,7,53,85,85,141,74,170,96,91,186,81,201,116,90,166,188,169,119,248,38,14,126,213,170,8,233,58,252,209,183,51,29,60,137,228,14,220,5,154,230,15,77,83,189,6,110,57,30,106,147,42,223,140,113,92,54,185,152,12,71,129,1,12,
1026 15,223,74,42,121,179,78,59,233,230,123,50,35,154,180,104,102,25,162,189,236,99,144,11,102,195,42,83,154,136,28,28,238,192,76,11,185,21,156,195,136,130,97,188,203,113,135,33,121,34,25,197,230,187,10,182,241,5,199,151,10,138,216,97,136,120,73,168,224,30,
1027 190,98,152,247,140,116,215,120,104,152,143,141,46,201,120,238,168,37,5,23,48,38,88,125,203,16,63,58,192,178,85,105,212,52,195,94,125,82,214,154,159,254,66,211,101,164,153,22,201,42,225,34,110,206,69,38,198,235,19,211,12,193,131,252,204,151,30,104,101,
1028 155,227,59,5,42,74,34,98,153,225,170,231,145,54,143,56,208,112,247,5,225,151,234,195,149,55,171,7,189,16,114,67,46,63,86,45,237,48,161,163,22,102,79,126,193,233,94,121,167,235,177,137,227,130,24,54,123,42,66,189,94,42,89,45,151,181,122,61,58,55,67,151,
1029 235,82,15,247,121,202,141,213,176,245,106,234,150,250,72,20,207,67,6,42,100,21,205,102,184,216,78,211,205,148,87,123,219,77,7,12,230,5,131,241,94,24,236,112,144,158,129,67,234,254,216,77,149,183,80,122,218,107,116,175,154,6,95,103,66,21,156,82,179,166,
1030 146,44,243,93,120,222,59,94,169,86,181,14,119,217,43,226,253,243,6,101,216,227,215,224,253,15,248,191,196,77,156,196,43,34,244,160,10,211,59,140,5,131,162,188,211,200,15,159,168,246,244,247,122,143,102,55,105,238,167,94,137,197,127,133,47,22,79,236,193,
1031 255,51,205,125,120,159,218,211,98,141,93,67,31,91,66,128,93,199,7,100,27,166,53,194,99,148,124,195,25,81,181,37,27,195,71,184,216,244,250,55,6,208,71,189,182,15,169,24,79,176,61,244,109,197,126,129,239,25,250,19,207,193,125,248,3,3,11,210,136,244,39,
1032 210,174,249,212,79,8,237,67,46,198,105,26,136,17,94,121,186,143,193,98,232,180,244,59,206,20,253,201,194,51,4,247,48,244,114,31,161,162,216,145,28,145,94,33,223,121,218,162,123,30,156,232,102,137,234,13,140,178,85,140,177,53,36,216,58,50,108,131,222,
1033 139,57,135,254,101,151,88,139,190,134,9,76,18,109,49,154,162,145,15,1,236,32,134,4,29,125,148,228,73,98,26,82,16,36,89,186,121,184,60,173,72,212,115,71,45,118,160,86,191,112,195,22,157,48,49,23,210,10,195,49,75,234,51,103,116,201,209,75,140,46,227,99,
1034 231,123,92,113,124,92,197,135,212,175,144,118,103,233,57,124,158,44,81,234,199,37,241,92,94,64,156,94,197,41,234,17,28,128,120,46,103,33,30,195,11,184,69,184,48,245,159,73,62,124,77,253,55,146,252,31,80,75,3,4,10,0,0,8,8,0,10,178,149,71,147,0,59,153,
1035 124,1,0,0,252,2,0,0,57,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,83,121,115,116,101,109,80,114,111,112,101,114,116,105,101,115,67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,157,146,
1036 203,74,195,64,20,134,207,216,171,109,181,182,214,106,213,69,220,53,66,19,68,196,133,23,144,22,23,82,47,80,233,126,154,30,211,145,36,19,38,211,66,222,74,87,130,11,31,192,135,18,39,105,16,169,65,196,89,156,51,243,207,255,205,156,185,188,127,188,190,1,192,
1037 1,108,151,32,15,141,34,108,20,161,89,132,205,2,108,21,160,69,32,127,202,60,38,207,9,100,218,250,144,64,182,203,199,72,160,218,103,30,222,76,221,17,138,123,58,114,148,82,239,115,139,58,67,42,88,52,78,196,172,156,176,128,192,81,159,11,219,180,5,29,59,104,
1038 90,14,51,7,97,32,209,189,19,220,71,33,25,6,93,238,186,212,27,71,139,118,185,55,83,34,138,19,2,53,27,101,98,10,111,125,201,184,71,160,209,214,251,143,116,70,77,135,122,182,57,144,130,121,182,178,182,126,88,123,40,41,115,112,76,96,55,101,46,176,4,75,86,
1039 44,13,248,84,88,120,201,162,138,245,191,148,102,68,5,84,160,0,69,2,164,71,160,28,196,80,199,87,20,129,227,1,74,109,174,104,126,178,173,198,31,52,57,65,237,106,120,173,181,209,176,13,173,211,115,195,104,246,204,13,103,212,153,162,110,16,56,252,199,53,
1040 169,219,93,160,46,70,129,20,212,146,191,115,176,7,57,245,224,81,203,2,137,206,162,226,178,26,153,42,19,149,115,251,47,64,158,85,103,9,74,42,230,99,177,14,101,21,43,115,131,202,43,49,190,10,213,4,238,36,112,166,190,244,180,128,54,191,161,153,47,116,45,
1041 5,205,44,162,59,169,104,45,5,205,46,162,90,10,170,62,107,236,90,255,4,80,75,3,4,10,0,0,8,8,0,10,178,149,71,45,21,104,130,7,2,0,0,187,4,0,0,50,0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,
1042 114,115,101,114,36,80,97,114,115,101,114,83,116,97,116,101,46,99,108,97,115,115,149,83,223,111,210,80,20,254,78,41,20,11,115,192,220,84,52,19,55,28,48,54,234,124,51,24,77,36,154,152,144,109,9,102,15,123,187,64,195,186,148,91,115,219,45,250,63,249,226,
1043 139,38,62,248,7,248,71,25,207,109,217,100,131,4,105,210,158,31,247,156,239,124,231,156,219,223,127,126,254,2,112,0,199,70,26,219,54,50,216,206,162,106,227,25,118,44,212,45,52,8,153,87,158,244,162,215,132,84,189,113,66,48,59,193,208,37,172,118,61,233,
1044 30,94,140,251,174,250,40,250,62,123,74,221,96,32,252,19,161,60,109,79,156,102,116,230,133,132,220,177,80,161,171,122,145,136,216,153,255,32,165,171,58,190,8,67,151,15,91,221,64,141,156,145,18,67,223,117,6,190,231,116,130,241,88,200,161,174,144,228,85,
1045 167,210,219,132,194,88,124,233,187,108,169,232,232,83,228,5,146,176,94,239,158,139,75,225,248,66,142,156,94,164,60,57,106,55,78,9,89,47,188,10,73,9,53,210,44,103,226,8,43,129,156,66,179,176,75,40,38,250,13,222,167,115,138,204,41,187,184,157,25,108,230,
1046 144,11,228,97,32,175,200,190,157,215,207,210,115,10,228,84,200,59,57,180,208,36,128,80,171,47,134,58,104,235,109,27,159,159,19,170,255,19,77,176,123,193,133,26,184,239,61,189,248,141,153,152,150,110,40,15,11,89,130,85,127,19,54,246,91,77,11,123,121,236,
1047 163,104,161,69,216,91,166,61,238,238,223,128,142,250,231,238,32,34,188,88,126,242,132,173,197,205,221,40,150,108,131,123,24,139,104,112,166,47,112,101,17,130,89,225,191,43,3,253,88,48,244,8,120,9,119,216,114,88,242,70,144,222,253,1,227,27,43,6,108,254,
1048 102,180,147,202,200,177,158,79,2,88,174,2,38,51,65,49,6,42,177,76,64,218,156,101,104,232,102,41,245,29,230,215,91,48,155,49,204,70,18,146,192,196,218,26,238,129,24,112,29,15,98,224,135,40,67,95,142,71,215,236,154,177,205,239,109,102,59,83,204,40,129,
1049 44,104,200,205,73,226,75,150,198,164,173,153,228,242,20,159,244,53,159,52,158,160,18,167,61,141,227,183,112,151,101,25,41,62,169,97,197,180,57,163,134,251,44,31,179,68,33,251,23,80,75,3,4,10,0,0,8,8,0,10,178,149,71,70,182,8,247,61,3,0,0,202,9,0,0,59,
1050 0,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,65,102,116,101,114,70,105,114,115,116,83,117,98,67,111,109,109,97,110,100,46,99,108,97,115,115,197,86,235,82,211,80,16,254,
1051 78,91,8,164,1,74,5,196,59,98,101,160,45,180,5,17,176,120,41,85,46,82,40,88,69,209,95,161,196,26,40,9,147,6,241,21,124,0,223,3,103,116,80,153,113,252,231,140,143,226,67,56,238,73,10,20,75,155,194,48,227,159,179,123,118,247,124,103,119,179,187,57,191,254,
1052 124,251,14,32,134,69,17,205,136,52,210,18,21,209,130,136,72,178,65,47,134,112,75,192,176,128,219,92,51,42,66,192,152,128,59,2,198,69,120,113,79,132,136,251,2,30,8,72,48,212,155,111,212,66,32,202,208,157,210,141,92,36,103,200,171,121,37,146,205,171,145,
1053 164,190,177,33,107,171,41,85,83,22,100,163,160,24,113,178,30,87,53,213,188,199,48,213,235,108,254,175,133,37,94,45,177,139,247,45,49,120,146,250,170,194,208,194,5,243,91,27,43,138,241,84,94,201,147,196,159,210,179,114,126,73,54,84,190,47,10,61,220,93,
1054 134,182,196,107,83,49,38,85,163,96,102,182,86,138,144,12,210,140,166,41,70,50,47,23,10,10,89,141,56,250,24,56,14,135,226,244,102,15,45,143,73,77,121,36,12,77,186,150,49,101,195,76,111,154,170,174,9,72,50,180,218,188,125,21,41,77,194,122,217,155,90,147,
1055 223,202,145,188,172,229,34,25,211,80,181,92,188,92,210,231,236,121,25,54,249,224,150,141,28,79,92,25,30,125,57,221,178,39,167,74,66,75,23,101,213,190,189,109,19,23,240,144,1,12,235,103,242,225,157,195,139,89,197,225,122,23,229,75,140,47,131,12,129,90,
1056 206,49,136,25,125,203,200,42,147,42,175,152,142,50,155,1,158,30,9,126,156,147,224,67,171,128,71,18,38,49,37,96,90,194,12,30,51,116,57,101,131,97,204,209,145,103,218,186,166,111,107,199,148,64,103,37,149,132,75,184,204,29,155,163,218,117,188,96,182,2,
1057 124,71,37,69,127,141,53,101,215,12,117,83,233,150,187,53,207,151,52,195,240,169,218,170,150,152,236,27,19,219,178,161,28,141,169,146,98,240,228,125,66,229,238,92,69,85,139,192,54,162,58,147,179,89,165,80,8,140,70,169,74,135,106,104,140,62,187,51,183,
1058 76,53,31,153,147,55,249,212,56,34,160,14,206,41,38,67,79,233,144,72,175,172,41,89,115,255,108,169,72,192,2,141,170,35,161,189,63,110,188,156,65,59,150,206,153,90,155,119,182,166,81,87,43,218,239,83,12,158,234,21,94,205,188,56,245,254,87,234,194,39,65,
1059 69,23,253,229,91,232,61,192,124,62,62,208,136,115,195,197,231,27,205,235,54,218,77,211,222,77,84,10,134,62,195,21,12,133,119,225,254,72,123,23,218,105,109,230,58,182,136,58,246,4,94,150,65,7,201,58,72,71,246,56,143,139,128,197,209,100,34,25,195,21,186,
1060 205,70,253,128,6,120,136,38,130,159,224,250,2,79,248,43,234,92,248,129,250,249,254,159,240,239,65,88,14,145,166,33,200,118,209,184,179,7,113,153,219,237,193,187,28,10,147,72,234,223,87,54,237,28,184,226,231,128,236,57,90,217,11,180,179,101,4,216,43,203,
1061 157,160,125,209,129,59,9,92,71,55,185,193,185,27,196,185,40,232,40,2,184,9,183,143,163,244,22,93,76,83,104,252,164,96,197,204,14,99,174,231,135,217,66,9,184,112,0,46,160,143,224,152,197,5,173,168,57,23,66,216,202,106,191,133,49,128,11,68,39,40,3,205,
1062 244,226,234,36,201,85,162,215,60,34,122,136,194,215,64,39,98,24,1,127,106,197,16,39,189,151,232,93,240,71,90,12,19,30,23,102,137,166,60,226,95,80,75,3,4,10,0,0,8,8,0,10,178,149,71,105,222,125,0,70,0,0,0,68,0,0,0,31,0,0,0,103,114,97,100,108,101,45,99,
1063 108,105,45,99,108,97,115,115,112,97,116,104,46,112,114,111,112,101,114,116,105,101,115,83,206,205,79,41,205,73,85,72,73,77,203,204,203,44,201,204,207,227,82,246,205,207,83,112,73,77,86,48,50,84,48,50,178,50,52,179,50,50,80,112,118,13,81,48,50,48,52,229,
1064 42,40,202,207,74,77,46,41,182,229,42,42,205,43,201,204,77,181,229,2,0,80,75,1,2,20,3,10,0,0,8,8,0,42,178,149,71,0,0,0,0,2,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,16,0,237,65,0,0,0,0,77,69,84,65,45,73,78,70,47,80,75,1,2,20,3,10,0,0,8,8,0,42,178,149,71,215,149,
1065 152,82,63,0,0,0,85,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,164,129,41,0,0,0,77,69,84,65,45,73,78,70,47,77,65,78,73,70,69,83,84,46,77,70,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,0,0,0,0,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,16,0,253,65,154,0,0,0,111,114,103,47,
1066 80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,0,0,0,0,2,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,16,0,253,65,190,0,0,0,111,114,103,47,103,114,97,100,108,101,47,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,0,0,0,0,2,0,0,0,0,0,0,0,19,0,0,0,0,0,0,0,0,0,16,0,253,65,233,
1067 0,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,104,130,100,102,163,0,0,0,213,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,180,129,28,1,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,
1068 112,101,114,47,68,111,119,110,108,111,97,100,36,49,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,197,222,133,214,20,2,0,0,112,4,0,0,68,0,0,0,0,0,0,0,0,0,0,0,180,129,0,2,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,
1069 101,114,47,68,111,119,110,108,111,97,100,36,83,121,115,116,101,109,80,114,111,112,101,114,116,105,101,115,80,114,111,120,121,65,117,116,104,101,110,116,105,99,97,116,111,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,231,236,88,115,
1070 170,0,0,0,219,0,0,0,34,0,0,0,0,0,0,0,0,0,0,0,180,129,118,4,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,73,68,111,119,110,108,111,97,100,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,4,169,122,221,92,2,0,
1071 0,81,4,0,0,45,0,0,0,0,0,0,0,0,0,0,0,180,129,96,5,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,71,114,97,100,108,101,85,115,101,114,72,111,109,101,76,111,111,107,117,112,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,
1072 178,149,71,28,226,93,219,197,5,0,0,250,10,0,0,51,0,0,0,0,0,0,0,0,0,0,0,180,129,7,8,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,69,120,99,108,117,115,105,118,101,70,105,108,101,65,99,99,101,115,115,77,97,110,97,103,101,114,
1073 46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,204,13,94,70,145,2,0,0,249,6,0,0,45,0,0,0,0,0,0,0,0,0,0,0,180,129,29,14,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,87,114,97,112,112,101,114,67,111,110,102,
1074 105,103,117,114,97,116,105,111,110,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,81,125,29,105,229,4,0,0,25,10,0,0,48,0,0,0,0,0,0,0,0,0,0,0,180,129,249,16,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,83,
1075 121,115,116,101,109,80,114,111,112,101,114,116,105,101,115,72,97,110,100,108,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,165,121,48,186,86,2,0,0,0,5,0,0,31,0,0,0,0,0,0,0,0,0,0,0,180,129,44,22,0,0,111,114,103,47,103,114,97,100,
1076 108,101,47,119,114,97,112,112,101,114,47,76,111,103,103,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,206,114,235,138,21,7,0,0,110,14,0,0,38,0,0,0,0,0,0,0,0,0,0,0,180,129,191,24,0,0,111,114,103,47,103,114,97,100,108,101,47,119,
1077 114,97,112,112,101,114,47,80,97,116,104,65,115,115,101,109,98,108,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,56,222,182,221,27,19,0,0,236,41,0,0,32,0,0,0,0,0,0,0,0,0,0,0,180,129,24,32,0,0,111,114,103,47,103,114,97,100,108,
1078 101,47,119,114,97,112,112,101,114,47,73,110,115,116,97,108,108,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,221,192,76,137,196,4,0,0,149,9,0,0,45,0,0,0,0,0,0,0,0,0,0,0,180,129,113,51,0,0,111,114,103,47,103,114,97,100,108,101,47,119,
1079 114,97,112,112,101,114,47,66,111,111,116,115,116,114,97,112,77,97,105,110,83,116,97,114,116,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,72,214,183,36,211,10,0,0,35,24,0,0,40,0,0,0,0,0,0,0,0,0,0,0,180,129,128,56,0,0,111,114,
1080 103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,87,114,97,112,112,101,114,69,120,101,99,117,116,111,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,132,26,164,171,178,10,0,0,66,24,0,0,42,0,0,0,0,0,0,0,0,0,0,0,180,129,
1081 153,67,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,71,114,97,100,108,101,87,114,97,112,112,101,114,77,97,105,110,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,217,206,17,120,160,6,0,0,180,14,0,0,34,0,0,
1082 0,0,0,0,0,0,0,0,0,180,129,147,78,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,73,110,115,116,97,108,108,36,49,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,22,178,149,71,106,32,106,144,180,1,0,0,86,3,0,0,56,0,0,0,0,0,
1083 0,0,0,0,0,0,180,129,115,85,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,80,97,116,104,65,115,115,101,109,98,108,101,114,36,76,111,99,97,108,68,105,115,116,114,105,98,117,116,105,111,110,46,99,108,97,115,115,80,75,1,2,20,
1084 3,10,0,0,8,8,0,22,178,149,71,146,99,74,27,25,8,0,0,75,15,0,0,33,0,0,0,0,0,0,0,0,0,0,0,180,129,125,87,0,0,111,114,103,47,103,114,97,100,108,101,47,119,114,97,112,112,101,114,47,68,111,119,110,108,111,97,100,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,
1085 8,0,22,178,149,71,192,25,62,198,80,0,0,0,78,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,180,129,213,95,0,0,103,114,97,100,108,101,45,119,114,97,112,112,101,114,45,99,108,97,115,115,112,97,116,104,46,112,114,111,112,101,114,116,105,101,115,80,75,1,2,20,3,10,0,0,8,
1086 8,0,10,178,149,71,36,217,150,101,206,0,0,0,28,1,0,0,24,0,0,0,0,0,0,0,0,0,0,0,180,129,102,96,0,0,98,117,105,108,100,45,114,101,99,101,105,112,116,46,112,114,111,112,101,114,116,105,101,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,0,0,0,0,2,0,0,0,0,0,
1087 0,0,15,0,0,0,0,0,0,0,0,0,16,0,253,65,106,97,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,144,200,244,150,60,2,0,0,83,5,0,0,49,0,0,0,0,0,0,0,0,0,0,0,180,129,153,97,0,0,111,114,103,47,103,114,97,100,
1088 108,101,47,99,108,105,47,65,98,115,116,114,97,99,116,67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,50,95,101,143,166,0,0,0,232,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,
1089 180,129,36,100,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,49,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,82,66,9,29,168,2,0,0,247,6,0,0,60,0,0,0,0,0,
1090 0,0,0,0,0,0,180,129,16,101,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,77,105,115,115,105,110,103,79,112,116,105,111,110,65,114,103,83,116,97,116,101,46,99,108,97,115,115,
1091 80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,188,172,77,50,145,2,0,0,131,5,0,0,61,0,0,0,0,0,0,0,0,0,0,0,180,129,18,104,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,
1092 105,111,110,83,116,114,105,110,103,67,111,109,112,97,114,97,116,111,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,232,35,13,242,71,1,0,0,75,2,0,0,49,0,0,0,0,0,0,0,0,0,0,0,180,129,254,106,0,0,111,114,103,47,103,114,97,100,108,101,
1093 47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,65,114,103,117,109,101,110,116,69,120,99,101,112,116,105,111,110,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,63,23,104,255,199,7,0,0,135,19,0,0,61,0,0,0,0,0,0,0,0,0,0,0,180,
1094 129,148,108,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,75,110,111,119,110,79,112,116,105,111,110,80,97,114,115,101,114,83,116,97,116,101,46,99,108,97,115,115,80,75,1,2,
1095 20,3,10,0,0,8,8,0,10,178,149,71,28,107,22,177,205,2,0,0,219,6,0,0,55,0,0,0,0,0,0,0,0,0,0,0,180,129,182,116,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,105,111,
1096 110,67,111,109,112,97,114,97,116,111,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,228,98,213,39,225,2,0,0,110,7,0,0,63,0,0,0,0,0,0,0,0,0,0,0,180,129,216,119,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,
1097 97,110,100,76,105,110,101,80,97,114,115,101,114,36,85,110,107,110,111,119,110,79,112,116,105,111,110,80,97,114,115,101,114,83,116,97,116,101,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,34,122,201,90,146,5,0,0,153,13,0,0,38,0,0,0,0,
1098 0,0,0,0,0,0,0,180,129,22,123,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,79,112,116,105,111,110,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,156,108,92,207,167,1,0,0,166,3,0,0,
1099 56,0,0,0,0,0,0,0,0,0,0,0,180,129,236,128,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,105,111,110,80,97,114,115,101,114,83,116,97,116,101,46,99,108,97,115,115,
1100 80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,91,120,110,152,148,7,0,0,199,17,0,0,38,0,0,0,0,0,0,0,0,0,0,0,180,129,233,130,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,80,97,114,115,101,100,67,111,109,109,97,110,100,76,105,110,101,46,99,108,
1101 97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,139,65,53,108,124,1,0,0,11,3,0,0,58,0,0,0,0,0,0,0,0,0,0,0,180,129,193,138,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,80,114,111,106,101,99,116,80,114,111,112,101,114,116,105,101,115,
1102 67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,50,108,87,182,74,2,0,0,4,5,0,0,70,0,0,0,0,0,0,0,0,0,0,0,180,129,149,140,0,0,111,114,103,47,103,114,97,100,108,101,
1103 47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,67,97,115,101,73,110,115,101,110,115,105,116,105,118,101,83,116,114,105,110,103,67,111,109,112,97,114,97,116,111,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,
1104 178,149,71,133,165,180,23,103,18,0,0,198,42,0,0,38,0,0,0,0,0,0,0,0,0,0,0,180,129,67,143,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,
1105 0,8,8,0,10,178,149,71,95,15,62,210,163,2,0,0,41,7,0,0,51,0,0,0,0,0,0,0,0,0,0,0,180,129,238,161,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,65,102,116,101,114,79,112,116,
1106 105,111,110,115,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,71,209,102,236,146,2,0,0,156,5,0,0,51,0,0,0,0,0,0,0,0,0,0,0,180,129,226,164,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,
1107 101,80,97,114,115,101,114,36,79,112,116,105,111,110,83,116,114,105,110,103,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,120,38,226,84,96,4,0,0,26,11,0,0,59,0,0,0,0,0,0,0,0,0,0,0,180,129,197,167,0,0,111,114,103,47,103,114,97,100,108,
1108 101,47,99,108,105,47,65,98,115,116,114,97,99,116,80,114,111,112,101,114,116,105,101,115,67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,147,157,188,21,188,2,0,
1109 0,32,5,0,0,44,0,0,0,0,0,0,0,0,0,0,0,180,129,126,172,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,80,97,114,115,101,100,67,111,109,109,97,110,100,76,105,110,101,79,112,116,105,111,110,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,
1110 149,71,182,192,176,115,152,2,0,0,170,6,0,0,61,0,0,0,0,0,0,0,0,0,0,0,180,129,132,175,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,79,112,116,105,111,110,65,119,97,114,101,
1111 80,97,114,115,101,114,83,116,97,116,101,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,39,4,72,12,25,1,0,0,103,2,0,0,41,0,0,0,0,0,0,0,0,0,0,0,180,129,119,178,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,
1112 110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,67,209,22,230,234,3,0,0,124,11,0,0,60,0,0,0,0,0,0,0,0,0,0,0,180,129,215,179,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,
1113 47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,66,101,102,111,114,101,70,105,114,115,116,83,117,98,67,111,109,109,97,110,100,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,147,0,59,153,124,1,0,0,252,2,0,0,57,0,0,
1114 0,0,0,0,0,0,0,0,0,180,129,27,184,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,83,121,115,116,101,109,80,114,111,112,101,114,116,105,101,115,67,111,109,109,97,110,100,76,105,110,101,67,111,110,118,101,114,116,101,114,46,99,108,97,115,115,
1115 80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,45,21,104,130,7,2,0,0,187,4,0,0,50,0,0,0,0,0,0,0,0,0,0,0,180,129,238,185,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,76,105,110,101,80,97,114,115,101,114,36,80,97,114,
1116 115,101,114,83,116,97,116,101,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,70,182,8,247,61,3,0,0,202,9,0,0,59,0,0,0,0,0,0,0,0,0,0,0,180,129,69,188,0,0,111,114,103,47,103,114,97,100,108,101,47,99,108,105,47,67,111,109,109,97,110,100,
1117 76,105,110,101,80,97,114,115,101,114,36,65,102,116,101,114,70,105,114,115,116,83,117,98,67,111,109,109,97,110,100,46,99,108,97,115,115,80,75,1,2,20,3,10,0,0,8,8,0,10,178,149,71,105,222,125,0,70,0,0,0,68,0,0,0,31,0,0,0,0,0,0,0,0,0,0,0,180,129,219,191,
1118 0,0,103,114,97,100,108,101,45,99,108,105,45,99,108,97,115,115,112,97,116,104,46,112,114,111,112,101,114,116,105,101,115,80,75,5,6,0,0,0,0,49,0,49,0,16,17,0,0,94,192,0,0,0,0,0,0 };
1119 
1120 const char* gradlewrapper_jar = (const char*) temp_binary_data_6;
1121 
1122 //================== gradlew ==================
1123 static const unsigned char temp_binary_data_7[] =
1124 "#!/usr/bin/env bash\n"
1125 "\n"
1126 "##############################################################################\n"
1127 "##\n"
1128 "##  Gradle start up script for UN*X\n"
1129 "##\n"
1130 "##############################################################################\n"
1131 "\n"
1132 "# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\n"
1133 "DEFAULT_JVM_OPTS=\"\"\n"
1134 "\n"
1135 "APP_NAME=\"Gradle\"\n"
1136 "APP_BASE_NAME=`basename \"$0\"`\n"
1137 "\n"
1138 "# Use the maximum available, or set MAX_FD != -1 to use that value.\n"
1139 "MAX_FD=\"maximum\"\n"
1140 "\n"
1141 "warn ( ) {\n"
1142 "    echo \"$*\"\n"
1143 "}\n"
1144 "\n"
1145 "die ( ) {\n"
1146 "    echo\n"
1147 "    echo \"$*\"\n"
1148 "    echo\n"
1149 "    exit 1\n"
1150 "}\n"
1151 "\n"
1152 "# OS specific support (must be 'true' or 'false').\n"
1153 "cygwin=false\n"
1154 "msys=false\n"
1155 "darwin=false\n"
1156 "case \"`uname`\" in\n"
1157 "  CYGWIN* )\n"
1158 "    cygwin=true\n"
1159 "    ;;\n"
1160 "  Darwin* )\n"
1161 "    darwin=true\n"
1162 "    ;;\n"
1163 "  MINGW* )\n"
1164 "    msys=true\n"
1165 "    ;;\n"
1166 "esac\n"
1167 "\n"
1168 "# Attempt to set APP_HOME\n"
1169 "# Resolve links: $0 may be a link\n"
1170 "PRG=\"$0\"\n"
1171 "# Need this for relative symlinks.\n"
1172 "while [ -h \"$PRG\" ] ; do\n"
1173 "    ls=`ls -ld \"$PRG\"`\n"
1174 "    link=`expr \"$ls\" : '.*-> \\(.*\\)$'`\n"
1175 "    if expr \"$link\" : '/.*' > /dev/null; then\n"
1176 "        PRG=\"$link\"\n"
1177 "    else\n"
1178 "        PRG=`dirname \"$PRG\"`\"/$link\"\n"
1179 "    fi\n"
1180 "done\n"
1181 "SAVED=\"`pwd`\"\n"
1182 "cd \"`dirname \\\"$PRG\\\"`/\" >/dev/null\n"
1183 "APP_HOME=\"`pwd -P`\"\n"
1184 "cd \"$SAVED\" >/dev/null\n"
1185 "\n"
1186 "CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar\n"
1187 "\n"
1188 "# Determine the Java command to use to start the JVM.\n"
1189 "if [ -n \"$JAVA_HOME\" ] ; then\n"
1190 "    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n"
1191 "        # IBM's JDK on AIX uses strange locations for the executables\n"
1192 "        JAVACMD=\"$JAVA_HOME/jre/sh/java\"\n"
1193 "    else\n"
1194 "        JAVACMD=\"$JAVA_HOME/bin/java\"\n"
1195 "    fi\n"
1196 "    if [ ! -x \"$JAVACMD\" ] ; then\n"
1197 "        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n"
1198 "\n"
1199 "Please set the JAVA_HOME variable in your environment to match the\n"
1200 "location of your Java installation.\"\n"
1201 "    fi\n"
1202 "else\n"
1203 "    JAVACMD=\"java\"\n"
1204 "    which java >/dev/null 2>&1 || die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n"
1205 "\n"
1206 "Please set the JAVA_HOME variable in your environment to match the\n"
1207 "location of your Java installation.\"\n"
1208 "fi\n"
1209 "\n"
1210 "# Increase the maximum file descriptors if we can.\n"
1211 "if [ \"$cygwin\" = \"false\" -a \"$darwin\" = \"false\" ] ; then\n"
1212 "    MAX_FD_LIMIT=`ulimit -H -n`\n"
1213 "    if [ $? -eq 0 ] ; then\n"
1214 "        if [ \"$MAX_FD\" = \"maximum\" -o \"$MAX_FD\" = \"max\" ] ; then\n"
1215 "            MAX_FD=\"$MAX_FD_LIMIT\"\n"
1216 "        fi\n"
1217 "        ulimit -n $MAX_FD\n"
1218 "        if [ $? -ne 0 ] ; then\n"
1219 "            warn \"Could not set maximum file descriptor limit: $MAX_FD\"\n"
1220 "        fi\n"
1221 "    else\n"
1222 "        warn \"Could not query maximum file descriptor limit: $MAX_FD_LIMIT\"\n"
1223 "    fi\n"
1224 "fi\n"
1225 "\n"
1226 "# For Darwin, add options to specify how the application appears in the dock\n"
1227 "if $darwin; then\n"
1228 "    GRADLE_OPTS=\"$GRADLE_OPTS \\\"-Xdock:name=$APP_NAME\\\" \\\"-Xdock:icon=$APP_HOME/media/gradle.icns\\\"\"\n"
1229 "fi\n"
1230 "\n"
1231 "# For Cygwin, switch paths to Windows format before running java\n"
1232 "if $cygwin ; then\n"
1233 "    APP_HOME=`cygpath --path --mixed \"$APP_HOME\"`\n"
1234 "    CLASSPATH=`cygpath --path --mixed \"$CLASSPATH\"`\n"
1235 "    JAVACMD=`cygpath --unix \"$JAVACMD\"`\n"
1236 "\n"
1237 "    # We build the pattern for arguments to be converted via cygpath\n"
1238 "    ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`\n"
1239 "    SEP=\"\"\n"
1240 "    for dir in $ROOTDIRSRAW ; do\n"
1241 "        ROOTDIRS=\"$ROOTDIRS$SEP$dir\"\n"
1242 "        SEP=\"|\"\n"
1243 "    done\n"
1244 "    OURCYGPATTERN=\"(^($ROOTDIRS))\"\n"
1245 "    # Add a user-defined pattern to the cygpath arguments\n"
1246 "    if [ \"$GRADLE_CYGPATTERN\" != \"\" ] ; then\n"
1247 "        OURCYGPATTERN=\"$OURCYGPATTERN|($GRADLE_CYGPATTERN)\"\n"
1248 "    fi\n"
1249 "    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n"
1250 "    i=0\n"
1251 "    for arg in \"$@\" ; do\n"
1252 "        CHECK=`echo \"$arg\"|egrep -c \"$OURCYGPATTERN\" -`\n"
1253 "        CHECK2=`echo \"$arg\"|egrep -c \"^-\"`                                 ### Determine if an option\n"
1254 "\n"
1255 "        if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then                    ### Added a condition\n"
1256 "            eval `echo args$i`=`cygpath --path --ignore --mixed \"$arg\"`\n"
1257 "        else\n"
1258 "            eval `echo args$i`=\"\\\"$arg\\\"\"\n"
1259 "        fi\n"
1260 "        i=$((i+1))\n"
1261 "    done\n"
1262 "    case $i in\n"
1263 "        (0) set -- ;;\n"
1264 "        (1) set -- \"$args0\" ;;\n"
1265 "        (2) set -- \"$args0\" \"$args1\" ;;\n"
1266 "        (3) set -- \"$args0\" \"$args1\" \"$args2\" ;;\n"
1267 "        (4) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" ;;\n"
1268 "        (5) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" ;;\n"
1269 "        (6) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" ;;\n"
1270 "        (7) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" ;;\n"
1271 "        (8) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" \"$args7\" ;;\n"
1272 "        (9) set -- \"$args0\" \"$args1\" \"$args2\" \"$args3\" \"$args4\" \"$args5\" \"$args6\" \"$args7\" \"$args8\" ;;\n"
1273 "    esac\n"
1274 "fi\n"
1275 "\n"
1276 "# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules\n"
1277 "function splitJvmOpts() {\n"
1278 "    JVM_OPTS=(\"$@\")\n"
1279 "}\n"
1280 "eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\n"
1281 "JVM_OPTS[${#JVM_OPTS[*]}]=\"-Dorg.gradle.appname=$APP_BASE_NAME\"\n"
1282 "\n"
1283 "exec \"$JAVACMD\" \"${JVM_OPTS[@]}\" -classpath \"$CLASSPATH\" org.gradle.wrapper.GradleWrapperMain \"$@\"\n";
1284 
1285 const char* gradlew = (const char*) temp_binary_data_7;
1286 
1287 //================== gradlew.bat ==================
1288 static const unsigned char temp_binary_data_8[] =
1289 "@if \"%DEBUG%\" == \"\" @echo off\r\n"
1290 "@rem ##########################################################################\r\n"
1291 "@rem\r\n"
1292 "@rem  Gradle startup script for Windows\r\n"
1293 "@rem\r\n"
1294 "@rem ##########################################################################\r\n"
1295 "\r\n"
1296 "@rem Set local scope for the variables with windows NT shell\r\n"
1297 "if \"%OS%\"==\"Windows_NT\" setlocal\r\n"
1298 "\r\n"
1299 "@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\r\n"
1300 "set DEFAULT_JVM_OPTS=\r\n"
1301 "\r\n"
1302 "set DIRNAME=%~dp0\r\n"
1303 "if \"%DIRNAME%\" == \"\" set DIRNAME=.\r\n"
1304 "set APP_BASE_NAME=%~n0\r\n"
1305 "set APP_HOME=%DIRNAME%\r\n"
1306 "\r\n"
1307 "@rem Find java.exe\r\n"
1308 "if defined JAVA_HOME goto findJavaFromJavaHome\r\n"
1309 "\r\n"
1310 "set JAVA_EXE=java.exe\r\n"
1311 "%JAVA_EXE% -version >NUL 2>&1\r\n"
1312 "if \"%ERRORLEVEL%\" == \"0\" goto init\r\n"
1313 "\r\n"
1314 "echo.\r\n"
1315 "echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\r\n"
1316 "echo.\r\n"
1317 "echo Please set the JAVA_HOME variable in your environment to match the\r\n"
1318 "echo location of your Java installation.\r\n"
1319 "\r\n"
1320 "goto fail\r\n"
1321 "\r\n"
1322 ":findJavaFromJavaHome\r\n"
1323 "set JAVA_HOME=%JAVA_HOME:\"=%\r\n"
1324 "set JAVA_EXE=%JAVA_HOME%/bin/java.exe\r\n"
1325 "\r\n"
1326 "if exist \"%JAVA_EXE%\" goto init\r\n"
1327 "\r\n"
1328 "echo.\r\n"
1329 "echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%\r\n"
1330 "echo.\r\n"
1331 "echo Please set the JAVA_HOME variable in your environment to match the\r\n"
1332 "echo location of your Java installation.\r\n"
1333 "\r\n"
1334 "goto fail\r\n"
1335 "\r\n"
1336 ":init\r\n"
1337 "@rem Get command-line arguments, handling Windowz variants\r\n"
1338 "\r\n"
1339 "if not \"%OS%\" == \"Windows_NT\" goto win9xME_args\r\n"
1340 "if \"%@eval[2+2]\" == \"4\" goto 4NT_args\r\n"
1341 "\r\n"
1342 ":win9xME_args\r\n"
1343 "@rem Slurp the command line arguments.\r\n"
1344 "set CMD_LINE_ARGS=\r\n"
1345 "set _SKIP=2\r\n"
1346 "\r\n"
1347 ":win9xME_args_slurp\r\n"
1348 "if \"x%~1\" == \"x\" goto execute\r\n"
1349 "\r\n"
1350 "set CMD_LINE_ARGS=%*\r\n"
1351 "goto execute\r\n"
1352 "\r\n"
1353 ":4NT_args\r\n"
1354 "@rem Get arguments from the 4NT Shell from JP Software\r\n"
1355 "set CMD_LINE_ARGS=%$\r\n"
1356 "\r\n"
1357 ":execute\r\n"
1358 "@rem Setup the command line\r\n"
1359 "\r\n"
1360 "set CLASSPATH=%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\r\n"
1361 "\r\n"
1362 "@rem Execute Gradle\r\n"
1363 "\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -classpath \"%CLASSPATH%\" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%\r\n"
1364 "\r\n"
1365 ":end\r\n"
1366 "@rem End local scope for the variables with windows NT shell\r\n"
1367 "if \"%ERRORLEVEL%\"==\"0\" goto mainEnd\r\n"
1368 "\r\n"
1369 ":fail\r\n"
1370 "rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\r\n"
1371 "rem the _cmd.exe /c_ return code!\r\n"
1372 "if  not \"\" == \"%GRADLE_EXIT_CONSOLE%\" exit 1\r\n"
1373 "exit /b 1\r\n"
1374 "\r\n"
1375 ":mainEnd\r\n"
1376 "if \"%OS%\"==\"Windows_NT\" endlocal\r\n"
1377 "\r\n"
1378 ":omega\r\n";
1379 
1380 const char* gradlew_bat = (const char*) temp_binary_data_8;
1381 
1382 //================== LICENSE ==================
1383 static const unsigned char temp_binary_data_9[] =
1384 "Apache License\n"
1385 "                           Version 2.0, January 2004\n"
1386 "                        http://www.apache.org/licenses/\n"
1387 "\n"
1388 "   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n"
1389 "\n"
1390 "   1. Definitions.\n"
1391 "\n"
1392 "      \"License\" shall mean the terms and conditions for use, reproduction,\n"
1393 "      and distribution as defined by Sections 1 through 9 of this document.\n"
1394 "\n"
1395 "      \"Licensor\" shall mean the copyright owner or entity authorized by\n"
1396 "      the copyright owner that is granting the License.\n"
1397 "\n"
1398 "      \"Legal Entity\" shall mean the union of the acting entity and all\n"
1399 "      other entities that control, are controlled by, or are under common\n"
1400 "      control with that entity. For the purposes of this definition,\n"
1401 "      \"control\" means (i) the power, direct or indirect, to cause the\n"
1402 "      direction or management of such entity, whether by contract or\n"
1403 "      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n"
1404 "      outstanding shares, or (iii) beneficial ownership of such entity.\n"
1405 "\n"
1406 "      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n"
1407 "      exercising permissions granted by this License.\n"
1408 "\n"
1409 "      \"Source\" form shall mean the preferred form for making modifications,\n"
1410 "      including but not limited to software source code, documentation\n"
1411 "      source, and configuration files.\n"
1412 "\n"
1413 "      \"Object\" form shall mean any form resulting from mechanical\n"
1414 "      transformation or translation of a Source form, including but\n"
1415 "      not limited to compiled object code, generated documentation,\n"
1416 "      and conversions to other media types.\n"
1417 "\n"
1418 "      \"Work\" shall mean the work of authorship, whether in Source or\n"
1419 "      Object form, made available under the License, as indicated by a\n"
1420 "      copyright notice that is included in or attached to the work\n"
1421 "      (an example is provided in the Appendix below).\n"
1422 "\n"
1423 "      \"Derivative Works\" shall mean any work, whether in Source or Object\n"
1424 "      form, that is based on (or derived from) the Work and for which the\n"
1425 "      editorial revisions, annotations, elaborations, or other modifications\n"
1426 "      represent, as a whole, an original work of authorship. For the purposes\n"
1427 "      of this License, Derivative Works shall not include works that remain\n"
1428 "      separable from, or merely link (or bind by name) to the interfaces of,\n"
1429 "      the Work and Derivative Works thereof.\n"
1430 "\n"
1431 "      \"Contribution\" shall mean any work of authorship, including\n"
1432 "      the original version of the Work and any modifications or additions\n"
1433 "      to that Work or Derivative Works thereof, that is intentionally\n"
1434 "      submitted to Licensor for inclusion in the Work by the copyright owner\n"
1435 "      or by an individual or Legal Entity authorized to submit on behalf of\n"
1436 "      the copyright owner. For the purposes of this definition, \"submitted\"\n"
1437 "      means any form of electronic, verbal, or written communication sent\n"
1438 "      to the Licensor or its representatives, including but not limited to\n"
1439 "      communication on electronic mailing lists, source code control systems,\n"
1440 "      and issue tracking systems that are managed by, or on behalf of, the\n"
1441 "      Licensor for the purpose of discussing and improving the Work, but\n"
1442 "      excluding communication that is conspicuously marked or otherwise\n"
1443 "      designated in writing by the copyright owner as \"Not a Contribution.\"\n"
1444 "\n"
1445 "      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n"
1446 "      on behalf of whom a Contribution has been received by Licensor and\n"
1447 "      subsequently incorporated within the Work.\n"
1448 "\n"
1449 "   2. Grant of Copyright License. Subject to the terms and conditions of\n"
1450 "      this License, each Contributor hereby grants to You a perpetual,\n"
1451 "      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n"
1452 "      copyright license to reproduce, prepare Derivative Works of,\n"
1453 "      publicly display, publicly perform, sublicense, and distribute the\n"
1454 "      Work and such Derivative Works in Source or Object form.\n"
1455 "\n"
1456 "   3. Grant of Patent License. Subject to the terms and conditions of\n"
1457 "      this License, each Contributor hereby grants to You a perpetual,\n"
1458 "      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n"
1459 "      (except as stated in this section) patent license to make, have made,\n"
1460 "      use, offer to sell, sell, import, and otherwise transfer the Work,\n"
1461 "      where such license applies only to those patent claims licensable\n"
1462 "      by such Contributor that are necessarily infringed by their\n"
1463 "      Contribution(s) alone or by combination of their Contribution(s)\n"
1464 "      with the Work to which such Contribution(s) was submitted. If You\n"
1465 "      institute patent litigation against any entity (including a\n"
1466 "      cross-claim or counterclaim in a lawsuit) alleging that the Work\n"
1467 "      or a Contribution incorporated within the Work constitutes direct\n"
1468 "      or contributory patent infringement, then any patent licenses\n"
1469 "      granted to You under this License for that Work shall terminate\n"
1470 "      as of the date such litigation is filed.\n"
1471 "\n"
1472 "   4. Redistribution. You may reproduce and distribute copies of the\n"
1473 "      Work or Derivative Works thereof in any medium, with or without\n"
1474 "      modifications, and in Source or Object form, provided that You\n"
1475 "      meet the following conditions:\n"
1476 "\n"
1477 "      (a) You must give any other recipients of the Work or\n"
1478 "          Derivative Works a copy of this License; and\n"
1479 "\n"
1480 "      (b) You must cause any modified files to carry prominent notices\n"
1481 "          stating that You changed the files; and\n"
1482 "\n"
1483 "      (c) You must retain, in the Source form of any Derivative Works\n"
1484 "          that You distribute, all copyright, patent, trademark, and\n"
1485 "          attribution notices from the Source form of the Work,\n"
1486 "          excluding those notices that do not pertain to any part of\n"
1487 "          the Derivative Works; and\n"
1488 "\n"
1489 "      (d) If the Work includes a \"NOTICE\" text file as part of its\n"
1490 "          distribution, then any Derivative Works that You distribute must\n"
1491 "          include a readable copy of the attribution notices contained\n"
1492 "          within such NOTICE file, excluding those notices that do not\n"
1493 "          pertain to any part of the Derivative Works, in at least one\n"
1494 "          of the following places: within a NOTICE text file distributed\n"
1495 "          as part of the Derivative Works; within the Source form or\n"
1496 "          documentation, if provided along with the Derivative Works; or,\n"
1497 "          within a display generated by the Derivative Works, if and\n"
1498 "          wherever such third-party notices normally appear. The contents\n"
1499 "          of the NOTICE file are for informational purposes only and\n"
1500 "          do not modify the License. You may add Your own attribution\n"
1501 "          notices within Derivative Works that You distribute, alongside\n"
1502 "          or as an addendum to the NOTICE text from the Work, provided\n"
1503 "          that such additional attribution notices cannot be construed\n"
1504 "          as modifying the License.\n"
1505 "\n"
1506 "      You may add Your own copyright statement to Your modifications and\n"
1507 "      may provide additional or different license terms and conditions\n"
1508 "      for use, reproduction, or distribution of Your modifications, or\n"
1509 "      for any such Derivative Works as a whole, provided Your use,\n"
1510 "      reproduction, and distribution of the Work otherwise complies with\n"
1511 "      the conditions stated in this License.\n"
1512 "\n"
1513 "   5. Submission of Contributions. Unless You explicitly state otherwise,\n"
1514 "      any Contribution intentionally submitted for inclusion in the Work\n"
1515 "      by You to the Licensor shall be under the terms and conditions of\n"
1516 "      this License, without any additional terms or conditions.\n"
1517 "      Notwithstanding the above, nothing herein shall supersede or modify\n"
1518 "      the terms of any separate license agreement you may have executed\n"
1519 "      with Licensor regarding such Contributions.\n"
1520 "\n"
1521 "   6. Trademarks. This License does not grant permission to use the trade\n"
1522 "      names, trademarks, service marks, or product names of the Licensor,\n"
1523 "      except as required for reasonable and customary use in describing the\n"
1524 "      origin of the Work and reproducing the content of the NOTICE file.\n"
1525 "\n"
1526 "   7. Disclaimer of Warranty. Unless required by applicable law or\n"
1527 "      agreed to in writing, Licensor provides the Work (and each\n"
1528 "      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n"
1529 "      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n"
1530 "      implied, including, without limitation, any warranties or conditions\n"
1531 "      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n"
1532 "      PARTICULAR PURPOSE. You are solely responsible for determining the\n"
1533 "      appropriateness of using or redistributing the Work and assume any\n"
1534 "      risks associated with Your exercise of permissions under this License.\n"
1535 "\n"
1536 "   8. Limitation of Liability. In no event and under no legal theory,\n"
1537 "      whether in tort (including negligence), contract, or otherwise,\n"
1538 "      unless required by applicable law (such as deliberate and grossly\n"
1539 "      negligent acts) or agreed to in writing, shall any Contributor be\n"
1540 "      liable to You for damages, including any direct, indirect, special,\n"
1541 "      incidental, or consequential damages of any character arising as a\n"
1542 "      result of this License or out of the use or inability to use the\n"
1543 "      Work (including but not limited to damages for loss of goodwill,\n"
1544 "      work stoppage, computer failure or malfunction, or any and all\n"
1545 "      other commercial damages or losses), even if such Contributor\n"
1546 "      has been advised of the possibility of such damages.\n"
1547 "\n"
1548 "   9. Accepting Warranty or Additional Liability. While redistributing\n"
1549 "      the Work or Derivative Works thereof, You may choose to offer,\n"
1550 "      and charge a fee for, acceptance of support, warranty, indemnity,\n"
1551 "      or other liability obligations and/or rights consistent with this\n"
1552 "      License. However, in accepting such obligations, You may act only\n"
1553 "      on Your own behalf and on Your sole responsibility, not on behalf\n"
1554 "      of any other Contributor, and only if You agree to indemnify,\n"
1555 "      defend, and hold each Contributor harmless for any liability\n"
1556 "      incurred by, or claims asserted against, such Contributor by reason\n"
1557 "      of your accepting any such warranty or additional liability.\n"
1558 "\n"
1559 "   END OF TERMS AND CONDITIONS\n"
1560 "\n"
1561 "   APPENDIX: How to apply the Apache License to your work.\n"
1562 "\n"
1563 "      To apply the Apache License to your work, attach the following\n"
1564 "      boilerplate notice, with the fields enclosed by brackets \"{}\"\n"
1565 "      replaced with your own identifying information. (Don't include\n"
1566 "      the brackets!)  The text should be enclosed in the appropriate\n"
1567 "      comment syntax for the file format. We also recommend that a\n"
1568 "      file or class name and description of purpose be included on the\n"
1569 "      same \"printed page\" as the copyright notice for easier\n"
1570 "      identification within third-party archives.\n"
1571 "\n"
1572 "   Copyright {yyyy} {name of copyright owner}\n"
1573 "\n"
1574 "   Licensed under the Apache License, Version 2.0 (the \"License\");\n"
1575 "   you may not use this file except in compliance with the License.\n"
1576 "   You may obtain a copy of the License at\n"
1577 "\n"
1578 "       http://www.apache.org/licenses/LICENSE-2.0\n"
1579 "\n"
1580 "   Unless required by applicable law or agreed to in writing, software\n"
1581 "   distributed under the License is distributed on an \"AS IS\" BASIS,\n"
1582 "   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n"
1583 "   See the License for the specific language governing permissions and\n"
1584 "   limitations under the License.\n"
1585 "\n";
1586 
1587 const char* LICENSE = (const char*) temp_binary_data_9;
1588 
1589 //================== background_logo.svg ==================
1590 static const unsigned char temp_binary_data_10[] =
1591 "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n"
1592 "<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" x=\"0px\" y=\"0px\"\r\n"
1593 "\t viewBox=\"0 0 451.7 451.7\" enable-background=\"new 0 0 451.7 451.7\" xml:space=\"preserve\">\r\n"
1594 "<g>\r\n"
1595 "\t<g>\r\n"
1596 "\t\t<path fill=\"#808285\" d=\"M111.8,421.9c-8.7,0-15.6-3.2-21.8-11.3l8.5-7.3c4.2,5.5,8.2,7.6,13.3,7.6c9.2,0,15.5-6.9,15.5-17.5v-51.8\r\n"
1597 "\t\t\th11.7v51.8C138.9,410.4,127.7,421.9,111.8,421.9z\"/>\r\n"
1598 "\t\t<path fill=\"#808285\" d=\"M185.7,421.9c-17,0-31.6-12.5-31.6-33.1v-47.2h11.7v46.6c0,13.8,8.2,22.8,19.9,22.8c11.7,0,20-8.9,20-22.8\r\n"
1599 "\t\t\tv-46.6h11.7v47.2C217.4,409.4,202.7,421.9,185.7,421.9z\"/>\r\n"
1600 "\t\t<path fill=\"#808285\" d=\"M268.9,421.9c-22.6,0-40.9-18.1-40.9-40.6c0-22.6,18.5-40.6,40.9-40.6c10,0,18.8,3.5,25.7,9.2l-6.9,8.6\r\n"
1601 "\t\t\tc-7.1-5-12-6.8-18.7-6.8c-16.2,0-29.1,13-29.1,29.7c0,16.7,12.9,29.7,29.1,29.7c6.4,0,11.8-2,18.6-6.7l7,8.7\r\n"
1602 "\t\t\tC285.9,419.6,278.1,421.9,268.9,421.9z\"/>\r\n"
1603 "\t\t<path fill=\"#808285\" d=\"M307.5,420.9v-79.3h47.8v10.5h-36.1v23.5h34.7V386h-34.7v24.4h36.1v10.5H307.5z\"/>\r\n"
1604 "\t</g>\r\n"
1605 "</g>\r\n"
1606 "<g>\r\n"
1607 "\t<path fill=\"#808285\" d=\"M222.6,313.3c-78.2,0-141.7-63.6-141.7-141.7S144.5,29.8,222.6,29.8s141.7,63.6,141.7,141.7\r\n"
1608 "\t\tS300.8,313.3,222.6,313.3z M222.6,39.3c-72.9,0-132.3,59.3-132.3,132.3s59.3,132.3,132.3,132.3s132.3-59.3,132.3-132.3\r\n"
1609 "\t\tS295.6,39.3,222.6,39.3z\"/>\r\n"
1610 "\t<path fill=\"#414042\" d=\"M334.5,166.8c2.4,0,4.8-0.9,6.5-2.6c1.9-1.9,2.7-4.4,2.4-7c-2.6-22.2-11.4-43.3-25.3-60.9\r\n"
1611 "\t\tc-1.7-2.2-4.1-3.3-6.6-3.3c-2.3,0-4.5,1-6.2,2.7L236.9,164c-1.1,1.1-0.3,2.9,1.2,2.9L334.5,166.8z\"/>\r\n"
1612 "\t<path fill=\"#58595B\" d=\"M311.5,250.2L311.5,250.2c2.6,0,4.9-1.2,6.6-3.3c13.9-17.6,22.6-38.7,25.3-60.9c0.3-2.6-0.6-5.1-2.4-7\r\n"
1613 "\t\tc-1.7-1.7-4.1-2.6-6.5-2.6l-96.4,0c-1.5,0-2.2,1.8-1.2,2.9l68.4,68.4C307,249.2,309.2,250.2,311.5,250.2z\"/>\r\n"
1614 "\t<path fill=\"#6D6E71\" d=\"M229.9,290L229.9,290c1.8,1.8,4.3,2.7,7.1,2.3c22.3-2.6,43.4-11.3,60.9-25.2c2.1-1.6,3.2-4,3.3-6.7\r\n"
1615 "\t\tc0-2.4-1-4.7-2.8-6.4l-68.1-68.1c-1.1-1.1-2.9-0.3-2.9,1.2l0,96.7C227.4,286.1,228.2,288.4,229.9,290z\"/>\r\n"
1616 "\t<path fill=\"#A7A9AC\" d=\"M133.8,92.9c-2.6,0-4.9,1.2-6.6,3.3c-13.9,17.6-22.6,38.7-25.3,60.9c-0.3,2.6,0.6,5.1,2.4,7\r\n"
1617 "\t\tc1.7,1.7,4.1,2.6,6.5,2.6l96.4,0c1.5,0,2.2-1.8,1.2-2.9L140,95.6C138.3,93.9,136.1,92.9,133.8,92.9z\"/>\r\n"
1618 "\t<path fill=\"#BCBEC0\" d=\"M215.4,53.1c-1.8-1.8-4.3-2.7-7.1-2.3C186.1,53.4,165,62.1,147.4,76c-2.1,1.6-3.2,4-3.3,6.7\r\n"
1619 "\t\tc0,2.4,1,4.7,2.8,6.4l68.1,68.1c1.1,1.1,2.9,0.3,2.9-1.2l0-96.7C217.9,57,217,54.8,215.4,53.1z\"/>\r\n"
1620 "\t<path fill=\"#D1D3D4\" d=\"M301.3,82.7c0-2.6-1.2-4.9-3.3-6.6c-17.6-13.9-38.7-22.6-60.9-25.3c-2.6-0.3-5.1,0.6-7,2.4\r\n"
1621 "\t\tc-1.7,1.7-2.6,4.1-2.6,6.5l0,96.4c0,1.5,1.8,2.2,2.9,1.2l68.4-68.4C300.3,87.2,301.3,85,301.3,82.7z\"/>\r\n"
1622 "\t<path fill=\"#939598\" d=\"M207.2,176.3l-96.4,0c-2.4,0-4.8,0.9-6.5,2.6c-1.9,1.9-2.7,4.4-2.4,7c2.6,22.2,11.4,43.3,25.3,60.9\r\n"
1623 "\t\tc1.7,2.2,4.1,3.3,6.6,3.3c2.3,0,4.5-1,6.2-2.7c0,0,0,0,0,0l68.4-68.4C209.4,178.1,208.7,176.3,207.2,176.3z\"/>\r\n"
1624 "\t<path fill=\"#808285\" d=\"M215.1,185.8L146.9,254c-1.7,1.7-2.8,4-2.8,6.4c0,2.7,1.2,5.1,3.3,6.7c17.6,13.9,38.6,22.6,60.9,25.2\r\n"
1625 "\t\tc2.7,0.3,5.2-0.5,7.1-2.3c1.6-1.6,2.5-3.8,2.5-6.3c0,0,0,0,0,0l0-96.7C217.9,185.5,216.1,184.8,215.1,185.8z\"/>\r\n"
1626 "</g>\r\n"
1627 "</svg>\r\n";
1628 
1629 const char* background_logo_svg = (const char*) temp_binary_data_10;
1630 
1631 //================== export_android.svg ==================
1632 static const unsigned char temp_binary_data_11[] =
1633 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1634 "<svg width=\"19px\" height=\"23px\" viewBox=\"0 0 19 23\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n"
1635 "    <!-- Generator: Sketch 43.1 (39012) - http://www.bohemiancoding.com/sketch -->\n"
1636 "    <title>androd</title>\n"
1637 "    <desc>Created with Sketch.</desc>\n"
1638 "    <defs></defs>\n"
1639 "    <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\n"
1640 "        <g id=\"Artboard\" transform=\"translate(-71.000000, -8.000000)\" fill-rule=\"nonzero\">\n"
1641 "            <g id=\"android\" transform=\"translate(67.000000, 6.000000)\">\n"
1642 "                <g id=\"androd\" transform=\"translate(4.149701, 2.592000)\">\n"
1643 "                    <path d=\"M12.0887784,1.906092 L13.1751916,0.325404 C13.2397006,0.231444 13.2236407,0.108108 13.1392994,0.049788 C13.0550659,-0.008208 12.9342395,0.020466 12.8702156,0.114534 L11.7411198,1.75662 C10.9970299,1.462914 10.1707545,1.2"
1644 "9924 9.29985629,1.29924 C8.42895808,1.29924 7.60246707,1.462752 6.85843114,1.75662 L5.72949701,0.11448 C5.66477246,0.02052 5.54416168,-0.008262 5.45987425,0.049734 C5.37558683,0.107892 5.35958084,0.231282 5.42408982,0.32535 L6.51088024,1.906038 C4.78"
1645 "293413,2.711502 3.57116766,4.242078 3.41676647,6.028398 L15.1822994,6.028398 C15.0284371,4.242078 13.8166168,2.711556 12.0887784,1.906092\" id=\"Shape\" fill=\"#9FBF3B\"></path>\n"
1646 "                    <path d=\"M6.84194012,4.397652 C6.48231737,4.397652 6.19092216,4.105674 6.19092216,3.745386 C6.19092216,3.385152 6.48215569,3.093066 6.84194012,3.093066 C7.20129341,3.093066 7.49258084,3.385044 7.49258084,3.745386 C7.49263473,4.10"
1647 "562 7.20129341,4.397652 6.84194012,4.397652\" id=\"Shape\" fill=\"#FFFFFF\"></path>\n"
1648 "                    <path d=\"M11.7571796,4.397652 C11.3978263,4.397652 11.106485,4.105674 11.106485,3.745386 C11.106485,3.385044 11.3978263,3.093066 11.7571796,3.093066 C12.1169102,3.093066 12.4081437,3.385152 12.4081437,3.745386 C12.4081437,4.10562"
1649 " 12.1168024,4.397652 11.7571796,4.397652\" id=\"Shape\" fill=\"#FFFFFF\"></path>\n"
1650 "                    <path d=\"M2.66135928,13.478292 C2.66135928,14.204592 2.07371856,14.793408 1.34881437,14.793408 L1.34881437,14.793408 C0.623964072,14.793408 0.0363233533,14.204592 0.0363233533,13.478292 L0.0363233533,8.15886 C0.0363233533,7.43256"
1651 " 0.623964072,6.843744 1.34881437,6.843744 L1.34881437,6.843744 C2.07371856,6.843744 2.66135928,7.43256 2.66135928,8.15886 L2.66135928,13.478292 Z\" id=\"Shape\" fill=\"#9FBF3B\"></path>\n"
1652 "                    <path d=\"M3.4165509,6.884406 L3.4165509,16.491816 C3.4165509,17.06238 3.87819162,17.524998 4.44777844,17.524998 L5.66752096,17.524998 L5.66752096,20.481174 C5.66752096,21.207528 6.25510778,21.79629 6.98001198,21.79629 C7.70491617"
1653 ",21.79629 8.29255689,21.207528 8.29255689,20.481174 L8.29255689,17.524998 L10.3065629,17.524998 L10.3065629,20.481174 C10.3065629,21.207528 10.8940958,21.79629 11.6190539,21.79629 C12.344012,21.79629 12.9315449,21.207528 12.9315449,20.481174 L12.9315"
1654 "449,17.524998 L14.1512874,17.524998 C14.7208743,17.524998 15.1826228,17.06265 15.1826228,16.491816 L15.1826228,6.884406 L3.4165509,6.884406 Z\" id=\"Shape\" fill=\"#9FBF3B\"></path>\n"
1655 "                    <path d=\"M15.9377605,13.478292 C15.9377605,14.204592 16.5253473,14.793408 17.2502515,14.793408 L17.2502515,14.793408 C17.9751018,14.793408 18.5627425,14.204592 18.5627425,13.478292 L18.5627425,8.15886 C18.5627425,7.43256 17.97510"
1656 "18,6.843744 17.2502515,6.843744 L17.2502515,6.843744 C16.5253473,6.843744 15.9377605,7.43256 15.9377605,8.15886 L15.9377605,13.478292 Z\" id=\"Shape\" fill=\"#9FBF3B\"></path>\n"
1657 "                </g>\n"
1658 "            </g>\n"
1659 "        </g>\n"
1660 "    </g>\n"
1661 "</svg>";
1662 
1663 const char* export_android_svg = (const char*) temp_binary_data_11;
1664 
1665 //================== export_clion.svg ==================
1666 static const unsigned char temp_binary_data_12[] =
1667 "<svg id=\"Layer_1\" data-name=\"Layer 1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 128\">\n"
1668 "  <defs>\n"
1669 "    <linearGradient id=\"linear-gradient\" x1=\"40.69\" y1=\"-676.56\" x2=\"83.48\" y2=\"-676.56\" gradientTransform=\"matrix(1, 0, 0, -1, 0, -648.86)\" gradientUnits=\"userSpaceOnUse\">\n"
1670 "      <stop offset=\"0\" stop-color=\"#ed358c\"/>\n"
1671 "      <stop offset=\"0.16\" stop-color=\"#e9388c\"/>\n"
1672 "      <stop offset=\"0.3\" stop-color=\"#de418c\"/>\n"
1673 "      <stop offset=\"0.43\" stop-color=\"#cc508c\"/>\n"
1674 "      <stop offset=\"0.57\" stop-color=\"#b2658d\"/>\n"
1675 "      <stop offset=\"0.7\" stop-color=\"#90808d\"/>\n"
1676 "      <stop offset=\"0.83\" stop-color=\"#67a18e\"/>\n"
1677 "      <stop offset=\"0.95\" stop-color=\"#37c78f\"/>\n"
1678 "      <stop offset=\"1\" stop-color=\"#22d88f\"/>\n"
1679 "    </linearGradient>\n"
1680 "    <linearGradient id=\"linear-gradient-2\" x1=\"32.58\" y1=\"-665.27\" x2=\"13.76\" y2=\"-791.59\" gradientTransform=\"matrix(1, 0, 0, -1, 0, -648.86)\" gradientUnits=\"userSpaceOnUse\">\n"
1681 "      <stop offset=\"0.09\" stop-color=\"#22d88f\"/>\n"
1682 "      <stop offset=\"0.9\" stop-color=\"#029de0\"/>\n"
1683 "    </linearGradient>\n"
1684 "    <linearGradient id=\"linear-gradient-3\" x1=\"116.68\" y1=\"-660.66\" x2=\"-12.09\" y2=\"-796.66\" xlink:href=\"#linear-gradient-2\"/>\n"
1685 "    <linearGradient id=\"linear-gradient-4\" x1=\"73.35\" y1=\"-739.1\" x2=\"122.29\" y2=\"-746.06\" xlink:href=\"#linear-gradient-2\"/>\n"
1686 "  </defs>\n"
1687 "  <title>icon_CLion</title>\n"
1688 "  <g>\n"
1689 "    <polygon points=\"49.2 51.8 40.6 55.4 48.4 0 77.8 16.2 49.2 51.8\" fill=\"url(#linear-gradient)\"/>\n"
1690 "    <polygon points=\"44.6 76.8 48.8 0 11.8 23.2 0 94 44.6 76.8\" fill=\"url(#linear-gradient-2)\"/>\n"
1691 "    <polygon points=\"125.4 38.4 109 4.8 77.8 16.2 55 41.4 0 94 41.6 124.4 93.6 77.2 125.4 38.4\" fill=\"url(#linear-gradient-3)\"/>\n"
1692 "    <polygon points=\"53.8 54.6 46.6 98.4 75.8 121 107.8 128 128 82.4 53.8 54.6\" fill=\"url(#linear-gradient-4)\"/>\n"
1693 "  </g>\n"
1694 "  <g>\n"
1695 "    <rect x=\"24\" y=\"24\" width=\"80\" height=\"80\"/>\n"
1696 "    <rect x=\"31.6\" y=\"89\" width=\"30\" height=\"5\" fill=\"#fff\"/>\n"
1697 "    <path d=\"M31,51.2h0A16.83,16.83,0,0,1,48.2,34c6.2,0,10,2,13,5.2l-4.6,5.4c-2.6-2.4-5.2-3.8-8.4-3.8-5.6,0-9.6,4.6-9.6,10.4h0c0,5.6,4,10.4,9.6,10.4,3.8,0,6.2-1.6,8.8-3.8l4.6,4.6c-3.4,3.6-7.2,6-13.6,6A17,17,0,0,1,31,51.2\" fill=\"#fff\"/>\n"
1698 "    <path d=\"M66.6,34.4H74v27H88.4v6.2H66.6V34.4Z\" fill=\"#fff\"/>\n"
1699 "  </g>\n"
1700 "</svg>\n";
1701 
1702 const char* export_clion_svg = (const char*) temp_binary_data_12;
1703 
1704 //================== export_codeBlocks.svg ==================
1705 static const unsigned char temp_binary_data_13[] =
1706 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1707 "<svg width=\"20px\" height=\"20px\" viewBox=\"0 0 20 20\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n"
1708 "    <!-- Generator: Sketch 43.1 (39012) - http://www.bohemiancoding.com/sketch -->\n"
1709 "    <title>Group</title>\n"
1710 "    <desc>Created with Sketch.</desc>\n"
1711 "    <defs></defs>\n"
1712 "    <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\n"
1713 "        <g id=\"Artboard\" transform=\"translate(-33.000000, -4.000000)\">\n"
1714 "            <g id=\"Group\" transform=\"translate(33.000000, 4.000000)\">\n"
1715 "                <polygon id=\"Rectangle-5-Copy-4\" fill=\"#FD3535\" points=\"7.36842105 -1.87919855e-13 9.47368421 4.21052632 9.47368421 9.47368421 4.21052632 9.47368421 6.83692868e-14 7.36842105 3.55271368e-15 -1.67409946e-14\"></polygon>\n"
1716 "                <polygon id=\"Rectangle-5-Copy-5\" fill=\"#6AC300\" transform=\"translate(15.263158, 4.736842) scale(-1, 1) translate(-15.263158, -4.736842) \" points=\"17.8947368 -1.87919855e-13 20 4.21052632 20 9.47368421 14.7368421 9.47368421 10.5"
1717 "263158 7.36842105 10.5263158 -1.67409946e-14\"></polygon>\n"
1718 "                <polygon id=\"Rectangle-5-Copy-7\" fill=\"#EBBF20\" transform=\"translate(4.736842, 15.263158) scale(1, -1) translate(-4.736842, -15.263158) \" points=\"7.36842105 10.5263158 9.47368421 14.7368421 9.47368421 20 4.21052632 20 6.8369286"
1719 "8e-14 17.8947368 3.55271368e-15 10.5263158\"></polygon>\n"
1720 "                <polygon id=\"Rectangle-5-Copy-6\" fill=\"#1F6CE9\" transform=\"translate(15.263158, 15.263158) scale(-1, -1) translate(-15.263158, -15.263158) \" points=\"17.8947368 10.5263158 20 14.7368421 20 20 14.7368421 20 10.5263158 17.8947368 "
1721 "10.5263158 10.5263158\"></polygon>\n"
1722 "            </g>\n"
1723 "        </g>\n"
1724 "    </g>\n"
1725 "</svg>";
1726 
1727 const char* export_codeBlocks_svg = (const char*) temp_binary_data_13;
1728 
1729 //================== export_linux.svg ==================
1730 static const unsigned char temp_binary_data_14[] =
1731 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1732 "<svg width=\"63px\" height=\"75px\" viewBox=\"0 0 63 75\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n"
1733 "    <!-- Generator: Sketch 43.1 (39012) - http://www.bohemiancoding.com/sketch -->\n"
1734 "    <title>Android</title>\n"
1735 "    <desc>Created with Sketch.</desc>\n"
1736 "    <defs></defs>\n"
1737 "    <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\n"
1738 "        <g id=\"Artboard\" transform=\"translate(-115.000000, -15.000000)\" fill-rule=\"nonzero\">\n"
1739 "            <g id=\"Android\" transform=\"translate(115.000000, 15.000000)\">\n"
1740 "                <path d=\"M46.1535022,26.1203623 C46.9768865,27.8918861 47.8751239,29.6135078 48.6735572,31.3850316 C50.2205216,34.8033239 51.3932204,38.3962736 51.8922412,42.1139784 C52.391262,45.8316832 52.1667026,49.6741432 50.9940038,53.2171908 C"
1741 "49.6715987,57.2343081 47.2014459,60.8023067 44.1324681,63.7465293 C40.5145674,67.2147237 35.8986252,69.8844849 30.8834663,70.0840932 C27.6148802,70.2088484 24.3712451,69.28566 21.5018756,67.7636466 C19.0816248,66.4911436 16.8609823,64.7944729 15.0894"
1742 "586,62.6985856 C13.3179348,60.6026983 12.0204807,58.1075944 11.3967048,55.4378333 C10.6481736,52.1442961 10.9974881,48.6511506 12.1202849,45.4823687 C12.9187182,43.2118241 14.116368,41.0909858 14.9896544,38.8453923 C15.9128428,36.3752394 16.4368147,3"
1743 "3.7553803 17.6843666,31.4099826 C18.8071634,29.2891443 20.478883,27.4926695 21.3771204,25.272027 C21.9010922,23.9496219 22.1506026,22.5274127 22.4749661,21.1301545 C22.8242807,19.7328963 23.2983504,18.3605892 24.2464899,17.2627434 C25.3692867,15.9652"
1744 "894 27.0659573,15.2666603 28.787579,15.067052 C30.4842497,14.8674437 32.2308224,15.1419051 33.902542,15.5161707 C35.2498981,15.8155832 36.5473522,16.1898488 37.8448062,16.6639185 C38.9426519,17.0631351 40.0404976,17.5122538 40.9886371,18.1859319 C42."
1745 "2860912,19.1091203 43.2841327,20.4065744 44.0576149,21.8038326 C44.8310972,23.2010907 45.5047752,24.6732021 46.1535022,26.1203623\" id=\"path29670-2\" fill=\"#020204\"></path>\n"
1746 "                <path d=\"M32.3071772,70.3379664 C33.6794843,70.4128195 35.0517915,70.5625257 36.3991476,70.7621341 C37.5967974,70.9367913 38.7694963,71.1863017 39.9671462,71.4607632 C41.813523,71.9098819 43.6349489,72.4837558 45.5312279,72.5336578 C"
1747 "46.0302487,72.5586089 46.5292694,72.5336578 47.0282902,72.4089026 C47.527311,72.3090985 47.9764297,72.1094902 48.3756463,71.7851267 C48.9495202,71.3110569 49.3237858,70.6124278 49.4734921,69.8888477 C49.6231983,69.1652676 49.5233941,68.3917853 49.323"
1748 "7858,67.6931563 C48.8996182,66.270947 47.9764297,65.0483461 47.2278985,63.7758431 C46.8037309,63.052263 46.4045142,62.2787808 45.9304445,61.5801517 C45.4563748,60.8815226 44.8825009,60.2078445 44.1838718,59.7587258 C43.1858302,59.1099988 41.9632293,5"
1749 "8.9103905 40.7905304,59.0351457 C39.6178316,59.1599009 38.4950348,59.5840685 37.4470912,60.1080404 C35.9749799,60.8565715 34.6026728,61.9045152 33.8042395,63.3516754 C33.5297781,63.8506962 33.3301698,64.3996191 33.0806594,64.9235909 C32.8561,65.44756"
1750 "27 32.5566875,65.9715346 32.1574709,66.3707512 C31.7083522,66.8198699 31.1344783,67.1442334 30.6604086,67.5933521 C30.4358492,67.8179114 30.2362409,68.0674218 30.1114857,68.3668343 C29.9867305,68.6662468 29.9617795,69.0155613 30.0615836,69.3149738 C3"
1751 "0.1364368,69.5145821 30.2611919,69.7141904 30.4358492,69.8389456 C30.6105065,69.9886518 30.8101148,70.088456 31.0097231,70.1633091 C31.4338908,70.2880643 31.8830095,70.3130154 32.3071772,70.3379664\" id=\"path29676-3\" fill=\"#020204\"></path>\n"
1752 "                <path d=\"M27.9409416,70.2361543 C26.7931938,70.2611053 25.6703971,70.4607136 24.5476003,70.710224 C23.4747056,70.9347834 22.401811,71.1842938 21.3538673,71.4587552 C19.5573925,71.9328249 17.7858687,72.4817478 15.9394918,72.5316499 C1"
1753 "5.4654221,72.5316499 14.9664013,72.5066988 14.4923316,72.4068947 C14.0182618,72.3070905 13.5691431,72.1074822 13.1699265,71.8080697 C12.5960526,71.334 12.221787,70.6603219 12.0720808,69.9117908 C11.9223745,69.1632596 12.0221787,68.4147284 12.221787,6"
1754 "7.7160993 C12.6459547,66.2938901 13.5441921,65.0712892 14.2927233,63.7987862 C14.7168909,63.0752061 15.0911565,62.3017238 15.5402752,61.6030947 C15.9893939,60.9044656 16.5383168,60.2307876 17.2618969,59.7567179 C18.2100364,59.1329419 19.4076863,58.90"
1755 "83825 20.5554341,59.0331377 C21.7031819,59.1578929 22.8010276,59.5571095 23.7990692,60.1060324 C25.2212784,60.8795146 26.5187324,61.9524093 27.3421167,63.3496675 C27.9159906,64.322758 28.2653052,65.4455548 28.9389832,66.3687432 C29.3132488,66.867764 "
1756 "29.7623675,67.2919317 30.06178,67.8159035 C30.2114862,68.0903649 30.3112904,68.3648263 30.3611924,68.6891898 C30.3861435,68.9886023 30.3112904,69.3129658 30.1615841,69.5624762 C30.0368289,69.7371335 29.8871227,69.8618887 29.7124654,69.9616928 C29.537"
1757 "8081,70.061497 29.3381998,70.1363501 29.1385915,70.1613012 C28.7643259,70.2361543 28.3401583,70.2361543 27.9409416,70.2361543\" id=\"path29676-7-1\" fill=\"#020204\"></path>\n"
1758 "                <path d=\"M21.3925244,22.15769 C21.2428181,20.211509 21.2677692,18.290279 21.192916,16.3440979 C21.1180629,14.47277 20.9434057,12.6263931 21.0182588,10.7550652 C21.0931119,8.85878618 21.3925244,6.93755617 22.2408597,5.24088552 C23.089"
1759 "195,3.54421486 24.4615022,2.09705459 26.1332218,1.19881718 C27.7051373,0.350481853 29.5265631,-0.0237837335 31.2980869,0.0011673056 C33.7183377,0.0261183447 36.1635395,0.749698478 38.1097206,2.17190771 C39.3323215,3.07014511 40.3802651,4.21789291 41."
1760 "2036494,5.49039591 C41.9022785,6.58824163 42.4512014,7.7858915 42.7755649,9.03344346 C43.474194,11.6034005 43.2995367,14.2981127 43.4492429,16.9678739 C43.5739981,19.4879288 43.9732147,22.0079838 43.8484595,24.5280387 C43.8235085,25.0769616 43.748655"
1761 "4,25.6258845 43.524096,26.1249052 C43.2745856,26.598975 42.875369,26.9981916 42.4262503,27.247702 C41.9521806,27.5221634 41.4531598,27.6718697 40.9042369,27.7467228 C39.8562933,27.9213801 38.7833986,27.7966249 37.7105039,27.896429 C36.1635395,28.0461"
1762 "352 34.6914282,28.6200091 33.1694148,28.8445685 C31.347989,29.1190299 29.476661,28.9194216 27.6552352,28.8445685 C26.906704,28.8196175 26.1831239,28.7946664 25.4345927,28.7198133 C24.7110126,28.6200091 23.9624814,28.4453519 23.3137544,28.0960373 C22."
1763 "9145377,27.871478 22.5402722,27.5970165 22.2408597,27.272653 C21.9414472,26.9233385 21.7168879,26.5241219 21.5921327,26.0750032 C21.4174754,25.4013251 21.5172796,24.727647 21.5172796,24.029018 C21.5172796,23.405242 21.4424264,22.781466 21.3925244,22."
1764 "15769\" id=\"path28712-2\" fill=\"#020204\"></path>\n"
1765 "                <path d=\"M24.4857731,22.0829382 C24.2362627,22.4073017 24.0616054,22.8065184 23.9618013,23.205735 C23.8619971,23.6049516 23.812095,24.0291193 23.812095,24.453287 C23.787144,25.3016223 23.8370461,26.1499576 23.6124867,26.9483909 C23.3"
1766 "879274,27.8216772 22.8390045,28.5702084 22.3150327,29.2937885 C21.4167953,30.5662915 20.5185579,31.8637456 20.0694392,33.3358569 C19.7949777,34.2340943 19.7201246,35.1822338 19.8199288,36.1303733 C18.8218872,37.6024846 17.9486009,39.1744 17.2250207,4"
1767 "0.8211686 C16.127175,43.2913215 15.3786438,45.9361316 15.1041824,48.6308438 C14.7798189,51.924381 15.2039866,55.3426734 16.5014406,58.3867001 C17.4495801,60.5823916 18.8468383,62.6034257 20.6682641,64.1753412 C21.5914526,64.9737744 22.6144452,65.6474"
1768 "525 23.7122909,66.1963754 C27.5048488,68.0677033 32.1956442,68.0677033 35.9383,66.0716202 C37.8844811,65.0236765 39.5312497,63.5016631 41.1281162,61.9796498 C42.0762557,61.0564613 43.0243951,60.1083218 43.7729263,58.9855251 C45.1701845,56.8397357 45."
1769 "6692053,54.2448276 45.9686178,51.6998216 C46.4925896,47.2585367 46.5175406,42.5427903 44.5713596,38.525673 C43.8976815,37.1284148 42.9994441,35.8559118 41.9265494,34.7580661 C41.652088,32.8118851 41.0782141,30.9156061 40.2548298,29.1440823 C39.656004"
1770 "9,27.8466283 38.9324247,26.6240274 38.3835019,25.3265733 C38.1589425,24.8026015 37.9593342,24.2536786 37.7098238,23.7297068 C37.4603134,23.205735 37.160901,22.7067142 36.7367333,22.3074976 C36.3125656,21.908281 35.7636428,21.6088685 35.2147199,21.409"
1771 "2602 C34.640846,21.2346029 34.0669721,21.1347988 33.4681472,21.1098477 C32.2704973,21.0599456 31.0977985,21.2096519 29.9001486,21.1597498 C28.9520091,21.1098477 28.0038696,20.9601415 27.0557301,21.0100436 C26.5816604,21.0349946 26.1075906,21.1347988 "
1772 "25.6584719,21.309456 C25.2093532,21.4841133 24.7851856,21.7086727 24.4857731,22.0829382\" id=\"path29719-5\" fill=\"#FDFDFB\"></path>\n"
1773 "                <path d=\"M25.1049189,11.0038778 C24.6558002,11.0288289 24.2316326,11.2284372 23.9072691,11.5278496 C23.5829056,11.8272621 23.3583462,12.2264787 23.20864,12.6506464 C22.9341785,13.4989817 22.9840806,14.4221702 23.0589337,15.2954566 C2"
1774 "3.1088358,16.0938898 23.1836889,16.9172741 23.4831014,17.6658053 C23.6328076,18.0400709 23.857367,18.3893854 24.1318284,18.6887979 C24.4062898,18.9882103 24.7805554,19.1878187 25.154821,19.2876228 C25.5290866,19.387427 25.9033522,19.3624759 26.277617"
1775 "8,19.2377207 C26.6269323,19.1129655 26.9762469,18.9133572 27.2257573,18.6638468 C27.6249739,18.2895812 27.8744843,17.7656094 28.0491416,17.2416376 C28.1988478,16.7176658 28.2487499,16.1437919 28.2487499,15.594869 C28.2487499,14.8962399 28.1489457,14."
1776 "2225619 27.9243864,13.5488838 C27.699827,12.9001568 27.3754635,12.2763808 26.8764427,11.77736 C26.6518834,11.5278496 26.3774219,11.3282413 26.0780095,11.1785351 C25.778597,11.0787309 25.4542335,10.9789268 25.1049189,11.0038778\" id=\"path28795-9-5\" "
1777 "fill=\"#FDFDFB\"></path>\n"
1778 "                <path d=\"M32.7547573,11.5576557 C32.0561282,12.0317255 31.4822543,12.7054035 31.2077928,13.5038368 C30.8584783,14.5018783 30.9832335,15.6246751 31.332548,16.6227167 C31.6818626,17.6457093 32.2806875,18.6187998 33.1789249,19.2425758 C"
1779 "33.6280436,19.5419882 34.1520155,19.7665476 34.6759873,19.8164497 C35.2249101,19.8913028 35.773833,19.7914986 36.2479027,19.5419882 C36.8467277,19.2425758 37.2708953,18.6936529 37.5703078,18.094828 C37.8447692,17.496003 37.9695244,16.822325 37.994475"
1780 "5,16.173598 C38.0443776,15.3252626 37.9695244,14.4769273 37.695063,13.678494 C37.3956505,12.8052077 36.8467277,12.0067744 36.0732455,11.5077536 C35.6989799,11.2582433 35.2498612,11.083586 34.8007425,11.0336839 C34.3516238,10.9588308 33.877554,11.0087"
1781 "329 33.4533864,11.1833901 C33.1789249,11.2831943 32.9543656,11.4079495 32.7547573,11.5576557\" id=\"path28795-3\" fill=\"#FDFDFB\"></path>\n"
1782 "                <g id=\"g28965-1\" transform=\"translate(33.000000, 13.000000)\" fill=\"#020204\">\n"
1783 "                    <path d=\"M1.79647481,0.0998041564 C1.54696442,0.124755195 1.27250299,0.199608313 1.04794364,0.349314547 C0.82338429,0.499020782 0.648727016,0.673678056 0.499020782,0.898237407 C0.199608313,1.32240507 0.0748531173,1.84637689 0.049"
1784 "9020782,2.37034871 C0.0249510391,2.76956534 0.0748531173,3.16878196 0.199608313,3.51809651 C0.324363508,3.8923621 0.54892286,4.24167665 0.848335329,4.49118704 C1.1477478,4.74069743 1.54696442,4.89040366 1.94618105,4.9153547 C2.34539767,4.94030574 2.7"
1785 "446143,4.81555055 3.09392885,4.59099119 C3.36839028,4.41633392 3.56799859,4.16682353 3.71770482,3.86741106 C3.86741106,3.59294963 3.96721522,3.26858612 3.99216625,2.94422261 C4.06701937,2.39529975 3.99216625,1.79647481 3.71770482,1.29745403 C3.468194"
1786 "43,0.798433251 3.01907573,0.374265586 2.49510391,0.174657274 C2.27054456,0.124755195 2.02103417,0.0748531173 1.79647481,0.0998041564\" id=\"path28879-6\"></path>\n"
1787 "                </g>\n"
1788 "                <g id=\"g29497-8\" transform=\"translate(24.000000, 14.000000)\" fill=\"#020204\">\n"
1789 "                    <path d=\"M0.224559352,1.42220923 C0.124755195,1.97113209 0.124755195,2.56995703 0.324363508,3.09392885 C0.449118704,3.44324339 0.673678056,3.7676069 0.923188446,4.04206833 C1.09784572,4.21672561 1.27250299,4.39138288 1.49706235,4"
1790 ".49118704 C1.7216217,4.59099119 1.97113209,4.64089327 2.22064248,4.59099119 C2.44520183,4.54108912 2.64481014,4.39138288 2.76956534,4.21672561 C2.91927157,4.04206833 2.99412469,3.81750898 3.06897781,3.61790067 C3.26858612,2.96917365 3.24363508,2.2705"
1791 "4456 3.04402677,1.64676858 C2.89432053,1.17269884 2.66976118,0.723580134 2.2954956,0.424167665 C2.12083832,0.27446143 1.92123001,0.149706235 1.67171962,0.0998041564 C1.44716027,0.0499020782 1.19764988,0.0499020782 0.998041564,0.149706235 C0.773482212"
1792 ",0.249510391 0.573873899,0.449118704 0.474069743,0.698629095 C0.349314547,0.923188446 0.27446143,1.17269884 0.224559352,1.42220923\" id=\"path29453-9\"></path>\n"
1793 "                </g>\n"
1794 "                <g id=\"g29634-9\" transform=\"translate(22.999845, 16.000000)\">\n"
1795 "                    <path d=\"M0,5.72292607 C0.0249510391,5.79777918 0.0499020782,5.8726323 0.0748531173,5.92253438 C0.149706235,6.02233853 0.249510391,6.12214269 0.349314547,6.19699581 C0.449118704,6.27184893 0.573873899,6.34670204 0.673678056,6.396"
1796 "60412 C1.24755195,6.77086971 1.7216217,7.26989049 2.14578936,7.81881335 C2.71966326,8.54239348 3.21868404,9.36577777 3.96721522,9.88974959 C4.49118704,10.2640152 5.13991405,10.4885745 5.78864107,10.5384766 C6.56212328,10.6133297 7.31065445,10.4885745"
1797 " 8.05918563,10.2640152 C8.73286368,10.0644069 9.40654174,9.78994544 10.0053667,9.41567985 C11.1531145,8.71705076 12.101254,7.66910712 13.373757,7.19503737 C13.6482184,7.09523322 13.9476309,7.0203801 14.1971412,6.8956249 C14.4716027,6.77086971 14.7211"
1798 "131,6.57126139 14.8458683,6.321751 C14.9706235,6.07224061 14.9706235,5.77282814 14.9955745,5.49836671 C15.0454766,5.19895424 15.1452807,4.89954178 15.1951828,4.60012931 C15.2450849,4.30071684 15.2450849,3.97635333 15.1203297,3.7018919 C15.0205255,3.4"
1799 "7733255 14.8209172,3.30267527 14.5963579,3.17792008 C14.3717985,3.05316488 14.1222881,3.0032628 13.8727777,3.0032628 C13.373757,2.97831177 12.8747362,3.10306696 12.3757154,3.15296904 C11.7269884,3.20287112 11.0533103,3.128018 10.3796323,3.15296904 C9"
1800 ".55624797,3.17792008 8.73286368,3.35257735 7.90947939,3.40247943 C6.96133991,3.45238151 6.03815146,3.30267527 5.09001198,3.2527732 C4.69079535,3.22782216 4.26662769,3.22782216 3.86741106,3.30267527 C3.46819443,3.37752839 3.06897781,3.50228359 2.74461"
1801 "43,3.75179398 C2.42025079,3.97635333 2.14578936,4.2757658 1.84637689,4.55022723 C1.69667066,4.67498242 1.54696442,4.79973762 1.34735611,4.87459074 C1.1477478,4.94944385 0.973090525,5.02429697 0.773482212,4.99934593 C0.673678056,4.99934593 0.573873899"
1802 ",4.97439489 0.474069743,4.99934593 C0.424167665,5.02429697 0.349314547,5.04924801 0.324363508,5.09915009 C0.299412469,5.14905217 0.249510391,5.19895424 0.199608313,5.24885632 C0.124755195,5.44846464 0.0499020782,5.57321983 0,5.72292607\" id=\"path284"
1803 "61-2\" fill=\"#FFB510\"></path>\n"
1804 "                    <g id=\"path27476-7-8\" transform=\"translate(0.000000, 3.000000)\" fill=\"#604405\">\n"
1805 "                        <path d=\"M1.52201338,1.32240507 C1.19764988,1.52201338 0.873286368,1.74657274 0.54892286,1.97113209 C0.374265586,2.09588728 0.224559352,2.22064248 0.124755195,2.39529975 C0.0748531173,2.52005495 0.0499020782,2.66976118 0.0499"
1806 "020782,2.81946742 L0.0499020782,3.24363508 C0.0249510391,3.34343924 0,3.44324339 0,3.54304755 C0,3.59294963 0,3.64285171 0.0249510391,3.69275379 C0.0499020782,3.74265586 0.0499020782,3.79255794 0.0998041564,3.81750898 C0.149706235,3.86741106 0.199608"
1807 "313,3.8923621 0.249510391,3.91731314 C0.299412469,3.94226418 0.374265586,3.94226418 0.424167665,3.96721522 C0.723580134,4.04206833 0.973090525,4.21672561 1.19764988,4.41633392 C1.42220923,4.61594223 1.62181754,4.84050158 1.84637689,5.0401099 C2.47015"
1808 "287,5.56408172 3.3184882,5.76369003 4.14187249,5.78864107 C4.96525678,5.81359211 5.76369003,5.63893484 6.56212328,5.46427756 C7.18589926,5.31457133 7.80967524,5.16486509 8.40850017,4.96525678 C9.33168862,4.61594223 10.180024,4.11692145 10.9285551,3.4"
1809 "6819443 C11.2529186,3.16878196 11.5772821,2.84441846 11.9515477,2.6198591 C12.2759112,2.42025079 12.6501768,2.27054456 12.9994914,2.07093624 C13.0244424,2.04598521 13.0493934,2.04598521 13.0992955,2.02103417 C13.1242466,1.99608313 13.1491976,1.971132"
1810 "09 13.1741486,1.94618105 C13.1990997,1.89627897 13.1990997,1.82142585 13.1741486,1.77152378 C13.1491976,1.7216217 13.1242466,1.67171962 13.0743445,1.62181754 C13.0244424,1.57191546 12.9745403,1.52201338 12.9246383,1.47211131 C12.5753237,1.17269884 12"
1811 ".0763029,1.04794364 11.6271842,1.0229926 C11.1531145,0.998041564 10.6790447,1.0229926 10.229926,0.923188446 C9.80575836,0.848335329 9.3815907,0.698629095 8.95742303,0.54892286 C8.50830433,0.399216625 8.05918563,0.299412469 7.61006692,0.224559352 C6.5"
1812 "3717224,0.0499020782 5.43932652,0.0748531173 4.36643184,0.299412469 C3.36839028,0.424167665 2.39529975,0.798433251 1.52201338,1.32240507\" id=\"Shape\"></path>\n"
1813 "                    </g>\n"
1814 "                    <path d=\"M1.99608313,2.36612373 C1.52201338,2.69048723 1.07289468,3.08970386 0.723580134,3.53882256 C0.523971821,3.78833295 0.324363508,4.08774542 0.224559352,4.38715789 C0.149706235,4.63666828 0.124755195,4.88617867 0.0499020782"
1815 ",5.1606401 C0.0249510391,5.26044426 0,5.36024842 0,5.46005257 C0,5.50995465 0,5.55985673 0.0249510391,5.60975881 C0.0499020782,5.65966089 0.0748531173,5.70956296 0.0998041564,5.734514 C0.149706235,5.78441608 0.224559352,5.83431816 0.324363508,5.83431"
1816 "816 C0.399216625,5.8592692 0.474069743,5.8592692 0.573873899,5.8592692 C0.948139486,5.90917128 1.27250299,6.08382855 1.57191546,6.28343686 C1.87132793,6.48304518 2.14578936,6.73255557 2.47015287,6.93216388 C3.14383093,7.35633154 3.96721522,7.55593986"
1817 " 4.76564847,7.5808909 C5.56408172,7.60584193 6.38746601,7.48108674 7.16094822,7.3313805 C7.7847242,7.20662531 8.40850017,7.05691907 9.00732511,6.83235972 C9.93051356,6.48304518 10.7538978,5.90917128 11.5273801,5.33529738 C11.8766946,5.06083595 12.226"
1818 "0092,4.78637452 12.5503727,4.48696205 C12.6501768,4.38715789 12.774932,4.2624027 12.8747362,4.18754958 C12.9994914,4.08774542 13.1242466,4.01289231 13.2739528,3.96299023 C13.4985121,3.88813711 13.7230715,3.91308815 13.9476309,3.96299023 C14.1222881,3"
1819 ".98794127 14.2969454,4.03784334 14.4716027,4.01289231 C14.5464558,4.01289231 14.6462599,3.98794127 14.7211131,3.96299023 C14.7959662,3.93803919 14.8708193,3.88813711 14.9207214,3.81328399 C14.9955745,3.71347984 15.0205255,3.61367568 15.0205255,3.4889"
1820 "2048 C15.0205255,3.36416529 14.9955745,3.26436113 14.9207214,3.16455698 C14.7959662,2.96494866 14.5963579,2.84019347 14.3967496,2.74038931 C14.1222881,2.61563412 13.7979246,2.540781 13.4985121,2.46592788 C12.5753237,2.24136853 11.6521353,1.91700502 1"
1821 "0.8037999,1.46788632 C10.3796323,1.24332697 9.9554646,1.01876761 9.53129693,0.794208262 C9.10712927,0.56964891 8.65801057,0.345089558 8.18394082,0.195383324 C7.13599718,-0.128980184 5.98824938,-0.029176028 4.94030574,0.345089558 C3.84246002,0.7193551"
1822 "45 2.79451638,1.44293528 1.99608313,2.36612373 L1.99608313,2.36612373\" id=\"path27476-4\" fill=\"#FFB510\"></path>\n"
1823 "                </g>\n"
1824 "                <path d=\"M47.3006272,37.3384927 C48.8226406,38.5610936 49.7707801,40.4074705 50.0701925,42.3287005 C50.2947519,43.8257629 50.1450456,45.3727273 49.8206821,46.8448386 C49.4963186,48.3169499 48.9473958,49.7641102 48.448375,51.1863194 C"
1825 "48.2487667,51.7601933 48.0242073,52.3340672 47.9493542,52.9328922 C47.8745011,53.5317171 47.9244032,54.1804441 48.1988646,54.7044159 C48.5232281,55.3032409 49.1470041,55.7274085 49.8206821,55.9270168 C50.4694091,56.1266252 51.1929893,56.1266252 51.84"
1826 "17163,55.9519679 C52.5153944,55.7773106 53.1391703,55.4529471 53.6631421,55.0537305 C55.0354493,53.9808358 55.8588336,52.3340672 56.1831971,50.6124455 C56.5075606,48.8908238 56.3578544,47.1193 56.0584419,45.4226294 C55.6592253,43.0772317 54.9605962,4"
1827 "0.7817361 54.0873098,38.5860447 C53.4385828,36.9642271 52.6900516,35.3673606 51.642108,33.9701024 C50.6191154,32.5977953 49.3216613,31.4500475 48.3236198,30.0777403 C47.6249907,29.1046498 47.0760678,28.0567062 46.2277325,27.2083708 C45.8035648,26.784"
1828 "2032 45.3294951,26.4348886 44.7556212,26.2103293 C44.2066983,25.9857699 43.5829224,25.9358679 43.0090485,26.0855741 C42.2605173,26.3101334 41.6367413,26.8840073 41.3123778,27.6075875 C40.9880143,28.3311676 40.9381122,29.1296009 41.0628674,29.9030831 "
1829 "C41.2375247,30.9011246 41.6866434,31.8243131 42.1856642,32.6975994 C42.7595381,33.67069 43.4332161,34.6188295 44.3065025,35.3673606 C45.254642,36.0909408 46.3774387,36.5899615 47.3006272,37.3384927\" id=\"path29705-5-0\" fill=\"#020204\"></path>\n"
1830 "                <g id=\"g17048\" transform=\"translate(41.000000, 52.000000)\" fill=\"#FFB510\">\n"
1831 "                    <path d=\"M21.707404,11.6022332 C21.5327467,12.0264008 21.3081874,12.4256175 21.0087749,12.774932 C20.3600479,13.5484142 19.4368595,14.072386 18.538622,14.5215048 C16.9916576,15.319938 15.3947911,15.9936161 13.9476309,16.9417555 C"
1832 "12.9745403,17.5655315 12.0763029,18.3140627 11.2279676,19.1124959 C10.5043875,19.811125 9.8307094,20.5347052 9.03227615,21.1085791 C8.20889186,21.707404 7.28570342,22.1315717 6.28766185,22.2812779 C5.09001198,22.4559352 3.84246002,22.2313758 2.719663"
1833 "26,21.7323551 C1.94618105,21.3830405 1.17269884,20.9089708 0.723580134,20.1853906 C0.27446143,19.4618105 0.174657274,18.5635731 0.174657274,17.7152378 C0.174657274,16.1932244 0.449118704,14.696162 0.723580134,13.1990997 C0.948139486,11.9515477 1.1477"
1834 "478,10.7039958 1.29745403,9.45644382 C1.54696442,7.18589926 1.54696442,4.86545262 1.37230715,2.59490807 C1.34735611,2.22064248 1.32240507,1.82142585 1.37230715,1.44716027 C1.42220923,1.07289468 1.5968665,0.698629095 1.87132793,0.449118704 C2.14578936"
1835 ",0.224559352 2.49510391,0.124755195 2.84441846,0.0998041564 C3.193733,0.0748531173 3.54304755,0.124755195 3.8923621,0.199608313 C4.71574639,0.324363508 5.56408172,0.424167665 6.36251497,0.623775977 C6.86153575,0.748531173 7.36055653,0.948139486 7.884"
1836 "52835,1.07289468 C8.73286368,1.29745403 9.63110109,1.42220923 10.5043875,1.32240507 C11.4525269,1.22260092 12.3507644,0.848335329 13.2989038,0.873286368 C13.6981205,0.873286368 14.072386,0.948139486 14.4466516,1.07289468 C14.8209172,1.19764988 15.195"
1837 "1828,1.37230715 15.4696442,1.64676858 C15.6692526,1.87132793 15.8189588,2.12083832 15.943714,2.42025079 C16.1183713,2.84441846 16.1932244,3.29353716 16.2431264,3.71770482 C16.2680775,4.11692145 16.2680775,4.51613808 16.3429306,4.9153547 C16.4676858,5"
1838 ".56408172 16.7920493,6.13795562 17.216217,6.6369764 C17.6403846,7.13599718 18.1394054,7.56016485 18.6384262,7.98433251 C19.137447,8.40850017 19.6364678,8.83266784 20.1853906,9.18198239 C20.434901,9.35663966 20.7093624,9.50634589 20.9339218,9.70595421"
1839 " C21.1834322,9.90556252 21.3830405,10.1051708 21.5327467,10.3796323 C21.7323551,10.7538978 21.8072082,11.2030166 21.707404,11.6022332 L21.707404,11.6022332\" id=\"path14296-0\"></path>\n"
1840 "                </g>\n"
1841 "                <g id=\"path28767-9-3\" opacity=\"0.25\" transform=\"translate(20.000000, 28.000000)\" fill=\"#7C7C7C\">\n"
1842 "                    <path d=\"M1.1477478,0.399216625 C1.12279676,0.0499020782 0.598824938,-0.0249510391 0.374265586,0.174657274 C0.174657274,0.324363508 -2.65065747e-15,0.848335329 0.174657274,1.04794364 C0.424167665,1.37230715 1.17269884,0.898237407"
1843 " 1.1477478,0.399216625 Z\" id=\"Shape\"></path>\n"
1844 "                </g>\n"
1845 "                <g id=\"g14884-8\" transform=\"translate(46.000000, 50.000000)\" fill=\"#020204\">\n"
1846 "                    <path d=\"M9.03227615,2.24559352 C8.932472,1.97113209 8.75781472,1.7216217 8.53325537,1.52201338 C8.30869602,1.32240507 8.05918563,1.17269884 7.7847242,1.04794364 C7.23580134,0.82338429 6.66192744,0.723580134 6.08805354,0.62377597"
1847 "7 C5.53913068,0.523971821 5.01515886,0.399216625 4.466236,0.299412469 C3.8923621,0.199608313 3.3184882,0.149706235 2.7446143,0.27446143 C2.24559352,0.374265586 1.79647481,0.648727016 1.42220923,0.973090525 C1.04794364,1.29745403 0.773482212,1.7465727"
1848 "4 0.54892286,2.19569144 C0.174657274,2.99412469 0.0748531173,3.91731314 0.124755195,4.79059951 C0.174657274,5.43932652 0.349314547,6.11300458 0.773482212,6.61202536 C1.12279676,7.01124199 1.62181754,7.26075238 2.12083832,7.41045861 C2.99412469,7.6599"
1849 "69 3.96721522,7.659969 4.84050158,7.36055653 C6.28766185,6.88648679 7.56016485,5.91339627 8.40850017,4.66584431 C8.6829616,4.26662769 8.932472,3.81750898 9.05722719,3.3184882 C9.15703135,2.99412469 9.15703135,2.59490807 9.03227615,2.24559352\" id=\"p"
1850 "ath29714-5-4\"></path>\n"
1851 "                </g>\n"
1852 "                <g id=\"g15037-4\" transform=\"translate(9.000000, 27.000000)\" fill=\"#020204\">\n"
1853 "                    <path d=\"M10.0303177,2.6198591 C9.30673758,3.51809651 8.60810849,4.41633392 7.88452835,5.31457133 C7.01124199,6.41241705 6.11300458,7.51026277 5.53913068,8.78276576 C5.0401099,9.88061148 4.81555055,11.0782614 4.466236,12.2260092 "
1854 "C4.09197041,13.5484142 3.56799859,14.8209172 2.96917365,16.0435181 C2.42025079,17.1912659 1.84637689,18.3140627 1.24755195,19.4119084 C0.82338429,20.2352927 0.374265586,21.058677 0.224559352,21.9569144 C0.0998041564,22.6804945 0.174657274,23.4040747 "
1855 "0.349314547,24.1276548 C0.523971821,24.8262839 0.82338429,25.499962 1.1477478,26.148689 C2.56995703,28.9182543 4.69079535,31.288603 7.18589926,33.1100289 C8.33364706,33.9334132 7.06114406,32.1618894 8.33364706,32.7357633 C9.03227615,33.0601268 9.7558"
1856 "5629,33.3345882 10.5293385,33.3595393 C10.9036041,33.3595393 11.3028207,33.3096372 11.6521353,33.159931 C12.0014498,33.0102247 12.3258133,32.7607143 12.5254216,32.4363508 C12.774932,32.0371342 12.8747362,31.5630645 12.8248341,31.0889947 C12.774932,30"
1857 ".614925 12.6002747,30.1658063 12.3507644,29.7665896 C11.7519394,28.7934991 10.8037999,28.069919 9.90556252,27.3712899 C7.95938147,25.8492765 8.55820641,26.7475139 6.73678056,25.0757943 C6.23775977,24.6017245 5.71378795,24.1027038 5.36447341,23.503878"
1858 "8 C5.01515886,22.9300049 4.84050158,22.2563269 4.69079535,21.5826488 C4.3414808,19.761223 4.44128496,17.8150419 5.06506094,16.0684692 C5.31457133,15.3698401 5.63893484,14.7211131 5.9383473,14.072386 C6.48727016,12.9246383 6.98629095,11.7519394 7.6849"
1859 "2004,10.7039958 C8.55820641,9.40654174 9.75585629,8.28374498 10.4794364,6.88648679 C11.0782614,5.71378795 11.3277717,4.36643184 11.5772821,3.06897781 C11.7519394,2.07093624 11.9265967,1.04794364 12.101254,0.0249510391 C11.4026249,0.898237407 10.70399"
1860 "58,1.77152378 10.0303177,2.6198591 Z\" id=\"path14967-1-0\"></path>\n"
1861 "                </g>\n"
1862 "                <g id=\"Group\" transform=\"translate(0.000000, 51.000000)\" fill=\"#FFB510\">\n"
1863 "                    <g id=\"g14180-6\" transform=\"translate(0.000000, -0.000000)\">\n"
1864 "                        <path d=\"M10.3796323,0.174657274 C10.7788489,-1.26496036e-14 11.2279676,-0.0249510391 11.6521353,0.0499020782 C12.0763029,0.124755195 12.4755195,0.299412469 12.8248341,0.54892286 C13.5484142,1.0229926 14.072386,1.74657274 14."
1865 "5714068,2.44520183 C15.7441057,4.04206833 16.8669024,5.68883691 17.864944,7.38550757 C18.6883283,8.75781472 19.4368595,10.204975 20.40995,11.502429 C21.033726,12.3507644 21.7323551,13.1242466 22.356131,13.9725819 C22.979907,14.8209172 23.5288299,15.7"
1866 "441057 23.8032913,16.7421472 C24.1526058,18.0645523 24.0278506,19.5117126 23.4040747,20.7343135 C22.954956,21.5826488 22.2812779,22.33118 21.4578936,22.8052497 C20.6345093,23.2793195 19.6614188,23.5537809 18.7132793,23.5288299 C17.1912659,23.4789278 "
1867 "15.7940077,22.7054456 14.3717985,22.1565227 C11.477478,21.0087749 8.33364706,20.6345093 5.36447341,19.7362719 C4.44128496,19.4618105 3.54304755,19.137447 2.6198591,18.8879366 C2.22064248,18.7631814 1.79647481,18.6883283 1.39725819,18.48872 C0.9980415"
1868 "64,18.3140627 0.648727016,18.0645523 0.424167665,17.6902867 C0.249510391,17.4158253 0.199608313,17.0665107 0.199608313,16.7421472 C0.199608313,16.4177837 0.27446143,16.0934202 0.399216625,15.7690567 C0.623775977,15.1452807 0.973090525,14.5963579 1.22"
1869 "260092,13.9725819 C1.62181754,12.9745403 1.69667066,11.8766946 1.64676858,10.8037999 C1.5968665,9.73090525 1.42220923,8.6829616 1.34735611,7.61006692 C1.32240507,7.13599718 1.29745403,6.6369764 1.39725819,6.1878577 C1.49706235,5.73873899 1.69667066,5"
1870 ".26466925 2.04598521,4.9153547 C2.37034871,4.61594223 2.79451638,4.41633392 3.21868404,4.3414808 C3.64285171,4.24167665 4.09197041,4.24167665 4.54108912,4.26662769 C4.99020782,4.26662769 5.41437548,4.29157872 5.86349419,4.26662769 C6.31261289,4.24167"
1871 "665 6.73678056,4.14187249 7.13599718,3.91731314 C7.51026277,3.71770482 7.80967524,3.39334132 8.03423459,3.06897781 C8.25879394,2.7446143 8.48335329,2.37034871 8.6829616,1.99608313 C8.88256992,1.62181754 9.10712927,1.27250299 9.35663966,0.948139486 C9"
1872 ".60615005,0.623775977 9.98041564,0.324363508 10.3796323,0.174657274\" id=\"path4635-1\"></path>\n"
1873 "                    </g>\n"
1874 "                </g>\n"
1875 "            </g>\n"
1876 "        </g>\n"
1877 "    </g>\n"
1878 "</svg>";
1879 
1880 const char* export_linux_svg = (const char*) temp_binary_data_14;
1881 
1882 //================== export_visualStudio.svg ==================
1883 static const unsigned char temp_binary_data_15[] =
1884 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1885 "<svg width=\"20px\" height=\"20px\" viewBox=\"0 0 20 20\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n"
1886 "    <!-- Generator: Sketch 43.1 (39012) - http://www.bohemiancoding.com/sketch -->\n"
1887 "    <title>Visual Studio</title>\n"
1888 "    <desc>Created with Sketch.</desc>\n"
1889 "    <defs></defs>\n"
1890 "    <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\n"
1891 "        <g id=\"Artboard\" transform=\"translate(-77.000000, -43.000000)\">\n"
1892 "            <g id=\"Visual-Studio\" transform=\"translate(76.000000, 41.000000)\">\n"
1893 "                <polygon id=\"Rectangle\" fill=\"#68217A\" points=\"1 7 3 6 3 18 1 17\"></polygon>\n"
1894 "                <polygon id=\"Rectangle-2\" fill=\"#541D66\" transform=\"translate(5.607051, 10.000000) rotate(-330.000000) translate(-5.607051, -10.000000) \" points=\"1.34927858 7.83942379 7.86482304 8.6964746 9.86482304 12.1605762 2.84927858 10.43"
1895 "75\"></polygon>\n"
1896 "                <polygon id=\"Rectangle-3\" fill=\"#541D66\" points=\"3 15 8 10 8 14 3 18\"></polygon>\n"
1897 "                <polygon id=\"Rectangle-2-Copy\" fill=\"#68217A\" transform=\"translate(12.000000, 16.000000) rotate(-330.000000) translate(-12.000000, -16.000000) \" points=\"5.53589838 12.8038476 15.4641016 14 18.4641016 19.1961524 7.53589838 16.26"
1898 "79492\"></polygon>\n"
1899 "                <polygon id=\"Rectangle-2-Copy-2\" fill=\"#68217A\" transform=\"translate(12.433013, 8.250000) rotate(-330.000000) translate(-12.433013, -8.250000) \" points=\"9.46891109 11.9820508 12.3971143 1.05384758 15.3971143 6.25 11.4689111 15."
1900 "4461524\"></polygon>\n"
1901 "                <polygon id=\"Rectangle-4\" fill=\"#541D66\" points=\"16 2 21 4 21 20 16 22\"></polygon>\n"
1902 "            </g>\n"
1903 "        </g>\n"
1904 "    </g>\n"
1905 "</svg>";
1906 
1907 const char* export_visualStudio_svg = (const char*) temp_binary_data_15;
1908 
1909 //================== export_xcode.svg ==================
1910 static const unsigned char temp_binary_data_16[] =
1911 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
1912 "<svg width=\"33px\" height=\"32px\" viewBox=\"0 0 33 32\" version=\"1.1\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n"
1913 "    <!-- Generator: Sketch 43.1 (39012) - http://www.bohemiancoding.com/sketch -->\n"
1914 "    <title>Group 2</title>\n"
1915 "    <desc>Created with Sketch.</desc>\n"
1916 "    <defs></defs>\n"
1917 "    <g id=\"Page-1\" stroke=\"none\" stroke-width=\"1\" fill=\"none\" fill-rule=\"evenodd\">\n"
1918 "        <g id=\"Artboard\" transform=\"translate(-28.000000, -50.000000)\">\n"
1919 "            <g id=\"Group-2\" transform=\"translate(28.000000, 50.000000)\">\n"
1920 "                <g id=\"folder\" transform=\"translate(0.000000, 5.000000)\">\n"
1921 "                    <polygon id=\"Rectangle-5\" fill=\"#457EFD\" points=\"0 4 27 0 30 21 3 25\"></polygon>\n"
1922 "                    <path d=\"M19.9232759,13.0294985 C20.1413793,12.8123894 20.1034483,12.6519174 19.9517241,12.4725664 C19.3543103,11.7646018 18.7758621,11.0566372 18.1784483,10.3486726 C16.5189655,8.35693215 14.85,6.35575221 13.1905172,4.35457227 C"
1923 "13.0577586,4.19410029 12.9439655,3.97699115 12.9060345,3.76932153 C12.8396552,3.36342183 13.1146552,2.99528024 13.512931,2.83480826 C13.9396552,2.67433628 14.3094828,2.78761062 14.6698276,3.21238938 C16.3008621,5.15693215 17.9413793,7.10147493 19.572"
1924 "4138,9.0460177 C19.9612069,9.50855457 20.3594828,9.97109145 20.7672414,10.4525074 C20.9758621,10.2353982 20.9474138,10.0749263 20.7956897,9.89557522 C20.1413793,9.12153392 19.487069,8.3380531 18.8327586,7.5640118 C17.5146552,5.99705015 16.2060345,4.4"
1925 "300885 14.8784483,2.8820059 C14.3474138,2.26843658 13.5413793,2.23067847 12.9534483,2.74041298 C12.375,3.24070796 12.3465517,3.94867257 12.887069,4.59056047 C14.9353448,7.05427729 16.9836207,9.50855457 19.0318966,11.9722714 C19.3258621,12.3309735 19."
1926 "6198276,12.6707965 19.9232759,13.0294985 Z\" id=\"Shape\" fill=\"#235EE1\" fill-rule=\"nonzero\"></path>\n"
1927 "                    <path d=\"M13.3801724,9.05545723 C13.3137931,9.00825959 13.237931,8.94218289 13.1525862,8.90442478 C12.4982759,8.65899705 11.8439655,8.43244838 11.1896552,8.18702065 C10.9810345,8.11150442 10.8862069,8.18702065 10.8103448,8.366371"
1928 "68 C9.61551724,11.2926254 8.42068966,14.2094395 7.22586207,17.1356932 C7.13103448,17.3528024 7.19741379,17.4566372 7.39655172,17.5321534 C8.01293103,17.7775811 8.62931034,18.0135693 9.2362069,18.2873156 C9.56810345,18.4383481 9.70086207,18.3628319 9."
1929 "82413793,18.0324484 C10.962069,15.1345133 12.1189655,12.2460177 13.2663793,9.35752212 C13.2948276,9.29144543 13.3232759,9.19705015 13.3801724,9.05545723 Z\" id=\"Shape\" fill=\"#FFFFFF\" fill-rule=\"nonzero\"></path>\n"
1930 "                    <path d=\"M19.6293103,13.1050147 C19.1551724,12.5103245 18.7189655,12.019469 18.3586207,11.4908555 C18.0362069,11 17.6758621,10.7451327 17.0784483,10.9905605 C16.9362069,11.0471976 16.775,11.0471976 16.6232759,11.0660767 C15.35258"
1931 "62,11.2831858 14.0913793,11.500295 12.8206897,11.7174041 C12.6215517,11.7551622 12.4508621,11.8023599 12.3655172,12.0383481 C12.1189655,12.7368732 11.8534483,13.4259587 11.5974138,14.1244838 C11.5689655,14.2 11.5689655,14.2943953 11.55,14.4265487 C14"
1932 ".2525862,13.9923304 16.8887931,13.5581121 19.6293103,13.1050147 Z\" id=\"Shape\" fill=\"#FFFFFF\" fill-rule=\"nonzero\"></path>\n"
1933 "                    <path d=\"M8.97068966,12.2648968 C7.41551724,12.519764 5.9362069,12.7557522 4.40948276,13.0011799 C4.5137931,13.7091445 4.62758621,14.379351 4.70344828,15.0589971 C4.74137931,15.3516224 4.86465517,15.3893805 5.13017241,15.3516224 "
1934 "C5.90775862,15.2289086 6.69482759,15.1250737 7.48189655,15.0306785 C7.71896552,15.0023599 7.87068966,14.9079646 7.96551724,14.6908555 C8.25,14.0112094 8.55344828,13.3315634 8.84741379,12.6519174 C8.89482759,12.5386431 8.9137931,12.4442478 8.97068966,"
1935 "12.2648968 Z\" id=\"Shape\" fill=\"#FFFFFF\" fill-rule=\"nonzero\"></path>\n"
1936 "                    <path d=\"M25.6413793,18.1551622 C24.712069,17.5887906 23.7922414,17.0318584 22.787069,16.4277286 C22.825,16.6070796 22.8060345,16.8147493 22.9008621,16.9185841 C23.0810345,17.1168142 23.2991379,17.2867257 23.5362069,17.4094395 C2"
1937 "3.8586207,17.5887906 24.2,17.7115044 24.5318966,17.8719764 C25.0155172,18.1079646 25.3663793,18.4477876 25.3663793,19.0330383 C25.3663793,19.1274336 25.4137931,19.2218289 25.4517241,19.3256637 C25.5086207,19.2973451 25.5275862,19.2879056 25.5465517,1"
1938 "9.2784661 C25.575,19.2501475 25.5939655,19.2218289 25.612931,19.1935103 C26.1818966,18.3533923 26.2198276,17.4283186 25.9732759,16.4843658 C25.6982759,15.4271386 25.2051724,14.5115044 24.1715517,13.9828909 C23.887069,13.8412979 23.7068966,13.9640118 "
1939 "23.4982759,14.1056047 C23.2801724,14.2566372 23.1568966,14.4359882 23.2137931,14.7569322 C23.3655172,14.6625369 23.4982759,14.5964602 23.5931034,14.5020649 C23.8301724,14.2566372 24.0482759,14.3132743 24.3137931,14.4831858 C25.3568966,15.2100295 26.0"
1940 "112069,17.0412979 25.6413793,18.1551622 Z\" id=\"Shape\" fill=\"#235EE1\" fill-rule=\"nonzero\"></path>\n"
1941 "                    <path d=\"M6.57155172,22.1103245 C6.60948276,22.1292035 6.64741379,22.1480826 6.68534483,22.1575221 C7.62413793,20.9870206 8.57241379,19.8165192 9.53017241,18.6176991 C9.38793103,18.5421829 9.30258621,18.4855457 9.20775862,18.4477"
1942 "876 C8.60086207,18.2023599 7.99396552,17.9758112 7.39655172,17.720944 C7.11206897,17.5982301 7.02672414,17.6831858 7.00775862,17.9758112 C6.93189655,18.7687316 6.83706897,19.5616519 6.75172414,20.3640118 C6.68534483,20.9492625 6.62844828,21.5345133 6"
1943 ".57155172,22.1103245 Z\" id=\"Shape\" fill=\"#FFFFFF\" fill-rule=\"nonzero\"></path>\n"
1944 "                    <path d=\"M12.687931,5.83657817 C12.137931,5.89321534 11.7775862,6.11976401 11.5689655,6.60117994 C11.4267241,6.95044248 11.2939655,7.29970501 11.1327586,7.63952802 C11.037931,7.83775811 11.0663793,7.96047198 11.2939655,8.0359882 "
1945 "C11.9293103,8.25309735 12.5646552,8.48908555 13.1905172,8.73451327 C13.4181034,8.81946903 13.512931,8.7439528 13.5982759,8.54572271 C13.7405172,8.18702065 13.9017241,7.82831858 14.0534483,7.46961652 C14.2525862,6.98820059 14.1672414,6.58230088 13.731"
1946 "0345,6.29911504 C13.4181034,6.10088496 13.0387931,5.98761062 12.687931,5.83657817 Z\" id=\"Shape\" fill=\"#FFFFFF\" fill-rule=\"nonzero\"></path>\n"
1947 "                    <path d=\"M23.8112069,12.3498525 C24.6077586,12.2460177 25.3948276,12.1421829 26.1724138,12.019469 C26.2387931,12.0100295 26.3241379,11.840118 26.3146552,11.7646018 C26.2198276,11.1415929 26.1060345,10.5091445 25.9732759,9.8955752"
1948 "2 C25.9543103,9.80117994 25.7931034,9.66902655 25.6982759,9.66902655 C25.3,9.69734513 24.9017241,9.7539823 24.5034483,9.820059 C24.3043103,9.84837758 24.162069,9.94277286 24.2758621,10.2259587 C24.6362069,10.1787611 25.0060345,10.1221239 25.3758621,1"
1949 "0.0938053 C25.4612069,10.0843658 25.6224138,10.159882 25.6318966,10.2165192 C25.7362069,10.6884956 25.812069,11.179351 25.9068966,11.679646 C25.2905172,11.7646018 24.712069,11.840118 24.1431034,11.9156342 C23.9344828,11.9439528 23.7448276,11.9911504 "
1950 "23.8112069,12.3498525 Z\" id=\"Shape\" fill=\"#235EE1\" fill-rule=\"nonzero\"></path>\n"
1951 "                    <path d=\"M19.9232759,13.0294985 C19.6198276,12.6707965 19.3258621,12.3309735 19.0318966,11.9722714 C16.9836207,9.50855457 14.9353448,7.05427729 12.887069,4.59056047 C12.3465517,3.94867257 12.375,3.25014749 12.9534483,2.74041298 C"
1952 "13.5508621,2.22123894 14.3568966,2.25899705 14.8784483,2.8820059 C16.2060345,4.4300885 17.5146552,6.00648968 18.8327586,7.5640118 C19.487069,8.3380531 20.1318966,9.12153392 20.7956897,9.89557522 C20.9474138,10.0749263 20.9853448,10.2353982 20.7672414"
1953 ",10.4525074 C20.3594828,9.97109145 19.9612069,9.50855457 19.5724138,9.0460177 C17.9413793,7.10147493 16.3008621,5.15693215 14.6698276,3.21238938 C14.3094828,2.78761062 13.9396552,2.66489676 13.512931,2.83480826 C13.1051724,2.99528024 12.8396552,3.363"
1954 "42183 12.9060345,3.76932153 C12.9344828,3.97699115 13.0482759,4.19410029 13.1905172,4.35457227 C14.85,6.35575221 16.5094828,8.34749263 18.1784483,10.3486726 C18.7663793,11.0566372 19.3543103,11.7646018 19.9517241,12.4725664 C20.1034483,12.6519174 20."
1955 "1508621,12.8123894 19.9232759,13.0294985 Z\" id=\"Shape\" fill=\"#FFFFFF\" fill-rule=\"nonzero\"></path>\n"
1956 "                    <path d=\"M25.6413793,18.1551622 C26.0112069,17.0412979 25.3568966,15.2100295 24.3137931,14.5020649 C24.0577586,14.3227139 23.8396552,14.2755162 23.5931034,14.520944 C23.4982759,14.6153392 23.3655172,14.6719764 23.2137931,14.77581"
1957 "12 C23.1568966,14.4454277 23.2801724,14.2755162 23.4982759,14.1244838 C23.7068966,13.9734513 23.887069,13.860177 24.1715517,14.0017699 C25.2051724,14.5303835 25.6982759,15.4460177 25.9732759,16.5032448 C26.2198276,17.4471976 26.1818966,18.3722714 25."
1958 "612931,19.2123894 C25.5939655,19.240708 25.575,19.2690265 25.5465517,19.2973451 C25.5275862,19.3162242 25.5086207,19.3162242 25.4517241,19.3445428 C25.4232759,19.240708 25.3663793,19.1463127 25.3663793,19.0519174 C25.3663793,18.4666667 25.0155172,18."
1959 "1268437 24.5318966,17.8908555 C24.2,17.7303835 23.8491379,17.6076696 23.5362069,17.4283186 C23.2991379,17.2961652 23.0715517,17.1356932 22.9008621,16.9374631 C22.8060345,16.8336283 22.825,16.6259587 22.787069,16.4466077 C23.7922414,17.0318584 24.7120"
1960 "69,17.5887906 25.6413793,18.1551622 Z\" id=\"Shape\" fill=\"#FFFFFF\" fill-rule=\"nonzero\"></path>\n"
1961 "                    <path d=\"M23.8112069,12.3498525 C23.7353448,11.9911504 23.9344828,11.9439528 24.1431034,11.9156342 C24.712069,11.840118 25.2810345,11.7646018 25.9068966,11.679646 C25.812069,11.179351 25.7362069,10.6979351 25.6318966,10.2165192 C"
1962 "25.6224138,10.159882 25.4612069,10.0843658 25.3758621,10.0938053 C25.0060345,10.1221239 24.6362069,10.1787611 24.2758621,10.2259587 C24.1715517,9.93333333 24.3137931,9.84837758 24.5034483,9.820059 C24.9017241,9.76342183 25.3,9.69734513 25.6982759,9.6"
1963 "6902655 C25.7931034,9.65958702 25.9543103,9.80117994 25.9732759,9.89557522 C26.1060345,10.5185841 26.2198276,11.1415929 26.3146552,11.7646018 C26.3241379,11.840118 26.2293103,12.0100295 26.1724138,12.019469 C25.3948276,12.1421829 24.6172414,12.236578"
1964 "2 23.8112069,12.3498525 Z\" id=\"Shape\" fill=\"#FFFFFF\" fill-rule=\"nonzero\"></path>\n"
1965 "                </g>\n"
1966 "                <path d=\"M24.3232759,13.3569322 C23.687931,13.1681416 23.0810345,12.9982301 22.4836207,12.8283186 C22.2655172,12.7622419 22.3034483,12.6300885 22.3508621,12.4696165 C22.7017241,11.2330383 23.0431034,9.99646018 23.4034483,8.76932153 C"
1967 "23.7448276,7.60825959 23.9724138,6.42831858 23.8681034,5.220059 C23.7922414,4.35162242 23.6689655,3.5020649 23.0905172,2.76578171 C22.55,2.07669617 21.8198276,1.80294985 21.0043103,1.69911504 C19.8,1.53864307 18.6051724,1.55752212 17.3439655,1.661356"
1968 "93 C17.4672414,1.55752212 17.5715517,1.43480826 17.7043103,1.34041298 C18.6241379,0.689085546 19.6862069,0.396460177 20.7767241,0.226548673 C23.0525862,-0.132153392 25.2525862,0.207669617 27.4051724,0.943952802 C28.1543103,1.19882006 28.7801724,1.633"
1969 "03835 29.3301724,2.18053097 C29.8517241,2.69970501 30.4396552,2.80353982 31.0844828,2.53923304 C31.4827586,2.36932153 31.8241379,2.4259587 32.2034483,2.55811209 C33.1137931,2.87905605 33.1137931,2.86961652 32.8387931,3.80412979 C32.5922414,4.62536873"
1970 " 32.3456897,5.44660767 32.1086207,6.27728614 C32.0327586,6.53215339 31.9284483,6.6359882 31.6534483,6.54159292 C31.4543103,6.4660767 31.2456897,6.40943953 31.037069,6.38112094 C30.5913793,6.31504425 30.2689655,6.0979351 30.0034483,5.72035398 C29.5767"
1971 "241,5.14454277 28.9318966,5.19174041 28.3155172,5.25781711 C27.3862069,5.36165192 26.7887931,5.8619469 26.437931,6.74926254 C25.6508621,8.72212389 25.0724138,10.7610619 24.5034483,12.8 C24.4465517,12.9699115 24.3896552,13.139823 24.3232759,13.3569322"
1972 " Z\" id=\"Shape\" fill=\"#D2D2D2\" fill-rule=\"nonzero\"></path>\n"
1973 "                <path d=\"M18.4913793,31.9150442 C17.1163793,31.9056047 16.2155172,31.0182891 16.262931,29.7250737 C16.2724138,29.5079646 16.3387931,29.2814159 16.4146552,29.0737463 C18.2068966,23.9858407 20.0086207,18.9073746 21.8103448,13.8289086 C"
1974 "22.0189655,13.2247788 21.8862069,13.2058997 22.6163793,13.4135693 C23.0146552,13.5268437 23.412931,13.6495575 23.8112069,13.7439528 C24.1051724,13.8100295 24.1810345,13.9327434 24.1051724,14.2348083 C23.7258621,15.7923304 23.375,17.3498525 23.0051724"
1975 ",18.9073746 C22.1043103,22.6548673 21.2034483,26.4117994 20.2931034,30.159292 C20.2077586,30.5085546 20.0655172,30.8578171 19.8853448,31.1693215 C19.5724138,31.6884956 19.0887931,31.9622419 18.4913793,31.9150442 Z\" id=\"Shape\" fill=\"#000000\" fill"
1976 "-rule=\"nonzero\"></path>\n"
1977 "            </g>\n"
1978 "        </g>\n"
1979 "    </g>\n"
1980 "</svg>";
1981 
1982 const char* export_xcode_svg = (const char*) temp_binary_data_16;
1983 
1984 //================== gpl_logo.svg ==================
1985 static const unsigned char temp_binary_data_17[] =
1986 "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"720\" height=\"358\" version=\"1.1\">\n"
1987 "  <g id=\"g1\" transform=\"translate(-26.149211,-6.9701601)\">\n"
1988 "    <path id=\"path1\" style=\"fill:#bd0000;\" d=\"m 107.04146,18.25331 c 2e-5,0 -59.309734,258.76742 -59.309734,258.76742 0.01705,0 0.01919,0 0.05329,0 0,0 274.380814,0 274.380814,0 10e-6,0 142.70573,0 142.70573,0 -17.00107,-1.48353 -30.42327,-7.451"
1989 "82 -38.42076,-18.33112 -1.48353,-2.01219 -2.70918,-4.17993 -3.78347,-6.44788 -0.68207,-1.6711 -1.32368,-3.35715 -1.97167,-5.06237 -1.70524,-5.42261 -2.38517,-11.43991 -2.07824,-17.85154 0.85262,-17.87074 9.23805,-39.12802 23.76654,-61.38798 15.43225,"
1990 "-23.65656 37.79837,-48.45089 65.49116,-71.45944 6.20699,-5.15319 12.62503,-10.24199 19.34361,-15.18714 8.30441,-6.10979 16.67281,-11.73661 25.04545,-16.99893 30.84745,-19.42077 61.61817,-33.01012 88.88467,-39.91282 -26.05577,8.50051 -55.32805,22.9313"
1991 "8 -84.24861,42.57724 -1.04016,0.70255 -2.06758,1.42215 -3.09072,2.13152 -16.04613,11.11805 -30.58314,22.92586 -43.26998,34.85046 -40.82303,38.38457 -62.40046,78.15884 -52.59544,101.46069 0.69916,1.6029 1.53256,3.13335 2.50455,4.58279 10.53825,15.5004"
1992 "7 36.65587,18.17979 69.75422,9.85831 2.25089,-0.56275 4.50178,-1.20004 6.82088,-1.86508 10.57238,-3.05237 21.797,-7.17473 33.3584,-12.25628 2.77949,-1.22777 5.58887,-2.48963 8.41953,-3.83676 0.28988,-0.13641 0.56273,-0.27283 0.85261,-0.4263 36.49173,"
1993 "-18.13162 64.53625,-38.99458 70.60684,-51.52967 1.33008,-2.72662 1.6498,-5.0513 0.74603,-6.87417 -4.33124,-8.78188 -34.63945,-2.849 -71.35287,13.0556 -2.95003,1.2789 -5.93417,2.59492 -8.95241,3.99661 2.45552,-2.27986 5.01123,-4.56828 7.6202,-6.82089 "
1994 "4.16075,-3.58438 8.46856,-7.08945 13.0556,-10.55104 7.179,-5.43627 14.43685,-10.35071 21.58173,-14.70754 33.45643,-25.24067 50.3701,-49.11722 46.8403,-57.97753 -0.66505,-1.66943 -2.08037,-2.81789 -4.26306,-3.51703 -6.97438,-2.21847 -19.70383,0.42929 "
1995 "-35.17019,6.7676 -12.75504,5.23164 -27.40504,12.9908 -42.25752,22.64748 0,0 -2.02495,1.3322 -2.02495,1.3322 2e-5,0 -0.37302,0.21314 -0.37302,0.21314 2e-5,2e-5 -7.14061,4.74265 -7.14061,4.74265 -2e-5,-1e-5 4.10319,-7.51363 4.10319,-7.51363 6.08765,-11"
1996 ".14364 16.0035,-22.77067 28.3493,-33.57154 9.05473,-7.89689 19.39903,-15.33762 30.53413,-21.84816 4.21191,-2.46573 8.4174,-4.75586 12.62929,-6.82088 4.31422,-2.10769 8.63055,-3.98089 12.84246,-5.64859 12.23682,-4.8393 23.91781,-7.7798 34.10442,-8.579"
1997 "4 -0.92767,0 -28.61574,0 -28.61574,0 10e-6,0 -96.45159,0 -96.45159,0 10e-6,0 -425.29295,0 -425.29295,0 0,0 -33.73141,0 -33.73141,0 z m 305.98071,0.3731 c -1.67109,25.50496 3.27403,62.86211 14.49439,104.3382 1.99509,7.38021 4.16712,14.89085 6.55444,22"
1998 ".48762 1.48356,4.69104 3.01399,9.30881 4.58278,13.85492 -0.9208,1.35396 -1.84804,2.69937 -2.7177,4.0499 -13.99985,21.45508 -22.1828,41.73104 -24.24611,59.36303 -5.91714,-19.81468 -10.37201,-41.5183 -12.89574,-64.53198 -0.71619,-6.5941 -1.27679,-13.11"
1999 "442 -1.65194,-19.55675 -2.76247,-46.79639 3.34649,-89.2172 15.87988,-120.00494 z m -279.3899,33.1985 c 0.31934,-0.0075 0.63414,0 0.95918,0 0,-2e-5 63.03991,0 63.03991,0 5.38851,-2e-5 9.55564,1.00991 12.52272,3.03742 2.95002,2.03946 4.05631,4.67743 3."
2000 "35715,7.88665 2e-5,2e-5 -7.51363,33.94456 -7.51363,33.94456 0,3e-5 -22.22116,0 -22.22116,0 2e-5,3e-5 7.30048,-33.03866 7.30048,-33.03866 -2e-5,0 -55.63285,0 -55.63285,0 -2e-5,0 -20.08965,90.80305 -20.08965,90.80305 2e-5,0 -7.24719,32.87881 -7.24719,3"
2001 "2.87881 0,3e-5 55.57957,0 55.57957,0 0,3e-5 0.0533,-0.21316 0.0533,-0.21316 0,2e-5 11.13722,-50.30404 11.13722,-50.30404 0,-2e-5 -26.1112,0 -26.1112,0 0,-2e-5 2.50454,-11.35038 2.50454,-11.35038 -1e-5,-2e-5 48.33238,0 48.33238,0 0,-2e-5 -13.85493,62."
2002 "77348 -13.85493,62.77348 -0.18757,0.89352 -0.51582,1.70308 -0.95919,2.50453 -1.14249,2.08037 -3.13547,3.86234 -5.91498,5.32883 -3.85378,2.02923 -8.46643,3.03742 -13.85493,3.03742 0,2e-5 -62.98662,0 -62.98662,0 -5.388524,2e-5 -9.555644,-1.00821 -12.52"
2003 "2724,-3.03742 -2.95001,-2.0292 -4.07335,-4.62073 -3.35715,-7.83336 10e-6,-2e-5 27.763134,-125.49366 27.763134,-125.49366 0.71618,-3.20921 2.95005,-5.84721 6.82089,-7.88665 0.13642,-0.07331 0.28989,-0.08995 0.4263,-0.15986 3.53302,-1.7697 7.67937,-2.7"
2004 "6443 12.46944,-2.87756 z m 98.79628,0 c -2e-5,-2e-5 79.34608,0 79.34608,0 5.32031,-2e-5 9.50235,1.00991 12.46943,3.03742 2.98417,2.03946 4.12666,4.67743 3.41045,7.88665 2e-5,2e-5 -14.81411,66.92995 -14.81411,66.92995 -0.69912,3.18874 -2.98627,5.7905 "
2005 "-6.87417,7.83336 -3.8879,2.04966 -8.4643,3.09071 -13.80164,3.09071 -2e-5,0 -57.6578,0 -57.6578,0 0,0 -11.13723,50.25075 -11.13723,50.25075 0,2e-5 -1.8118,8.25967 -1.8118,8.25967 1e-5,2e-5 -21.74158,0 -21.74158,0 0,2e-5 1.65193,-7.46034 1.65193,-7.460"
2006 "34 0,2e-5 30.96044,-139.82817 30.96044,-139.82817 z m 109.61377,0 c -1e-5,-2e-5 21.74158,0 21.74158,0 2e-5,-2e-5 -24.61914,111.21241 -24.61914,111.21241 2e-5,2e-5 -5.3821,24.29942 -5.3821,24.29942 0,3e-5 52.00926,0 52.00926,0 0.54568,3.98854 1.18299,"
2007 "7.90582 1.86508,11.77668 -2e-5,2e-5 -78.22705,0 -78.22705,0 2e-5,2e-5 6.18143,-27.92301 6.18143,-27.92301 2e-5,0 26.43094,-119.3655 26.43094,-119.3655 z M 251.559,63.65488 c 2e-5,0 -14.4411,65.11814 -14.4411,65.11814 0,-2e-5 54.19408,0 54.19408,0 -1e"
2008 "-5,-2e-5 14.3878,-65.11814 14.3878,-65.11814 2e-5,0 -54.14078,0 -54.14078,0 z m -45.5614,145.68987 c 0.21267,-0.007 0.42524,0 0.63947,0 2.52373,2e-5 4.72772,0.44336 6.50115,1.27891 1.8928,0.88671 3.24632,2.204 3.99662,3.94333 0.73325,1.68819 0.92508,"
2009 "3.60441 0.53287,5.70184 0,1e-5 -0.15985,0.79933 -0.15985,0.79933 1e-5,-3e-5 -6.23472,0 -6.23472,0 -2e-5,-3e-5 0.0533,-0.74605 0.0533,-0.74605 0.16118,-1.46543 -0.0205,-2.61779 -0.58618,-3.41043 -0.0737,-0.0994 -0.18053,-0.23063 -0.26644,-0.31973 -0.1"
2010 "4068,-0.14363 -0.35198,-0.3078 -0.53287,-0.42631 -0.87238,-0.5495 -2.23703,-0.85262 -3.99662,-0.85262 -2.33615,2e-5 -4.08187,0.40712 -5.27552,1.22564 -1.15956,0.80146 -1.8928,1.6967 -2.13153,2.77098 -0.23875,1.09134 0.15346,1.66472 0.42631,1.97166 0."
2011 "008,0.008 0.0429,0.0438 0.0533,0.0533 0.34552,0.29445 1.54536,0.98476 5.27553,1.86508 3.37632,0.81851 5.61232,1.55389 6.87418,2.18482 1.90987,0.97196 3.24419,2.2317 3.94334,3.78346 0.69911,1.53472 0.8526,3.33157 0.4263,5.27553 -0.4263,1.89279 -1.3918"
2012 "9,3.63852 -2.82428,5.27554 -1.41532,1.637 -3.21647,2.93297 -5.38211,3.83673 -2.1486,0.88672 -4.50604,1.38549 -6.92746,1.38549 -3.0694,-1e-5 -5.53343,-0.46467 -7.46034,-1.38549 -2.01217,-0.95491 -3.46374,-2.4619 -4.31634,-4.42291 -0.81851,-1.90986 -0."
2013 "9933,-4.07762 -0.53289,-6.44786 0,-3e-5 0.15987,-0.74605 0.15987,-0.74605 0,0 6.12814,0 6.12814,0 0,0 -0.0533,0.74605 -0.0533,0.74605 -0.15348,1.41532 -0.002,2.55782 0.37302,3.41043 0.35809,0.81853 1.04019,1.49633 2.13152,2.02496 1.15954,0.5627 2.608"
2014 "98,0.8526 4.26305,0.8526 1.48355,-1e-5 2.83921,-0.24939 4.04991,-0.69273 1.19365,-0.4263 2.14218,-0.98904 2.82427,-1.70523 0.66502,-0.71622 1.05511,-1.47288 1.22563,-2.2914 0.17052,-0.73324 0.13002,-1.3535 -0.15987,-1.86508 -0.32399,-0.54564 -0.96558"
2015 ",-1.02953 -1.97165,-1.43878 0,-1e-5 -5.22226,-1.54536 -5.22226,-1.54536 -2.91592,-0.73323 -4.87905,-1.43238 -6.02155,-2.13152 -1.55177,-0.92081 -2.67081,-2.10169 -3.25059,-3.51702 -0.57977,-1.39831 -0.64158,-2.94791 -0.26643,-4.63608 0.3922,-1.80753 "
2016 "1.26399,-3.52767 2.61111,-5.06237 1.3642,-1.55177 3.12482,-2.76885 5.22225,-3.57031 1.85443,-0.6954 3.80596,-1.10321 5.86169,-1.17234 z m 55.9526,0.10658 c 0.33725,-0.0263 0.65436,0 1.01247,0 10e-6,0 3.83675,0.4263 3.83675,0.4263 -10e-6,0 1.27891,0.1"
2017 "0658 1.27891,0.10658 2e-5,1e-5 -1.86508,4.74264 -1.86508,4.74264 -1e-5,2e-5 -0.37302,0.74604 -0.37302,0.74604 0,-2e-5 -2.93084,-0.26644 -2.93084,-0.26644 -0.86541,0 -1.50113,0.13352 -1.91838,0.4263 -0.0277,0.0209 -0.081,0.0842 -0.10658,0.10658 -0.055"
2018 "9,0.049 -0.14991,0.13458 -0.21315,0.21316 -0.25659,0.33651 -0.56912,0.93786 -0.79932,2.02495 -2e-5,0 -0.11084,0.4604 -0.21315,0.85261 1.34713,1e-5 4.58277,0 4.58277,0 0,1e-5 -1.17233,5.27552 -1.17233,5.27552 0,-1e-5 -3.35076,0 -4.4762,0 -0.34106,1.53"
2019 "469 -4.5295,20.3028 -4.5295,20.3028 -2e-5,-2e-5 -6.18143,0 -6.18143,0 -2e-5,-2e-5 4.01793,-18.03485 4.5295,-20.3028 -1.04021,-1e-5 -3.57031,0 -3.57031,0 0,-1e-5 1.17234,-5.27552 1.17234,-5.27552 10e-6,1e-5 2.54504,0 3.51701,0 0.17052,-0.73324 0.4263,"
2020 "-1.65194 0.4263,-1.65194 0.37516,-1.70522 0.76735,-2.93085 1.27891,-3.78346 0.69917,-1.17659 1.68606,-2.16137 2.93087,-2.87756 1.02527,-0.59575 2.32198,-0.95194 3.78346,-1.06576 z m 14.76082,0.26644 c -2e-5,-1e-5 -1.6157,7.27064 -2.02495,9.11228 1.19"
2021 "364,1e-5 3.99661,0 3.99661,0 0,1e-5 -1.17233,5.27552 -1.17233,5.27552 -2e-5,-1e-5 -2.93939,0 -3.99662,0 -0.32401,1.46647 -2.87756,12.84246 -2.87756,12.84246 2e-5,-2e-5 -0.21316,1.36631 -0.21316,1.75851 2.8e-4,0.0131 -10e-4,0.0437 0,0.0533 8.4e-4,0.00"
2022 "4 -10e-4,0.05 0,0.0533 0.002,0.003 0.0512,-0.002 0.0533,0 0,-2e-5 0.63947,0.0533 0.63947,0.0533 0,0 2.93085,-0.21315 2.93085,-0.21315 0,0 -0.31973,4.74264 -0.31973,4.74264 2e-5,0 0.0533,0.85261 0.0533,0.85261 -2e-5,-2e-5 -4.20978,0.4796 -4.20978,0.47"
2023 "96 -1.6711,-2e-5 -2.89675,-0.27283 -3.78346,-0.8526 -0.93785,-0.61392 -1.48354,-1.42814 -1.70522,-2.45126 -0.0341,-0.18759 -0.10658,-0.46042 -0.10658,-0.85261 0,-0.76736 0.14495,-2.06545 0.63946,-4.31634 2e-5,2e-5 2.24023,-10.03524 2.7177,-12.14972 -"
2024 "0.80143,-1e-5 -2.93085,0 -2.93085,0 2e-5,-1e-5 1.17233,-5.27552 1.17233,-5.27552 -2e-5,10e-6 2.07824,0 2.93086,0 0.27281,-1.22775 1.22562,-5.4354 1.22562,-5.4354 0,2e-5 4.95581,-2.61112 4.95581,-2.61112 -10e-6,2e-5 2.02495,-1.06576 2.02495,-1.06576 z"
2025 " m -196.366934,0.21315 c 2e-5,0 23.979684,0 23.979684,0 0,0 -1.3322,5.96828 -1.3322,5.96828 0,2e-5 -15.997114,0 -17.531814,0 -0.27282,1.21073 -1.36631,6.11322 -1.75851,7.88665 2.2168,0 15.18713,0 15.18713,0 0,0 -1.33221,5.96826 -1.33221,5.96826 -1e-5"
2026 ",0 -13.65242,0 -15.18713,0 -0.32399,1.48355 -3.25058,14.65426 -3.25058,14.65426 2e-5,-2e-5 -6.44786,0 -6.44786,0 1e-5,-2e-5 7.67349,-34.47745 7.67349,-34.47745 z m 32.132764,8.41954 c 0.24067,-0.0296 0.50358,0 0.74604,0 1.5347,0 2.95217,0.4668 4.3163"
2027 "5,1.43877 0,2e-5 0.8526,0.58617 0.8526,0.58617 0,0 -3.30386,5.4354 -3.30386,5.4354 0,-2e-5 -0.90589,-0.63946 -0.90589,-0.63946 -0.66504,-0.42629 -1.38123,-0.63946 -2.13153,-0.63946 -0.64799,2e-5 -1.25121,0.2302 -1.86509,0.63946 -0.64797,0.4263 -1.189"
2028 "4,0.99115 -1.59864,1.75851 -0.7162,1.31304 -1.24056,2.78377 -1.59865,4.36963 0,1e-5 -2.87756,13.10889 -2.87756,13.10889 0,-2e-5 -6.181434,0 -6.181434,0 0,-2e-5 5.701844,-25.57832 5.701844,-25.57832 2e-5,1e-5 5.75512,0 5.75512,0 0,1e-5 -0.19824,0.7758"
2029 "8 -0.26645,1.06576 0.27284,-0.20461 0.56059,-0.48599 0.79933,-0.63946 0.82597,-0.4929 1.69837,-0.80035 2.55782,-0.90589 z m 18.33114,0 c 0.37219,-0.0282 0.73859,0 1.11906,0 3.47866,0 6.11108,1.21922 7.83335,3.62359 1.07428,1.55174 1.65195,3.47012 1.6"
2030 "5195,5.75512 0,1.26185 -0.15561,2.61965 -0.47959,4.10319 0,0 -0.47961,1.86509 -0.47961,1.86509 0,-2e-5 -15.63261,0 -17.37194,0 -0.0341,0.35808 -0.0533,0.74177 -0.0533,1.06576 0,1.33009 0.27283,2.37665 0.85261,3.14401 0.2755,0.37513 0.5949,0.71299 0.9"
2031 "5919,0.95918 0.68678,0.44789 1.57334,0.69275 2.61112,0.69275 1.26188,-2e-5 2.37025,-0.34745 3.41044,-1.01248 0.98905,-0.63093 1.93544,-1.63914 2.77099,-3.03742 0,-3e-5 6.60773,0 6.60773,0 0,-3e-5 -0.58616,1.27891 -0.58616,1.27891 -1.26187,2.55785 -3."
2032 "02251,4.55294 -5.22225,5.96828 -2.19973,1.41533 -4.82791,2.1848 -7.72679,2.1848 -3.76854,-1e-5 -6.57363,-1.21922 -8.31296,-3.62358 -1.72226,-2.35323 -2.09315,-5.60593 -1.17233,-9.69846 0.92083,-4.16073 2.7582,-7.48591 5.43539,-9.80502 2.39958,-2.0806"
2033 "2 5.12245,-3.23468 8.15309,-3.46372 z m 27.76315,0 c 0.37218,-0.0282 0.73857,0 1.11904,0 3.47867,0 6.1111,1.21922 7.83337,3.62359 1.07429,1.55174 1.65193,3.47012 1.65193,5.75512 0,1.2448 -0.1556,2.58341 -0.4796,4.0499 0,2e-5 -0.47958,1.91838 -0.47958"
2034 ",1.91838 0,-2e-5 -15.63263,0 -17.37195,0 -0.0171,0.2387 -0.0362,0.45402 -0.0533,0.69275 -0.0128,0.0895 0.006,0.22541 0,0.31972 -5e-4,0.0154 0,0.0384 0,0.0533 0,0.2558 0.0362,0.5073 0.0533,0.74604 0.0852,0.97196 0.33892,1.78409 0.79932,2.39797 0.0877,"
2035 "0.11936 0.17008,0.2667 0.26644,0.37302 0.78101,0.83554 1.8864,1.27891 3.30387,1.27891 1.26188,-2e-5 2.38731,-0.34745 3.41045,-1.01248 0.98904,-0.63093 1.93542,-1.63914 2.77098,-3.03742 0,-3e-5 6.66102,0 6.66102,0 -1e-5,-3e-5 -0.63946,1.27891 -0.63946"
2036 ",1.27891 -1.26186,2.55785 -3.0225,4.55294 -5.22224,5.96828 -2.19974,1.41533 -4.82791,2.1848 -7.72678,2.1848 -3.76853,-1e-5 -6.57363,-1.21922 -8.31296,-3.62358 -1.12545,-1.53472 -1.65194,-3.48931 -1.65194,-5.80841 0,-0.35812 0.0192,-0.74391 0.0533,-1."
2037 "11905 0.0682,-0.88671 0.20463,-1.78196 0.42631,-2.771 0.92084,-4.14368 2.70491,-7.48591 5.3821,-9.80502 2.39957,-2.08062 5.17575,-3.23468 8.20639,-3.46372 z m 75.61591,0 c 0.38084,-0.0293 0.73112,0 1.11905,0 3.54687,0 6.2731,1.20004 8.04652,3.5703 1."
2038 "7564,2.37023 2.18269,5.56754 1.27891,9.59186 -0.69913,3.13763 -1.70947,5.672 -3.0907,7.51365 -1.38126,1.84165 -3.14188,3.34649 -5.22226,4.36962 -2.06328,1.02314 -4.24813,1.54535 -6.44786,1.54535 -3.61507,-1e-5 -6.30719,-1.23628 -8.04652,-3.62358 -1.1"
2039 "2546,-1.51764 -1.70522,-3.47226 -1.70522,-5.80841 2e-5,-1.26187 0.13856,-2.6026 0.4796,-4.10319 1.02315,-4.57001 3.11202,-8.05078 6.18143,-10.28462 2.25301,-1.62634 4.74114,-2.56606 7.40705,-2.77098 z m 93.62733,0 c 0.4496,-0.0277 0.86593,0 1.3322,0 "
2040 "2.14859,0 3.83675,0.2174 5.11567,0.74602 1.36418,0.54569 2.33189,1.31729 2.87756,2.23811 0.52864,0.86963 0.79933,1.93756 0.79933,3.25057 10e-6,2e-5 -0.63948,3.89004 -0.63948,3.89004 3e-5,0 -1.17232,5.27554 -1.17232,5.27554 -1.00611,4.50176 -1.22776,6"
2041 ".18995 -1.27893,6.82089 -0.0512,0.85262 0.0277,1.6839 0.26645,2.45125 2e-5,-2e-5 0.4263,1.38549 0.4263,1.38549 2e-5,-2e-5 -6.288,0 -6.288,0 -2e-5,-2e-5 -0.26645,-0.79933 -0.26645,-0.79933 -0.10231,-0.37512 -0.0725,-0.8526 -0.10657,-1.27891 -1.19365,0"
2042 ".73325 -2.38944,1.38336 -3.46373,1.75851 -1.58584,0.54569 -3.23139,0.8526 -4.90251,0.8526 -2.89886,-1e-5 -5.04532,-0.75454 -6.3413,-2.2381 -0.98902,-1.09133 -1.43877,-2.42567 -1.43877,-3.94332 -2e-5,-0.57977 0.0767,-1.18087 0.21314,-1.81179 0.28988,-"
2043 "1.29597 0.81638,-2.49603 1.65194,-3.57032 0.81851,-1.05726 1.78623,-1.92689 2.87756,-2.55782 1.05726,-0.63092 2.23598,-1.07855 3.46374,-1.3855 -2e-5,0 3.78346,-0.63946 3.78346,-0.63946 2.91594,-0.34106 5.09221,-0.76521 6.66102,-1.22562 0.0341,-0.1705"
2044 "2 0.10657,-0.37302 0.10657,-0.37302 0.24726,-1.09718 0.21632,-1.92188 -0.0533,-2.34468 -0.0198,-0.0273 -0.0842,-0.0831 -0.10657,-0.10658 -0.0576,-0.0614 -0.14603,-0.15779 -0.21316,-0.21315 -0.64135,-0.50753 -1.73506,-0.74603 -3.19728,-0.74603 -1.6540"
2045 "7,0 -2.87756,0.27071 -3.73018,0.79931 -0.83555,0.52863 -1.60931,1.49634 -2.29139,2.87756 -1e-5,-1e-5 -6.44787,0 -6.44787,0 2e-5,-1e-5 0.58617,-1.27891 0.58617,-1.27891 0.76733,-1.77345 1.68178,-3.24418 2.82428,-4.36963 1.1425,-1.12547 2.68572,-1.9972"
2046 "4 4.4762,-2.61111 1.37216,-0.45297 2.8705,-0.75354 4.47621,-0.85261 z m 27.01711,0 c 0.24046,-0.0296 0.50356,0 0.74603,0 1.55173,0 3.00545,0.4668 4.36963,1.43877 2e-5,2e-5 0.79932,0.58617 0.79932,0.58617 1e-5,0 -3.30386,5.4354 -3.30386,5.4354 10e-6,-"
2047 "2e-5 -0.9059,-0.63946 -0.9059,-0.63946 -0.66503,-0.42629 -1.34501,-0.63946 -2.07824,-0.63946 -0.64801,2e-5 -1.28744,0.2302 -1.91839,0.63946 -0.64797,0.4263 -1.11904,0.99115 -1.54534,1.75851 -0.69916,1.31304 -1.24056,2.78377 -1.59865,4.36963 -2e-5,1e-"
2048 "5 -2.93085,13.10889 -2.93085,13.10889 2e-5,-2e-5 -6.18142,0 -6.18142,0 0,-2e-5 5.70182,-25.57832 5.70182,-25.57832 -10e-6,1e-5 5.75512,0 5.75512,0 0,1e-5 -0.14494,0.77588 -0.21314,1.06576 0.27282,-0.20461 0.54353,-0.48599 0.79932,-0.63946 0.81263,-0."
2049 "4929 1.64571,-0.80035 2.50455,-0.90589 z m 18.27783,0 c 0.37185,-0.0282 0.73859,0 1.11906,0 3.47866,0 6.12813,1.21922 7.83337,3.62359 1.09135,1.55174 1.65193,3.47012 1.65193,5.75512 -2e-5,1.26185 -0.2089,2.61965 -0.53289,4.10319 0,0 -0.4263,1.86509 -"
2050 "0.4263,1.86509 -10e-6,-2e-5 -15.64968,0 -17.37194,0 -0.0341,0.35808 -0.10659,0.74177 -0.10659,1.06576 0,1.33009 0.28989,2.37665 0.85262,3.14401 0.0877,0.11936 0.223,0.2667 0.31972,0.37302 0.056,0.0597 0.15412,0.15773 0.21316,0.21314 0.76235,0.69302 1"
2051 ".79981,1.06577 3.0907,1.06577 1.26189,-2e-5 2.37027,-0.34745 3.41045,-1.01248 0.98905,-0.63093 1.91839,-1.63914 2.77099,-3.03742 -2e-5,-3e-5 6.66102,0 6.66102,0 0,-3e-5 -0.63946,1.27891 -0.63946,1.27891 -1.26187,2.55785 -3.03955,4.55294 -5.22224,5.96"
2052 "828 -2.21677,1.41533 -4.81085,2.1848 -7.72679,2.1848 -3.76851,-1e-5 -6.52034,-1.21922 -8.25966,-3.62358 -1.7223,-2.35323 -2.1294,-5.60593 -1.22563,-9.69846 0.92081,-4.16073 2.70491,-7.48591 5.38211,-9.80502 2.41475,-2.08062 5.17852,-3.23468 8.20637,-"
2053 "3.46372 z m -93.3076,0.47959 c 2e-5,1e-5 6.34131,0 6.34131,0 2e-5,1e-5 0.78226,15.17861 0.79931,15.40027 0.25578,-0.54356 0.45424,-1.00087 0.47961,-1.06575 1e-5,1e-5 6.98074,-14.33452 6.98074,-14.33452 2e-5,1e-5 5.80841,0 5.80841,0 -10e-6,1e-5 0.5328"
2054 "8,14.99528 0.53288,15.08054 0.17055,-0.30691 7.93994,-15.08054 7.93994,-15.08054 -2e-5,1e-5 6.28801,0 6.28801,0 -10e-6,1e-5 -13.85493,25.57832 -13.85493,25.57832 2e-5,-2e-5 -5.70183,0 -5.70183,0 0,-2e-5 -0.55206,-13.86984 -0.58617,-14.65426 -2.35323,"
2055 "4.8258 -7.14063,14.65426 -7.14063,14.65426 0,-2e-5 -5.86168,0 -5.86168,0 0,-2e-5 -2.02497,-25.57832 -2.02497,-25.57832 z m -148.88715,4.84922 c -1.46893,0.062 -2.80295,0.59149 -4.04989,1.59864 -0.98902,0.78441 -1.65621,1.86084 -2.18483,3.03743 0,2e-5"
2056 " 10.49777,0 10.49777,0 0.0171,-0.18756 0.0533,-0.41564 0.0533,-0.58617 -2e-5,-0.97195 -0.17266,-1.72653 -0.47959,-2.2381 -0.75028,-1.22777 -1.86295,-1.8118 -3.51702,-1.8118 -0.0991,0 -0.2218,-0.004 -0.31973,0 z m 27.76313,0 c -1.46892,0.062 -2.80295,"
2057 "0.59149 -4.0499,1.59864 -0.98904,0.78441 -1.63913,1.86084 -2.1848,3.03743 0,2e-5 10.49776,0 10.49776,0 0.017,-0.18756 0.0533,-0.41564 0.0533,-0.58617 -1e-5,-0.97195 -0.1556,-1.72653 -0.4796,-2.2381 -0.14894,-0.24939 -0.35043,-0.49739 -0.53288,-0.6927"
2058 "4 -0.71199,-0.73572 -1.6919,-1.11906 -2.98413,-1.11906 -0.0991,0 -0.2218,-0.004 -0.31974,0 z m 214.75136,0 c -1.51056,0.0465 -2.92125,0.55794 -4.20977,1.59864 -0.97198,0.78441 -1.63915,1.86084 -2.18482,3.03743 2e-5,2e-5 10.44449,0 10.44449,0 0.017,-0"
2059 ".18756 0.0533,-0.41564 0.0533,-0.58617 -1e-5,-0.97195 -0.1556,-1.72653 -0.4796,-2.2381 -0.73324,-1.21072 -1.86296,-1.79474 -3.51702,-1.8118 -0.049,5.3e-4 -0.0578,-0.001 -0.10657,0 z m -139.61502,0.10658 c -1.40963,0.16739 -2.72036,0.81051 -3.94333,1."
2060 "91837 -1.46648,1.33009 -2.53012,3.41897 -3.14399,6.18143 -0.25579,1.15955 -0.37303,2.15071 -0.37303,3.03742 2e-5,1.2107 0.23233,2.16137 0.69275,2.87756 0.12257,0.18384 0.28516,0.37811 0.42631,0.53289 0.75804,0.80488 1.81659,1.22563 3.144,1.22563 1.72"
2061 "226,-2e-5 3.23992,-0.64159 4.68935,-1.97167 1.46652,-1.34714 2.51307,-3.45734 3.144,-6.288 0.5798,-2.59195 0.49878,-4.52736 -0.31972,-5.75512 -0.7844,-1.19366 -1.93116,-1.75851 -3.51701,-1.75851 -0.26911,0 -0.5383,-0.031 -0.79933,0 z m 96.29173,9.325"
2062 "43 c -1.44941,0.39218 -3.07367,0.72258 -5.22224,1.01248 -1.60289,0.23874 -2.74541,0.49024 -3.41045,0.74603 -0.57976,0.23872 -1.04658,0.56911 -1.43878,1.01248 -0.37516,0.42627 -0.62666,0.87392 -0.74602,1.38549 -0.0341,0.20464 -0.0533,0.41564 -0.0533,0"
2063 ".58617 0,0.0138 -3.1e-4,0.0396 0,0.0533 0.002,0.0406 -0.004,0.1207 0,0.15985 0.0107,0.0774 0.0322,0.1944 0.0533,0.26645 0.008,0.0237 0.0445,0.0834 0.0533,0.10657 0.0187,0.0458 0.0301,0.11611 0.0533,0.15987 0.0243,0.0433 0.0779,0.11849 0.10658,0.15986"
2064 " 0.0446,0.0614 0.1055,0.1556 0.15987,0.21315 0.42631,0.47746 1.27678,0.69275 2.50454,0.69275 1.34715,1e-5 2.6431,-0.25578 3.83675,-0.85261 1.17662,-0.57977 2.12513,-1.44518 2.82427,-2.45126 0.51159,-0.7162 0.92083,-1.8182 1.27892,-3.25057 z\"/>\n"
2065 "    <path id=\"path2\" style=\"fill:none;stroke:#bd0000;stroke-width:8.52610779;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;\" d=\"m 417.07944,250.20635 c 0.69221,1.77962 1.38445,3.55633 2.1055,5.2941 1.11046,2.36077 2.39396,4.6206 "
2066 "3.93704,6.73045 8.33557,11.33086 22.29546,17.53495 40.01931,19.07947 0,0 19.06506,0 19.06506,0 6.02811,-0.47014 12.34467,-1.34696 18.89198,-2.62759 11.29193,-2.2079 23.26167,-5.5998 35.69288,-10.13244 9.41715,-3.43375 19.0939,-7.49624 28.91485,-12.21"
2067 "778 21.38688,-10.25215 43.48041,-23.47509 65.15575,-39.43235 7.13857,-5.25082 13.98872,-10.63863 20.56487,-16.1173 6.02813,-5.01576 11.8111,-10.10942 17.33446,-15.25927 15.41645,-14.85689 27.0545,-29.94597 33.64507,-43.1949 6.86452,-13.7969 8.23461,-"
2068 "25.59358 2.61028,-33.02493 -3.44673,-4.56146 -9.21527,-7.00589 -16.64228,-7.5813 33.45753,-25.10471 52.95528,-55.55833 45.96096,-74.7589 -2.22096,-6.1277 -7.10981,-10.6992 -14.11858,-13.2273 -3.11497,-1.1205 -6.61943,-1.8301 -10.4411,-2.1531 0,0 -10."
2069 "29683,0 -10.29683,0 -14.37808,1.0369 -35.28664,6.1853 -53.0249,14.8785\"/>\n"
2070 "    <g id=\"g2\" style=\"fill:#bd0000;fill-opacity:1\" transform=\"scale(1.705222,1.705222)\">\n"
2071 "      <path id=\"path1\" transform=\"translate(15.5783,177.825)\" d=\"m 0,36 c 0,0 7.46,0 7.46,0 0,0 3.35,-14 3.35,-14 0,0 12.12,0 12.12,0 0,0 1.56,-6 1.56,-6 0,0 -12.17,0 -12.17,0 0,0 2.02,-9 2.02,-9 0,0 12.95,0 12.95,0 0,0 1.56,-7 1.56,-7 C 28.85,0"
2072 " 8.4,0 8.4,0 8.4,0 0,36 0,36 z\"/>\n"
2073 "      <path id=\"path2\" transform=\"translate(41.5283,187.825)\" d=\"m 7.51,26 c 0,0 2.24,-9.4 2.24,-9.4 1.18,-5.09 3.67,-9.6 8.38,-9.6 0.42,0 0.83,0.21 1.14,0.26 0,0 1.82,-7.21 1.82,-7.21 -0.42,0 -0.88,-0.05 -1.4,-0.05 -3.47,0 -6.38,2.44 -8.32,5.94"
2074 " 0,0 -0.2,0 -0.2,0 C 11.46,4.23 11.71,2.61 11.9,1 11.9,1 5.47,1 5.47,1 5.1,3.08 4.53,7.15 3.66,10.82 3.66,10.82 0,26 0,26 c 0,0 7.51,0 7.51,0 z\"/>\n"
2075 "      <path id=\"path3\" transform=\"translate(62.1583,187.825)\" d=\"M 20.06,19.25 C 17.99,20.26 15.63,20 12.88,20 10.71,20 9.03,19.62 8.11,18.88 7.63,18.07 7.43,16.81 7.47,16 17.6,16.27 23.99,13.93 24.31,7.53 24.55,2.7 21.02,0 15.89,0 6.73,0 0.73,8"
2076 ".08 0.34,15.86 0,22.65 3.52,26 10.78,26 c 2.79,0 6.49,-0.32 9.52,-1.23 0,0 -0.24,-5.52 -0.24,-5.52 z M 17.32,7.53 C 17.2,9.91 14.26,10.05 8.47,10 9.1,7.91 11.22,6 14.69,6 c 1.71,0 2.69,0.65 2.63,1.53 z\"/>\n"
2077 "      <path id=\"path4\" transform=\"translate(88.6783,187.825)\" d=\"M 20.05,19.25 C 17.98,20.26 15.62,20 12.88,20 10.7,20 9.03,19.62 8.11,18.88 7.63,18.07 7.42,16.81 7.46,16 17.6,16.27 23.98,13.93 24.31,7.53 24.55,2.7 21.02,0 15.89,0 6.72,0 0.72,8."
2078 "08 0.33,15.86 0,22.65 3.52,26 10.77,26 c 2.8,0 6.5,-0.32 9.53,-1.23 0,0 -0.25,-5.52 -0.25,-5.52 z M 17.32,7.53 C 17.2,9.91 14.26,10.05 8.46,10 9.1,7.91 11.21,6 14.68,6 c 1.71,0 2.7,0.65 2.64,1.53 z\"/>\n"
2079 "      <path id=\"path5\" transform=\"translate(124.5883,187.825)\" d=\"M 22.74,26 C 22.8,22.83 23.56,17.85 24.35,14.58 24.35,14.58 27.56,1 27.56,1 25.52,0.31 22.34,0 19.28,0 6.86,0 0.7,9.2 0.27,17.82 0,23.23 2.93,26 7.49,26 c 2.95,0 6.28,-1.43 8.87,-"
2080 "5.73 0,0 0.11,0 0.11,0 -0.2,2.07 -0.44,4.08 -0.57,5.73 0,0 6.84,0 6.84,0 z M 17.61,11.72 C 16.15,18.08 13.17,20 10.95,20 8.88,20 7.98,18.53 8.1,16.39 8.34,11.56 12.16,6 16.98,6 c 0.78,0 1.39,-0.14 1.96,-0.28 0,0 -1.33,6 -1.33,6 z\"/>\n"
2081 "      <path id=\"path6\" transform=\"translate(152.2183,187.825)\" d=\"m 0,24.82 c 1.44,1.12 4.46,1.13 7.61,1.18 6.73,0.05 11.81,-2.89 12.11,-8.29 0.17,-3.6 -2.62,-5.73 -5.35,-7.16 C 12.4,9.6 11.41,8.69 11.46,7.63 11.53,6.2 12.87,6 14.84,6 c 2.22,0 4"
2082 ",0.27 5.02,0.47 0,0 2.02,-5.42 2.02,-5.42 C 20.73,0.36 18.43,0 15.48,0 8.95,0 4.17,3.45 3.9,8.69 c -0.16,3.24 2.17,5.42 4.99,6.9 2.28,1.17 3.06,2.07 3,3.34 C 11.82,20.21 10.68,20 8.61,20 6.18,20 3.49,19.68 2.07,19.46 2.07,19.46 0,24.82 0,24.82 z\"/>\n"
2083 "      <path id=\"path7\" transform=\"translate(184.6683,176.825)\" d=\"m 7.45,37 c 0,0 6.05,-25 6.05,-25 0,0 -7.41,0 -7.41,0 0,0 -6.09,25 -6.09,25 0,0 7.45,0 7.45,0 z M 10.92,9 C 13.46,9 15.72,6.9 15.86,3.3 15.98,0.86 14.4,0 12.07,0 9.64,0 7.42,1.58 "
2084 "7.29,3.94 7.17,6.32 8.75,9 10.92,9 z\"/>\n"
2085 "      <path id=\"path8\" transform=\"translate(198.9583,188.515)\" d=\"m 7.46,25.31 c 0,0 2.64,-11.26 2.64,-11.26 1.37,-5.73 4.32,-7.74 6.75,-7.74 1.92,0 2.48,0.82 2.39,2.01 -0.05,0.96 -0.2,1.97 -0.4,2.87 0,0 -3.36,14.12 -3.36,14.12 0,0 7.46,0 7.46,0"
2086 " 0,0 3.54,-14.81 3.54,-14.81 C 26.75,9.22 27.05,7.31 27.11,6.15 27.33,1.64 25.08,0 20.94,0 c -3.32,0 -6.55,1.54 -9.1,4.88 0,0 -0.1,0 -0.1,0 0,0 0.68,-4.57 0.68,-4.57 0,0 -6.58,0 -6.58,0 C 5.41,2.45 4.86,5.04 4.08,8.06 4.08,8.06 0,25.31 0,25.31 c 0,0 "
2087 "7.46,0 7.46,0 z\"/>\n"
2088 "      <path id=\"path9\" transform=\"translate(238.5183,177.825)\" d=\"m 0,36 c 0,0 7.46,0 7.46,0 0,0 3.36,-14 3.36,-14 0,0 12.11,0 12.11,0 0,0 1.56,-6 1.56,-6 0,0 -12.17,0 -12.17,0 0,0 2.02,-9 2.02,-9 0,0 12.95,0 12.95,0 0,0 1.56,-7 1.56,-7 C 28.85,"
2089 "0 8.4,0 8.4,0 8.4,0 0,36 0,36 z\"/>\n"
2090 "      <path id=\"path10\" transform=\"translate(264.4683,187.825)\" d=\"m 7.51,26 c 0,0 2.24,-9.4 2.24,-9.4 1.18,-5.09 3.67,-9.6 8.38,-9.6 0.42,0 0.83,0.21 1.14,0.26 0,0 1.82,-7.21 1.82,-7.21 -0.42,0 -0.88,-0.05 -1.4,-0.05 -3.47,0 -6.38,2.44 -8.32,5."
2091 "94 0,0 -0.2,0 -0.2,0 C 11.46,4.23 11.71,2.61 11.9,1 11.9,1 5.47,1 5.47,1 5.11,3.08 4.53,7.15 3.66,10.82 3.66,10.82 0,26 0,26 c 0,0 7.51,0 7.51,0 z\"/>\n"
2092 "      <path id=\"path11\" transform=\"translate(285.0983,187.825)\" d=\"M 20.06,19.25 C 17.99,20.26 15.63,20 12.88,20 10.71,20 9.03,19.62 8.11,18.88 7.63,18.07 7.43,16.81 7.47,16 17.6,16.27 23.99,13.93 24.31,7.53 24.55,2.7 21.02,0 15.89,0 6.73,0 0.73"
2093 ",8.08 0.34,15.86 0,22.65 3.53,26 10.78,26 c 2.79,0 6.5,-0.32 9.52,-1.23 0,0 -0.24,-5.52 -0.24,-5.52 z M 17.32,7.53 C 17.2,9.91 14.26,10.05 8.47,10 9.1,7.91 11.22,6 14.69,6 c 1.71,0 2.69,0.65 2.63,1.53 z\"/>\n"
2094 "      <path id=\"path12\" transform=\"translate(311.6183,187.825)\" d=\"M 20.05,19.25 C 17.98,20.26 15.62,20 12.88,20 10.7,20 9.03,19.62 8.11,18.88 7.63,18.07 7.42,16.81 7.46,16 17.6,16.27 23.98,13.93 24.31,7.53 24.55,2.7 21.02,0 15.89,0 6.72,0 0.72,"
2095 "8.08 0.33,15.86 0,22.65 3.52,26 10.77,26 c 2.8,0 6.5,-0.32 9.53,-1.23 0,0 -0.25,-5.52 -0.25,-5.52 z M 17.32,7.53 C 17.2,9.91 14.26,10.05 8.46,10 9.1,7.91 11.21,6 14.68,6 c 1.71,0 2.7,0.65 2.64,1.53 z\"/>\n"
2096 "      <path id=\"path13\" transform=\"translate(337.9983,176.825)\" d=\"M 23.31,0 C 23.31,0 20.5,11.36 20.5,11.36 19.48,10.94 18.15,11 17.11,11 7.53,11 0.75,19.2 0.3,28.08 0,34.34 3.34,37 7.64,37 c 3.01,0 6.18,-1.33 8.58,-4.77 0,0 0.1,0 0.1,0 0,0 -0."
2097 "57,4.77 -0.57,4.77 0,0 6.78,0 6.78,0 0.31,-3 0.96,-6.57 1.69,-9.83 0,0 6.49,-27.17 6.49,-27.17 0,0 -7.4,0 -7.4,0 z M 17.47,24.42 C 16.3,29.35 13.54,31 11.36,31 9.19,31 7.98,29.49 8.13,26.8 8.38,21.82 11.8,17 16.25,17 c 1.25,0 2.32,0.19 2.91,0.47 0,0 "
2098 "-1.69,6.95 -1.69,6.95 z\"/>\n"
2099 "      <path id=\"path14\" transform=\"translate(367.7083,187.825)\" d=\"M 10.61,26 C 19.31,26 26.02,19.41 26.49,10.44 26.78,4.5 23.08,0 16.25,0 7.23,0 0.76,7.3 0.31,16.12 0,22.54 4.14,26 10.61,26 z m 1.17,-6 C 9.24,20 7.84,18.38 7.99,15.96 8.19,11.93"
2100 " 10.68,6 14.97,6 c 2.96,0 3.87,2.27 3.75,4.5 -0.22,4.4 -2.9,9.5 -6.94,9.5 z\"/>\n"
2101 "      <path id=\"path15\" transform=\"translate(396.2683,187.825)\" d=\"M 7.2,26 C 7.2,26 9.9,14.58 9.9,14.58 11.03,9.49 13.85,6 16.38,6 c 1.82,0 2.32,1.33 2.23,3.07 -0.05,0.9 -0.25,1.91 -0.46,2.91 0,0 -3.34,14.02 -3.34,14.02 0,0 7.2,0 7.2,0 0,0 2.7,"
2102 "-11.47 2.7,-11.47 C 25.95,9.28 28.61,6 31.09,6 c 1.71,0 2.42,1.22 2.34,2.96 -0.05,1.01 -0.26,2.12 -0.52,3.13 0,0 -3.24,13.91 -3.24,13.91 0,0 7.25,0 7.25,0 0,0 3.49,-14.81 3.49,-14.81 0.27,-1.33 0.58,-3.4 0.63,-4.46 C 41.26,2.33 39.11,0 35.23,0 31.91,"
2103 "0 28.68,1.5 26.23,4.66 26.14,2.38 24.51,0 20.47,0 17.2,0 14.08,1.48 11.58,4.83 c 0,0 -0.1,0 -0.1,0 0,0 0.67,-3.83 0.67,-3.83 0,0 -6.42,0 -6.42,0 C 5.31,3.14 4.8,5.73 4.02,8.75 4.02,8.75 0,26 0,26 c 0,0 7.2,0 7.2,0 z\"/>\n"
2104 "    </g>\n"
2105 "  </g>\n"
2106 "</svg>";
2107 
2108 const char* gpl_logo_svg = (const char*) temp_binary_data_17;
2109 
2110 //================== juce-logo-with-text.svg ==================
2111 static const unsigned char temp_binary_data_18[] =
2112 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
2113 "<svg\n"
2114 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
2115 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
2116 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
2117 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
2118 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
2119 "   xmlns:xlink=\"http://www.w3.org/1999/xlink\"\n"
2120 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
2121 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
2122 "   id=\"Layer_1\"\n"
2123 "   width=\"113.4\"\n"
2124 "   height=\"35.9\"\n"
2125 "   viewBox=\"0 0 113.4 35.9\"\n"
2126 "   version=\"1.1\"\n"
2127 "   inkscape:version=\"0.91 r13725\"\n"
2128 "   sodipodi:docname=\"juce-logo-with-text.svg\">\n"
2129 "  <metadata\n"
2130 "     id=\"metadata35\">\n"
2131 "    <rdf:RDF>\n"
2132 "      <cc:Work\n"
2133 "         rdf:about=\"\">\n"
2134 "        <dc:format>image/svg+xml</dc:format>\n"
2135 "        <dc:type\n"
2136 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" />\n"
2137 "        <dc:title />\n"
2138 "      </cc:Work>\n"
2139 "    </rdf:RDF>\n"
2140 "  </metadata>\n"
2141 "  <sodipodi:namedview\n"
2142 "     pagecolor=\"#ffffff\"\n"
2143 "     bordercolor=\"#666666\"\n"
2144 "     borderopacity=\"1\"\n"
2145 "     objecttolerance=\"10\"\n"
2146 "     gridtolerance=\"10\"\n"
2147 "     guidetolerance=\"10\"\n"
2148 "     inkscape:pageopacity=\"0\"\n"
2149 "     inkscape:pageshadow=\"2\"\n"
2150 "     inkscape:window-width=\"1920\"\n"
2151 "     inkscape:window-height=\"1029\"\n"
2152 "     id=\"namedview33\"\n"
2153 "     showgrid=\"false\"\n"
2154 "     inkscape:zoom=\"9.3827159\"\n"
2155 "     inkscape:cx=\"26.137564\"\n"
2156 "     inkscape:cy=\"37.52419\"\n"
2157 "     inkscape:window-x=\"0\"\n"
2158 "     inkscape:window-y=\"0\"\n"
2159 "     inkscape:window-maximized=\"1\"\n"
2160 "     inkscape:current-layer=\"Layer_1\" />\n"
2161 "  <style\n"
2162 "     id=\"style3\"><![CDATA[\n"
2163 "\t.st0{clip-path:url(#SVGID_2_);fill:#A65A95;}\n"
2164 "\t.st1{clip-path:url(#SVGID_2_);fill:#E67E3C;}\n"
2165 "\t.st2{clip-path:url(#SVGID_2_);fill:#E73E51;}\n"
2166 "\t.st3{clip-path:url(#SVGID_2_);fill:#F0E049;}\n"
2167 "\t.st4{clip-path:url(#SVGID_2_);fill:#F19F53;}\n"
2168 "\t.st5{clip-path:url(#SVGID_2_);fill:#F5BD47;}\n"
2169 "\t.st6{clip-path:url(#SVGID_2_);fill:#288DC1;}\n"
2170 "\t.st7{clip-path:url(#SVGID_2_);fill:#FFFFFF;}\n"
2171 "\t.st8{clip-path:url(#SVGID_2_);fill:#9CB6D3;}\n"
2172 "\t.st9{clip-path:url(#SVGID_2_);fill:#6CC04A;}\n"
2173 "]]></style>\n"
2174 "  <defs\n"
2175 "     id=\"defs5\">\n"
2176 "    <path\n"
2177 "       id=\"SVGID_1_\"\n"
2178 "       d=\"M0 0h113.4v35.9H0z\" />\n"
2179 "  </defs>\n"
2180 "  <clipPath\n"
2181 "     id=\"SVGID_2_\">\n"
2182 "    <use\n"
2183 "       xlink:href=\"#SVGID_1_\"\n"
2184 "       overflow=\"visible\"\n"
2185 "       id=\"use9\" />\n"
2186 "  </clipPath>\n"
2187 "  <path\n"
2188 "     class=\"st9\"\n"
2189 "     d=\"M5.2 5.2c7-7 18.4-7 25.4 0s7 18.4 0 25.4-18.4 7-25.4 0c-6.9-7-6.9-18.4 0-25.4\"\n"
2190 "     id=\"path11\"\n"
2191 "     clip-path=\"url(#SVGID_2_)\"\n"
2192 "     style=\"fill:#6cc04a;fill-opacity:1\" />\n"
2193 "  <path\n"
2194 "     class=\"st7\"\n"
2195 "     d=\"m 29.8,29.8 c 6.5,-6.5 6.5,-17.2 0,-23.7 -6.5,-6.5 -17.2,-6.5 -23.7,0 -6.5,6.5 -6.5,17.2 0,23.7 6.5,6.5 17.1,6.5 23.7,0\"\n"
2196 "     id=\"path13\"\n"
2197 "     clip-path=\"url(#SVGID_2_)\"\n"
2198 "     inkscape:connector-curvature=\"0\"\n"
2199 "     style=\"fill:#ffffff\" />\n"
2200 "  <path\n"
2201 "     class=\"st8\"\n"
2202 "     d=\"M28.4 27.5c.4.4 1.1.4 1.5 0l.1-.1c1.8-2.2 2.9-4.9 3.2-7.7 0-.3-.1-.6-.3-.9-.2-.2-.5-.4-.8-.4H19.9c-.2 0-.3.2-.1.4l8.6 8.7z\"\n"
2203 "     id=\"path15\"\n"
2204 "     clip-path=\"url(#SVGID_2_)\"\n"
2205 "     style=\"fill:#9cb6d3;fill-opacity:1\" />\n"
2206 "  <path\n"
2207 "     class=\"st0\"\n"
2208 "     d=\"M8.3 28.4c-.2.2-.3.5-.3.8 0 .3.2.6.4.8 2.2 1.8 4.9 2.9 7.7 3.2.3 0 .7-.1.9-.3.2-.2.3-.5.3-.8V19.9c0-.2-.2-.3-.4-.1l-8.6 8.6z\"\n"
2209 "     id=\"path17\"\n"
2210 "     clip-path=\"url(#SVGID_2_)\"\n"
2211 "     style=\"fill:#a65a95;fill-opacity:1\" />\n"
2212 "  <path\n"
2213 "     class=\"st6\"\n"
2214 "     d=\"M18.9 33c.2.2.5.3.9.3 2.8-.3 5.5-1.4 7.7-3.2l.1-.1c.4-.4.4-1.1 0-1.5l-8.7-8.7c-.1-.1-.4 0-.4.1v12.2c0 .4.2.7.4.9\"\n"
2215 "     id=\"path19\"\n"
2216 "     clip-path=\"url(#SVGID_2_)\"\n"
2217 "     style=\"fill:#288dc1;fill-opacity:1\" />\n"
2218 "  <path\n"
2219 "     class=\"st1\"\n"
2220 "     d=\"M7.5 8.3c-.5-.4-1.1-.4-1.6 0l-.1.1c-1.8 2.2-2.9 4.9-3.2 7.7 0 .3.1.6.3.8.2.2.5.4.8.4H16c.2 0 .3-.2.1-.4L7.5 8.3z\"\n"
2221 "     id=\"path21\"\n"
2222 "     clip-path=\"url(#SVGID_2_)\"\n"
2223 "     style=\"fill:#e67e3c;fill-opacity:1\" />\n"
2224 "  <path\n"
2225 "     class=\"st2\"\n"
2226 "     d=\"M2.9 18.8c-.2.2-.3.5-.3.9.3 2.8 1.4 5.5 3.2 7.7.2.3.5.4.8.4.3 0 .6-.1.8-.3l8.6-8.6c.1-.1 0-.4-.1-.4H3.7c-.3 0-.6.1-.8.3\"\n"
2227 "     id=\"path23\"\n"
2228 "     clip-path=\"url(#SVGID_2_)\"\n"
2229 "     style=\"fill:#e73e51;fill-opacity:1\" />\n"
2230 "  <path\n"
2231 "     class=\"st3\"\n"
2232 "     d=\"M32.9 17c.2-.2.3-.5.3-.9-.3-2.8-1.4-5.5-3.2-7.7-.2-.2-.5-.4-.8-.4-.3 0-.6.1-.8.3L19.7 17c-.1.1 0 .4.1.4H32c.4-.1.7-.2.9-.4\"\n"
2233 "     id=\"path25\"\n"
2234 "     clip-path=\"url(#SVGID_2_)\"\n"
2235 "     style=\"fill:#f0e049;fill-opacity:1\" />\n"
2236 "  <path\n"
2237 "     class=\"st5\"\n"
2238 "     d=\"M18.9 16.1l8.6-8.6c.2-.2.4-.5.3-.8 0-.3-.2-.6-.4-.8-2.2-1.8-4.9-2.9-7.7-3.2-.3 0-.7.1-.9.3-.2.2-.3.5-.3.8V16c0 .2.3.3.4.1\"\n"
2239 "     id=\"path27\"\n"
2240 "     clip-path=\"url(#SVGID_2_)\"\n"
2241 "     style=\"fill:#f5bd47;fill-opacity:1\" />\n"
2242 "  <path\n"
2243 "     class=\"st4\"\n"
2244 "     d=\"M17.3 3.7c0-.3-.1-.6-.4-.8-.2-.2-.5-.3-.9-.3-2.7.4-5.4 1.5-7.6 3.2l-.1.1c-.2.2-.3.5-.3.9 0 .2.1.5.3.7l8.6 8.6c.1.1.4 0 .4-.2V3.7z\"\n"
2245 "     id=\"path29\"\n"
2246 "     clip-path=\"url(#SVGID_2_)\"\n"
2247 "     style=\"fill:#f19f53;fill-opacity:1\" />\n"
2248 "  <path\n"
2249 "     class=\"st7\"\n"
2250 "     d=\"M45.3 29.3c-2.4 0-4.4-.9-6.1-3.2l2.4-2c1.2 1.5 2.3 2.1 3.7 2.1 2.6 0 4.3-1.9 4.3-4.9V6.8h3.3v14.5c0 4.8-3.1 8-7.6 8M66 29.3c-4.8 0-8.8-3.5-8.8-9.3V6.8h3.3v13c0 3.9 2.3 6.4 5.6 6.4s5.6-2.5 5.6-6.4v-13H75V20c-.2 5.8-4.3 9.3-9 9.3M89.2 29.3c-6."
2251 "3 0-11.4-5.1-11.4-11.4 0-6.3 5.2-11.4 11.4-11.4 2.8 0 5.3 1 7.2 2.6l-1.9 2.4c-2-1.4-3.4-1.9-5.2-1.9-4.5 0-8.1 3.6-8.1 8.3 0 4.7 3.6 8.3 8.1 8.3 1.8 0 3.3-.6 5.2-1.9l2 2.4c-2.5 2-4.7 2.6-7.3 2.6M100 29V6.8h13.4v3h-10.1v6.5h9.7v3h-9.7v6.8h10.1V29z\"\n"
2252 "     id=\"path31\"\n"
2253 "     clip-path=\"url(#SVGID_2_)\"\n"
2254 "     style=\"fill:#ffffff;fill-opacity:1\" />\n"
2255 "</svg>\n";
2256 
2257 const char* jucelogowithtext_svg = (const char*) temp_binary_data_18;
2258 
2259 //================== juce_icon.png ==================
2260 static const unsigned char temp_binary_data_19[] =
2261 { 137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,2,0,0,0,2,0,8,6,0,0,0,244,120,212,250,0,0,0,25,116,69,88,116,83,111,102,116,119,97,114,101,0,65,100,111,98,101,32,73,109,97,103,101,82,101,97,100,121,113,201,101,60,0,0,3,40,105,84,88,116,88,77,76,58,
2262 99,111,109,46,97,100,111,98,101,46,120,109,112,0,0,0,0,0,60,63,120,112,97,99,107,101,116,32,98,101,103,105,110,61,34,239,187,191,34,32,105,100,61,34,87,53,77,48,77,112,67,101,104,105,72,122,114,101,83,122,78,84,99,122,107,99,57,100,34,63,62,32,60,120,
2263 58,120,109,112,109,101,116,97,32,120,109,108,110,115,58,120,61,34,97,100,111,98,101,58,110,115,58,109,101,116,97,47,34,32,120,58,120,109,112,116,107,61,34,65,100,111,98,101,32,88,77,80,32,67,111,114,101,32,53,46,54,45,99,48,54,55,32,55,57,46,49,53,55,
2264 55,52,55,44,32,50,48,49,53,47,48,51,47,51,48,45,50,51,58,52,48,58,52,50,32,32,32,32,32,32,32,32,34,62,32,60,114,100,102,58,82,68,70,32,120,109,108,110,115,58,114,100,102,61,34,104,116,116,112,58,47,47,119,119,119,46,119,51,46,111,114,103,47,49,57,57,
2265 57,47,48,50,47,50,50,45,114,100,102,45,115,121,110,116,97,120,45,110,115,35,34,62,32,60,114,100,102,58,68,101,115,99,114,105,112,116,105,111,110,32,114,100,102,58,97,98,111,117,116,61,34,34,32,120,109,108,110,115,58,120,109,112,61,34,104,116,116,112,
2266 58,47,47,110,115,46,97,100,111,98,101,46,99,111,109,47,120,97,112,47,49,46,48,47,34,32,120,109,108,110,115,58,120,109,112,77,77,61,34,104,116,116,112,58,47,47,110,115,46,97,100,111,98,101,46,99,111,109,47,120,97,112,47,49,46,48,47,109,109,47,34,32,120,
2267 109,108,110,115,58,115,116,82,101,102,61,34,104,116,116,112,58,47,47,110,115,46,97,100,111,98,101,46,99,111,109,47,120,97,112,47,49,46,48,47,115,84,121,112,101,47,82,101,115,111,117,114,99,101,82,101,102,35,34,32,120,109,112,58,67,114,101,97,116,111,
2268 114,84,111,111,108,61,34,65,100,111,98,101,32,80,104,111,116,111,115,104,111,112,32,67,67,32,50,48,49,53,32,40,77,97,99,105,110,116,111,115,104,41,34,32,120,109,112,77,77,58,73,110,115,116,97,110,99,101,73,68,61,34,120,109,112,46,105,105,100,58,53,52,
2269 53,66,70,48,69,70,55,66,48,54,49,49,69,53,66,51,49,53,69,69,54,51,67,65,56,68,70,50,56,48,34,32,120,109,112,77,77,58,68,111,99,117,109,101,110,116,73,68,61,34,120,109,112,46,100,105,100,58,53,52,53,66,70,48,70,48,55,66,48,54,49,49,69,53,66,51,49,53,69,
2270 69,54,51,67,65,56,68,70,50,56,48,34,62,32,60,120,109,112,77,77,58,68,101,114,105,118,101,100,70,114,111,109,32,115,116,82,101,102,58,105,110,115,116,97,110,99,101,73,68,61,34,120,109,112,46,105,105,100,58,53,52,53,66,70,48,69,68,55,66,48,54,49,49,69,
2271 53,66,51,49,53,69,69,54,51,67,65,56,68,70,50,56,48,34,32,115,116,82,101,102,58,100,111,99,117,109,101,110,116,73,68,61,34,120,109,112,46,100,105,100,58,53,52,53,66,70,48,69,69,55,66,48,54,49,49,69,53,66,51,49,53,69,69,54,51,67,65,56,68,70,50,56,48,34,
2272 47,62,32,60,47,114,100,102,58,68,101,115,99,114,105,112,116,105,111,110,62,32,60,47,114,100,102,58,82,68,70,62,32,60,47,120,58,120,109,112,109,101,116,97,62,32,60,63,120,112,97,99,107,101,116,32,101,110,100,61,34,114,34,63,62,115,115,54,90,0,0,175,140,
2273 73,68,65,84,120,218,236,157,7,128,92,117,181,255,207,45,211,251,236,204,246,94,179,61,189,247,144,70,11,45,244,14,74,81,154,20,17,241,1,239,161,40,54,44,207,191,138,138,62,124,2,250,176,32,85,233,32,37,72,9,9,73,72,239,61,219,119,218,109,255,223,239,
2274 55,155,80,4,201,220,123,103,167,157,79,24,118,179,73,238,220,185,237,124,207,249,157,194,105,154,6,8,130,32,8,130,20,22,60,30,2,4,65,16,4,65,1,128,32,8,130,32,8,10,0,4,65,16,4,65,80,0,32,8,130,32,8,130,2,0,65,16,4,65,16,20,0,8,130,32,8,130,160,0,64,16,
2275 4,65,16,4,5,0,130,32,8,130,32,40,0,16,4,65,16,4,65,1,128,32,8,130,32,8,10,0,4,65,16,4,65,80,0,32,8,130,32,8,130,2,0,65,16,4,65,16,20,0,8,130,32,8,130,160,0,64,16,4,65,16,4,5,0,130,32,8,130,32,40,0,16,4,65,16,4,65,1,128,32,8,130,32,40,0,16,4,65,16,4,65,
2276 1,128,32,8,130,32,8,10,0,4,65,16,4,65,80,0,32,8,130,32,8,130,2,0,65,16,4,65,16,20,0,8,130,32,8,130,160,0,64,16,4,65,16,4,5,0,130,32,8,130,32,40,0,16,4,65,16,4,65,1,128,32,8,130,32,8,10,0,4,65,16,4,65,204,70,204,228,155,39,18,9,60,3,8,242,41,104,154,70,
2277 254,207,129,166,210,175,26,249,10,160,42,90,242,207,200,207,52,250,61,151,252,187,28,207,125,228,223,90,28,2,136,86,129,254,171,195,63,226,224,200,223,102,247,61,247,9,111,41,147,151,58,242,103,106,242,31,113,228,61,85,136,15,201,255,186,111,201,221,
2278 98,239,205,9,220,200,126,16,175,66,224,217,31,28,222,39,186,141,79,124,55,4,65,64,20,69,224,249,204,248,226,25,19,0,146,36,193,130,5,11,96,231,206,157,120,5,32,5,13,51,234,228,63,85,86,129,218,85,250,123,142,163,134,52,105,53,109,30,11,8,22,94,180,186,
2279 69,167,59,108,247,17,227,239,119,23,59,124,158,18,71,144,124,31,176,216,5,127,184,217,235,35,127,213,71,254,185,151,124,245,120,74,236,14,103,192,102,39,127,238,36,191,23,200,203,245,33,163,79,191,255,164,39,78,100,68,4,208,191,23,165,223,115,28,23,149,
2280 98,74,172,103,219,16,253,253,16,121,13,240,60,55,208,187,125,184,47,210,19,31,32,6,191,55,62,40,31,234,217,58,216,79,12,126,127,124,64,234,27,58,24,31,34,251,31,143,13,74,160,74,42,168,106,82,188,80,113,64,182,199,62,23,21,12,60,143,194,0,65,238,186,
2281 235,46,56,243,204,51,11,75,0,80,15,98,243,230,205,176,123,247,110,188,2,144,2,119,1,136,53,182,130,215,95,233,12,19,207,189,44,212,228,173,180,58,197,202,80,163,183,130,220,41,85,254,74,23,253,121,88,180,11,1,135,207,234,34,247,142,155,23,121,142,136,
2282 2,96,138,129,69,4,134,142,184,249,148,65,101,16,6,134,52,115,246,143,108,84,168,251,168,94,8,212,2,4,57,203,72,132,194,2,85,9,43,48,177,16,149,135,163,253,210,0,177,243,251,251,119,69,14,202,49,101,119,223,206,200,174,72,111,124,199,240,193,248,142,129,
2283 61,145,61,145,158,196,190,200,65,169,15,18,32,227,201,71,10,157,190,190,190,76,62,122,50,135,213,106,197,179,143,20,4,212,163,119,4,108,78,95,133,179,212,225,183,214,16,35,223,20,168,118,53,187,66,182,6,242,179,42,209,42,148,147,159,7,136,23,109,103,
2284 134,29,52,226,57,143,68,8,104,100,64,101,170,153,121,211,28,36,163,239,144,248,136,141,254,8,212,229,55,53,195,71,249,183,250,0,172,34,93,110,0,135,197,99,117,184,253,92,136,236,106,125,113,93,128,236,3,199,62,59,93,14,160,75,22,170,162,41,137,136,220,
2285 79,94,123,7,118,69,118,70,251,19,27,15,109,26,220,60,180,63,182,190,111,199,240,150,222,29,195,187,162,125,137,94,37,161,226,69,131,20,4,130,32,20,166,0,64,144,124,196,234,18,121,111,153,163,140,24,246,70,226,197,183,133,155,188,157,158,18,71,139,167,
2286 212,81,103,243,136,101,196,192,219,233,58,57,91,199,39,47,69,214,152,113,87,228,164,209,147,227,202,191,221,190,150,133,159,121,36,16,193,34,123,138,170,141,8,151,79,121,222,89,248,160,51,96,13,186,195,246,54,142,227,22,53,31,83,206,142,131,42,107,74,
2287 108,80,58,56,124,48,182,131,8,130,181,68,24,172,233,221,54,188,234,224,166,129,13,228,247,59,134,14,196,162,120,117,33,8,10,0,4,201,10,44,78,17,136,177,175,40,170,115,183,21,143,241,141,35,6,127,188,191,202,213,78,60,251,26,171,67,244,208,117,111,234,
2288 201,51,239,151,122,242,228,171,36,43,255,222,165,206,115,180,145,156,0,85,86,62,30,74,16,44,14,161,36,88,235,46,9,53,120,38,214,207,44,97,130,66,142,41,82,124,88,222,49,176,59,178,238,208,150,161,119,14,174,31,120,107,207,234,222,213,253,187,34,91,163,
2289 125,137,56,94,133,8,130,2,0,65,210,14,241,226,93,129,42,87,115,89,87,96,2,49,246,83,194,77,158,241,174,176,189,145,24,123,47,13,185,39,13,125,242,149,136,224,18,119,106,202,32,121,252,20,250,98,63,72,254,159,227,192,98,115,137,245,37,173,254,250,178,
2290 206,192,177,116,73,65,138,169,82,164,55,190,109,96,119,116,21,17,3,43,14,172,31,120,125,255,218,190,247,250,118,70,246,107,170,134,199,18,65,80,0,32,136,97,131,239,41,110,241,117,86,116,7,166,149,118,4,102,4,106,220,227,236,94,177,150,174,211,83,207,
2291 158,101,185,163,177,79,175,46,24,17,6,170,66,4,193,136,191,79,69,129,51,96,109,116,19,241,85,57,33,120,50,21,15,241,65,233,16,17,0,171,247,173,233,123,109,247,202,158,151,247,174,233,127,171,127,231,240,238,195,165,147,8,130,160,0,64,144,79,197,225,179,
2292 90,66,77,158,182,154,41,225,217,229,221,193,185,129,26,215,68,135,223,86,205,11,192,214,234,21,98,240,229,4,121,197,49,73,45,227,162,128,69,90,62,88,70,224,69,190,40,220,232,153,83,210,234,155,211,117,106,205,151,227,67,82,127,255,142,200,187,251,214,
2293 246,189,176,107,101,239,243,68,24,188,213,179,117,168,23,143,30,130,160,0,64,16,98,52,56,8,84,187,43,171,38,21,205,168,28,87,180,176,180,195,63,195,85,100,107,33,30,62,71,13,62,245,240,165,40,122,247,57,33,10,84,141,136,51,162,12,70,42,8,120,129,247,
2294 133,26,61,179,138,91,125,179,58,79,169,185,53,62,40,237,57,184,113,240,181,157,111,31,122,122,199,138,131,47,238,93,219,191,70,138,200,168,228,16,20,0,8,82,40,208,44,125,226,221,119,86,79,14,45,168,28,31,92,66,4,192,100,155,91,244,209,144,190,146,80,
2295 208,195,207,87,65,32,242,101,101,93,129,147,43,198,7,79,158,116,126,163,210,191,43,178,234,192,250,254,167,55,191,180,239,137,237,111,28,92,49,124,48,62,132,71,13,65,1,128,32,121,6,241,234,173,229,93,129,201,213,147,195,75,171,38,135,150,248,43,156,99,
2296 137,65,224,169,193,167,158,254,199,91,221,34,121,42,8,98,35,75,6,28,8,222,50,199,216,64,181,107,108,243,194,242,27,134,246,199,182,31,218,52,248,236,150,87,246,63,178,245,213,3,47,244,110,27,234,193,35,134,160,0,64,144,92,53,250,33,155,181,106,98,104,
2297 74,195,156,210,19,43,186,3,199,186,66,246,54,218,181,134,54,153,145,98,133,93,138,135,106,0,88,62,7,125,81,236,94,75,117,245,148,208,133,181,211,139,47,140,13,36,246,237,93,211,247,252,150,151,247,255,105,235,43,251,159,233,221,62,124,16,15,24,130,2,
2298 0,65,178,28,171,75,132,138,238,224,148,230,99,202,78,174,153,86,124,2,17,1,109,244,97,79,155,235,96,166,62,242,105,208,74,1,53,154,20,133,188,200,151,84,79,10,157,81,59,181,248,140,88,63,17,3,107,251,254,78,196,192,31,54,60,179,231,133,161,3,177,126,
2299 60,90,8,10,0,4,201,18,232,112,153,146,86,127,203,152,37,21,167,212,78,15,159,234,43,119,78,160,195,102,104,184,55,49,92,200,70,95,251,88,215,192,145,185,1,159,82,21,199,29,233,39,252,65,99,97,238,99,191,47,136,163,166,106,32,29,22,3,22,34,6,38,134,206,
2300 37,98,224,220,73,231,55,108,223,181,178,247,209,13,207,238,249,253,214,127,236,127,41,129,9,132,8,10,0,4,201,12,129,106,87,81,211,130,178,165,228,117,78,176,214,51,87,180,243,118,37,126,56,188,159,127,166,156,118,197,35,126,234,145,175,234,200,215,164,
2301 81,255,192,170,243,28,207,70,240,114,35,95,217,48,31,78,36,63,23,152,6,160,163,71,121,78,132,15,154,10,115,108,59,10,237,221,203,141,180,243,213,228,15,189,39,253,170,30,249,154,28,240,155,220,238,225,247,161,191,232,164,63,238,200,215,252,16,14,76,12,
2302 140,44,23,217,60,150,234,230,5,101,87,146,235,237,202,254,157,195,43,183,188,178,255,247,239,63,185,235,255,246,174,233,95,143,205,135,16,20,0,8,146,102,104,136,191,114,124,209,180,214,165,21,231,84,79,14,159,236,240,91,203,21,73,97,235,250,137,161,220,
2303 117,200,14,27,87,149,189,20,106,222,143,24,117,129,23,153,1,183,10,54,176,11,14,242,114,130,83,116,147,151,7,156,150,145,175,228,247,118,209,69,94,78,246,231,54,242,119,173,188,29,44,188,13,68,242,239,69,222,194,182,65,223,135,126,165,191,255,240,84,
2304 1,250,94,146,26,63,34,6,36,37,193,246,35,174,198,200,207,19,144,80,98,16,147,163,16,87,34,16,37,175,136,60,4,195,210,0,68,229,225,35,223,199,200,207,227,74,148,189,36,34,38,152,136,208,180,35,194,128,10,147,195,47,14,248,156,59,71,116,153,224,240,50,
2305 146,167,196,209,61,238,140,186,238,174,147,107,110,221,255,126,255,51,235,158,220,245,155,141,207,237,125,98,232,64,108,24,239,82,4,5,0,130,152,136,159,120,251,205,243,203,78,110,59,190,234,34,127,149,115,58,53,42,82,156,24,168,33,41,183,12,61,53,240,
2306 212,219,166,70,158,188,168,129,164,6,145,26,106,106,196,221,86,31,248,172,69,16,176,133,193,79,94,65,242,242,218,130,228,103,65,112,89,188,224,32,70,222,33,184,70,12,120,246,64,141,125,156,136,132,40,17,3,84,16,12,36,122,161,63,209,3,125,241,131,208,
2307 27,219,15,189,228,43,253,126,80,234,35,127,62,200,4,133,60,50,45,136,70,38,4,242,226,217,139,203,137,200,193,225,4,66,178,187,142,146,86,255,241,229,93,129,227,39,95,212,180,113,203,203,251,126,191,246,137,93,191,221,245,78,207,90,140,10,32,40,0,16,68,
2308 39,116,132,108,221,244,240,216,214,99,43,47,172,158,28,90,238,8,216,202,233,186,126,114,125,54,55,60,122,106,232,15,123,194,2,47,48,239,220,111,13,16,195,94,12,197,142,10,40,118,86,64,152,124,45,178,151,48,35,239,182,248,178,206,184,31,13,52,170,144,
2309 140,74,184,161,232,83,143,137,10,195,210,32,19,1,135,162,251,224,96,108,15,236,143,238,130,253,145,157,228,251,189,76,48,68,165,33,34,12,164,145,72,133,192,162,31,84,24,112,89,42,10,180,145,4,83,57,14,96,115,139,141,29,39,85,223,66,68,234,151,246,172,
2310 234,125,226,189,191,238,248,229,166,23,246,254,45,54,32,73,120,55,35,40,0,16,228,40,176,185,45,98,219,241,149,75,90,22,149,127,190,180,221,191,132,120,251,22,230,237,15,102,239,115,84,101,198,254,131,176,183,133,183,18,99,238,133,32,49,236,165,206,106,
2311 40,119,213,66,133,187,142,25,123,191,173,136,9,129,130,19,116,192,51,129,67,95,101,206,154,143,252,25,53,250,3,82,47,28,136,238,134,189,195,219,97,247,240,86,216,51,188,13,14,196,118,195,64,188,7,98,106,116,68,68,37,151,67,4,58,102,49,203,68,1,91,34,
2312 24,102,121,20,118,218,112,168,114,124,240,228,254,221,205,239,110,120,102,207,47,222,125,120,219,3,125,59,177,156,16,65,1,128,32,159,136,183,220,233,239,62,181,230,204,134,185,165,159,11,214,184,199,43,172,13,111,118,122,251,204,179,39,70,139,126,165,
2313 30,170,203,226,33,94,124,13,51,242,53,238,102,168,242,52,66,137,163,146,133,239,185,2,203,162,215,245,32,226,45,44,42,66,95,45,254,177,71,126,78,151,19,168,40,216,53,180,25,182,15,109,128,29,67,155,96,127,100,23,12,38,122,89,110,2,93,62,17,88,126,67,
2314 22,69,9,104,84,32,166,0,93,224,112,6,109,93,19,207,171,255,97,251,9,85,55,111,123,253,192,253,111,63,184,229,87,123,86,245,174,199,51,142,160,0,64,16,66,105,135,191,178,109,105,229,197,77,11,202,46,118,133,237,53,244,225,153,109,107,251,116,189,94,30,
2315 49,248,52,169,206,107,13,66,153,171,6,106,61,45,80,231,109,133,74,119,3,11,227,179,76,123,196,52,232,146,66,141,167,153,189,166,195,18,246,51,154,95,176,39,178,13,182,13,188,15,91,6,214,18,81,176,17,122,98,7,88,18,98,182,9,2,85,86,201,181,172,130,96,
2316 227,203,91,22,149,127,185,97,78,201,23,247,174,238,123,248,173,7,54,255,100,211,11,251,94,199,51,140,160,0,64,10,211,240,183,251,155,198,159,93,127,69,195,236,146,243,45,78,177,72,138,200,89,19,230,167,235,213,52,73,141,26,125,106,76,168,193,167,222,
2317 125,189,183,13,26,253,29,196,224,55,178,53,123,100,244,241,90,3,236,117,56,82,64,171,14,246,68,182,195,150,254,181,176,190,111,37,108,31,92,15,61,241,253,144,80,226,236,220,209,232,66,166,133,153,54,178,60,192,113,224,170,24,23,60,159,188,206,221,249,
2318 86,207,99,171,255,188,253,135,155,95,218,247,52,54,169,66,80,0,32,5,65,205,212,112,71,251,241,85,95,32,222,208,121,162,93,112,209,48,127,54,24,126,133,121,249,9,182,158,79,203,235,106,60,245,196,216,119,194,24,255,56,168,246,52,129,223,22,194,147,151,
2319 133,216,4,7,139,196,208,215,188,202,147,32,38,71,96,231,240,38,34,6,222,133,245,189,239,176,101,131,129,68,15,75,44,20,57,11,203,35,200,84,116,128,38,13,178,101,45,14,120,34,2,78,168,158,20,58,225,208,230,193,103,222,249,195,214,123,214,60,182,243,81,
2320 9,133,0,50,138,112,154,150,153,82,149,68,34,1,45,45,45,176,117,235,86,60,11,5,66,195,220,210,174,241,103,213,93,91,49,54,120,54,199,113,54,250,32,204,212,245,119,24,234,225,203,154,196,18,212,168,129,175,243,142,129,214,224,4,104,246,119,67,185,179,134,
2321 53,185,65,114,27,90,126,184,169,255,61,88,211,243,79,216,208,255,46,171,60,160,125,14,104,100,128,190,50,189,84,32,88,121,16,201,235,208,166,161,23,222,249,195,150,239,172,121,124,23,10,129,2,226,231,63,255,57,124,238,115,159,195,8,0,146,159,148,119,
2322 7,219,102,92,209,114,35,241,120,206,38,191,181,102,58,177,143,26,125,154,64,70,215,242,195,142,114,102,236,59,138,166,64,163,175,147,133,150,145,252,130,10,187,9,197,115,216,139,246,31,216,54,180,1,222,59,180,130,9,130,93,195,91,88,51,35,26,21,160,149,
2323 27,153,16,3,180,137,21,125,249,170,156,115,22,220,220,57,167,251,244,186,231,87,254,97,235,119,215,62,182,243,81,92,26,64,48,2,128,228,36,165,29,254,134,241,103,213,95,223,48,187,228,2,226,229,56,89,75,213,12,57,252,180,60,143,173,9,147,7,61,205,206,
2324 111,13,142,135,238,208,116,104,240,117,20,100,73,30,146,204,243,216,49,184,9,222,235,89,1,239,30,122,141,124,191,145,137,129,100,231,68,107,198,34,3,201,136,128,0,135,182,12,254,253,173,223,109,254,214,170,63,109,127,6,207,22,70,0,48,2,128,228,4,197,
2325 99,124,165,147,206,111,184,174,126,86,201,101,162,93,240,81,143,63,19,94,63,205,220,79,168,113,22,222,15,59,202,160,189,104,50,51,250,77,196,211,167,235,198,72,129,123,63,228,186,160,185,29,244,181,180,230,28,216,57,180,9,222,57,248,50,188,123,240,53,
2326 246,125,76,137,177,168,192,104,55,102,58,28,17,240,87,56,23,30,243,149,174,133,99,22,87,252,133,8,129,187,54,189,136,85,3,8,10,0,36,75,241,150,59,61,99,151,215,94,209,177,172,234,58,187,215,82,154,136,140,254,52,62,154,232,37,17,79,159,38,244,209,208,
2327 239,184,192,108,152,88,60,7,90,2,227,88,73,25,130,124,26,180,148,147,190,142,171,61,15,54,247,175,133,183,15,190,68,196,192,171,176,55,178,157,37,134,90,121,219,168,86,19,200,68,4,16,5,11,21,227,130,203,42,199,23,29,183,253,141,131,247,255,227,255,173,
2328 251,230,222,213,125,216,71,0,49,71,4,227,18,0,98,20,155,91,228,186,79,171,61,103,252,57,245,95,117,6,108,99,18,81,153,149,61,141,38,178,38,51,195,111,23,29,172,84,111,66,241,92,230,237,211,158,250,8,162,23,90,98,248,126,239,219,176,98,255,179,176,166,
2329 231,77,232,143,31,202,204,18,1,121,43,139,93,160,145,129,193,141,47,236,253,241,171,63,93,255,253,190,157,195,7,240,12,229,62,184,4,128,228,166,122,228,57,104,154,95,58,119,218,101,45,183,23,213,185,231,176,114,190,81,108,224,115,216,219,167,195,117,
2330 104,95,253,113,225,153,48,169,100,1,43,7,67,16,83,196,173,224,128,46,34,36,233,235,80,108,31,91,34,88,177,239,89,216,54,248,62,200,138,196,38,52,142,74,84,96,164,124,144,220,115,158,49,139,43,190,82,51,37,124,206,170,63,109,187,235,141,223,108,250,69,
2331 98,88,198,76,65,4,35,0,200,232,81,214,17,168,159,126,69,203,127,84,79,14,93,192,38,163,37,70,111,20,47,13,239,211,108,110,155,96,103,117,250,211,75,23,179,7,52,134,248,145,209,17,158,42,235,49,240,234,158,167,88,242,96,50,42,96,97,249,2,163,5,47,112,
2332 32,58,4,232,219,54,252,218,235,247,109,188,109,237,99,59,254,166,225,240,65,140,0,96,4,0,73,39,142,128,213,49,229,162,166,171,59,78,170,190,73,180,241,193,209,92,227,167,165,123,180,132,143,134,245,103,150,45,133,105,101,139,89,184,31,65,70,213,107,2,
2333 158,117,33,164,47,26,21,120,99,223,179,240,218,190,191,179,121,5,244,79,105,84,32,221,203,3,108,240,208,144,12,158,50,199,212,197,183,117,63,53,102,113,249,111,95,253,217,250,219,247,172,238,221,132,103,8,65,1,128,152,251,208,35,207,179,182,227,171,142,
2334 157,114,73,211,157,254,42,215,56,106,248,71,35,179,255,112,152,159,122,93,229,174,122,152,78,140,254,228,146,5,184,182,143,100,5,116,254,195,146,154,179,96,126,213,41,176,234,224,171,240,210,158,199,224,253,222,149,68,172,198,193,202,219,217,108,130,
2335 116,114,184,98,160,102,74,248,220,242,238,224,177,171,254,180,237,155,43,126,181,241,135,209,254,68,28,207,14,130,2,0,49,76,121,87,160,102,234,231,155,255,139,60,100,206,163,15,155,209,104,219,75,13,63,13,243,211,245,213,38,127,23,204,174,56,1,198,133,
2336 102,18,239,202,158,215,199,90,147,162,160,197,7,65,27,62,8,234,240,33,80,135,246,147,239,15,145,159,13,177,68,48,206,230,1,222,83,10,66,184,9,132,162,6,0,193,146,241,125,86,135,183,129,58,176,46,249,53,222,75,63,4,112,130,131,236,107,17,112,116,64,146,
2337 189,152,124,31,6,206,234,7,206,226,205,203,243,70,43,4,104,226,41,125,109,236,95,5,47,238,250,43,188,115,240,21,24,150,6,216,53,43,164,57,79,128,54,12,226,120,46,56,225,156,134,187,27,102,151,158,241,218,47,215,223,180,230,177,157,207,2,46,11,32,40,0,
2338 16,61,216,189,22,24,127,78,253,149,19,206,174,191,77,176,9,197,163,17,238,215,52,34,48,212,24,123,160,142,13,207,132,121,21,203,160,45,56,41,255,12,61,49,242,42,49,242,218,192,94,80,250,119,18,3,186,135,188,246,130,22,33,198,62,54,64,108,104,12,52,37,
2339 145,108,30,127,56,4,147,60,64,201,223,138,86,224,125,149,96,169,39,162,168,101,49,112,206,81,238,96,72,206,147,188,239,89,144,118,61,6,10,49,254,154,52,4,201,46,79,28,251,239,200,126,211,96,56,79,30,51,196,8,82,227,207,89,131,192,59,136,40,112,84,0,231,
2340 170,6,222,89,65,4,66,25,17,8,116,255,243,163,237,50,237,40,73,95,123,134,183,194,139,187,31,101,73,131,180,29,49,93,26,16,56,49,141,167,68,99,73,184,238,98,251,132,37,183,143,125,166,101,81,197,207,94,188,103,205,109,135,54,15,238,195,167,25,242,73,96,
2341 18,32,242,137,212,207,44,233,158,117,117,235,119,138,26,60,199,80,195,79,31,46,105,245,34,137,65,97,137,125,162,131,101,243,207,175,56,25,234,125,237,249,97,236,35,61,160,246,239,2,165,119,27,40,61,196,75,238,219,65,60,251,3,196,208,247,3,80,67,79,62,
2342 59,179,155,212,75,228,5,90,94,49,98,240,185,127,27,35,1,69,102,34,129,247,148,128,109,220,153,96,29,179,100,84,62,143,210,255,30,36,214,255,63,80,250,86,38,141,54,77,126,251,183,161,110,109,68,16,168,116,44,30,19,15,236,51,83,113,32,88,147,194,192,22,
2343 38,98,160,18,120,119,29,8,238,6,224,220,181,192,211,101,30,222,146,243,231,159,230,9,188,188,231,49,120,101,207,147,112,48,186,55,237,66,224,72,84,194,41,66,180,47,177,253,205,255,221,124,243,91,15,108,126,96,52,19,117,145,163,39,147,73,128,40,0,144,
2344 143,123,253,214,233,151,183,220,216,121,114,205,45,228,183,78,57,158,222,117,126,106,8,98,74,148,77,223,155,24,158,11,243,42,79,102,157,217,114,214,216,75,81,98,236,119,131,122,104,19,40,7,55,18,131,191,37,233,217,83,175,94,145,62,102,232,133,15,60,123,
2345 67,22,89,34,54,85,2,107,203,66,112,76,191,18,64,180,165,237,243,73,59,31,129,248,250,255,38,239,25,37,94,189,25,221,20,53,38,8,168,48,208,52,153,9,5,118,124,200,245,192,219,138,153,32,224,189,77,32,120,90,200,247,181,44,130,144,171,208,137,132,47,239,
2346 126,156,69,5,14,68,119,131,133,8,1,49,205,66,128,86,11,88,93,34,236,124,187,231,15,47,222,179,230,166,61,171,122,241,129,139,2,0,5,0,242,137,94,255,100,226,245,255,128,120,253,83,105,134,113,58,175,13,186,198,31,87,34,96,23,92,48,169,120,30,44,168,58,
2347 149,117,97,203,57,131,31,31,2,149,122,246,251,215,129,188,255,125,80,123,182,38,67,251,114,44,121,131,209,7,188,48,226,213,167,53,51,92,99,251,98,169,159,5,206,121,55,166,69,4,72,219,30,76,26,127,230,241,167,217,131,61,34,10,164,164,40,160,83,251,172,
2348 1,224,93,213,32,120,199,0,239,239,32,162,160,25,56,123,113,206,93,51,131,137,62,120,137,136,128,164,16,216,53,146,35,144,222,227,105,113,8,32,199,213,253,111,254,118,211,87,87,220,183,241,23,180,116,23,65,1,128,2,0,1,187,207,98,153,126,89,203,87,70,188,
2349 126,91,58,189,254,164,225,143,178,53,254,241,197,179,97,97,213,114,168,201,165,198,61,74,130,133,241,149,189,239,129,188,119,53,40,135,182,36,215,237,229,4,51,242,156,32,154,231,217,235,20,36,214,214,165,224,152,125,141,169,219,149,247,62,3,177,85,119,
2350 16,227,111,251,140,112,127,250,174,28,38,10,84,137,232,1,133,69,9,104,82,33,239,170,1,193,215,14,66,112,44,240,222,22,224,44,254,220,17,2,82,31,60,191,243,47,68,8,60,2,61,177,253,172,233,80,58,155,10,113,52,26,224,20,97,247,59,61,15,191,112,207,154,27,
2351 48,26,128,2,0,5,64,129,83,55,163,120,236,236,107,218,126,72,188,254,89,233,246,250,233,26,63,71,140,71,87,104,42,44,169,57,27,26,188,185,177,198,175,13,29,0,121,223,26,144,119,175,4,101,223,58,80,7,247,178,36,189,35,6,159,134,243,51,60,83,254,35,18,43,
2352 17,1,231,220,47,129,165,121,161,41,91,84,163,187,33,186,226,242,100,162,95,54,173,201,211,124,2,85,102,75,7,52,209,144,179,133,88,84,64,8,78,0,33,48,150,45,25,192,40,246,238,215,75,111,252,0,60,179,227,97,120,121,207,227,44,58,64,219,89,115,105,76,136,
2353 28,137,6,236,253,231,253,155,110,124,237,222,245,191,197,167,96,225,10,0,172,2,40,80,68,27,15,51,174,28,115,245,184,51,234,190,78,108,190,59,157,165,125,180,129,15,29,199,75,27,167,44,37,134,191,163,104,74,182,155,124,22,202,151,119,173,36,175,183,217,
2354 90,190,26,237,99,63,167,161,104,160,198,198,154,173,35,132,147,137,117,177,55,127,7,98,245,100,224,236,62,227,194,109,211,175,64,139,31,34,23,77,150,117,90,164,198,93,16,200,39,78,46,119,104,137,94,144,15,188,12,210,254,23,129,19,93,44,58,32,6,199,129,
2355 16,154,2,130,183,213,164,156,5,243,161,61,45,78,107,188,28,102,149,31,7,79,110,127,16,86,236,125,26,98,106,20,236,172,228,213,124,97,73,251,119,240,2,87,58,253,242,150,251,203,58,252,139,94,184,103,205,245,61,91,134,112,174,64,33,218,1,60,4,133,71,73,
2356 171,175,122,254,151,59,127,76,110,254,19,232,196,190,116,101,248,83,163,159,80,226,80,233,174,103,134,127,74,233,49,105,245,108,140,217,124,149,24,250,13,32,239,124,27,228,29,255,4,133,8,0,234,73,3,207,143,100,170,231,208,248,96,193,194,202,10,19,239,
2357 255,13,108,221,203,141,121,255,131,27,65,38,6,21,68,103,246,127,110,150,111,33,142,152,76,34,226,6,55,64,188,127,13,112,219,126,207,202,13,133,192,56,16,195,211,129,247,119,146,191,154,125,109,163,75,156,85,112,193,152,27,153,16,120,108,235,253,176,234,
2358 224,107,108,41,137,46,151,153,13,237,36,72,69,127,237,180,226,243,74,59,2,211,94,250,193,154,47,174,126,100,199,83,248,116,68,1,128,228,49,227,207,170,63,101,202,165,77,63,178,185,197,242,248,80,122,234,250,233,58,127,76,142,128,223,86,4,39,212,93,0,
2359 243,43,79,33,222,76,118,26,16,229,208,38,144,183,173,32,70,255,13,150,177,79,67,251,28,109,174,195,146,206,156,57,123,158,105,159,0,105,211,11,96,235,56,201,80,179,32,105,207,83,160,201,195,89,105,48,63,43,18,66,147,21,57,214,159,159,136,129,200,110,
2360 80,134,182,178,42,6,206,81,14,98,209,4,16,139,103,131,64,196,64,182,69,6,104,123,235,171,186,238,130,183,15,188,4,143,18,33,176,117,96,93,218,74,7,105,3,33,209,198,55,46,188,181,235,137,170,201,161,187,158,251,246,123,183,199,250,19,18,32,40,0,144,252,
2361 193,225,183,218,231,223,216,241,141,150,197,21,215,73,177,244,181,241,165,235,252,2,47,194,236,242,227,225,184,186,243,32,100,47,203,186,99,65,203,242,228,109,175,129,180,237,85,22,222,167,158,254,7,70,223,149,31,39,156,70,1,250,118,50,81,35,132,155,
2362 117,30,40,137,252,251,55,71,140,104,46,195,37,207,237,72,254,130,22,223,15,137,29,127,6,105,215,163,192,19,175,91,12,77,5,161,120,14,17,3,237,144,61,185,28,0,227,194,179,160,189,104,50,188,176,235,47,240,212,246,135,160,55,118,0,236,162,211,244,57,3,
2363 170,76,187,110,42,92,235,146,202,91,194,77,222,25,79,127,227,221,203,118,175,236,125,31,159,154,40,0,144,60,160,118,122,113,251,220,47,181,221,27,172,245,76,75,215,184,222,195,225,254,102,127,55,156,84,127,49,180,4,198,101,213,49,208,18,195,32,239,124,
2364 139,121,197,52,131,95,141,246,19,131,64,215,144,173,249,99,244,63,102,244,104,101,130,114,96,131,110,1,160,198,246,146,227,180,55,253,37,127,163,31,30,33,255,137,35,145,129,93,16,223,250,0,112,59,254,200,18,8,197,146,57,44,50,64,163,4,217,0,13,255,47,
2365 172,58,29,198,135,231,192,163,91,255,7,94,221,251,20,168,170,98,126,75,108,13,88,23,193,64,181,123,206,169,255,61,245,229,21,247,109,188,122,197,125,27,30,208,176,90,16,5,0,146,187,76,185,164,233,28,242,250,33,199,113,193,116,24,255,195,225,254,160,189,
2366 24,150,54,158,13,115,42,78,28,149,46,103,71,45,76,136,135,79,141,190,188,245,53,80,6,118,143,60,255,109,57,29,222,79,197,241,165,29,8,117,159,219,216,62,114,0,35,201,210,191,124,61,64,71,34,3,26,185,62,214,130,220,183,10,248,45,191,101,149,4,98,217,98,
2367 16,139,38,101,69,229,3,29,58,68,243,3,166,148,44,128,63,111,254,37,108,32,251,153,142,101,1,90,2,204,9,92,104,198,149,99,126,87,60,198,55,245,239,119,190,123,83,12,7,11,161,0,64,114,11,135,223,106,157,119,99,199,183,90,22,149,95,43,199,20,80,20,243,165,
2368 60,157,120,70,153,89,126,44,156,88,119,17,123,72,101,133,183,47,69,147,33,254,13,207,129,76,188,125,250,123,186,38,158,83,137,124,102,69,1,232,16,33,221,81,147,129,100,169,93,129,28,43,42,116,56,242,210,148,56,155,115,32,239,123,30,120,119,61,136,165,
2369 11,192,82,58,63,43,162,2,99,2,227,225,134,241,157,240,236,142,63,194,147,219,126,7,3,82,31,216,89,14,131,121,203,2,218,72,130,96,227,220,210,171,3,213,174,113,79,127,99,213,37,187,87,246,108,192,167,42,10,0,36,7,168,24,27,172,59,230,150,174,95,21,213,
2370 187,231,198,233,0,31,147,147,252,105,223,126,218,197,175,202,211,4,167,212,127,14,186,66,211,178,226,115,171,196,195,151,54,60,11,210,230,151,64,233,219,201,50,168,57,161,64,188,253,127,19,163,49,160,164,14,143,247,41,48,221,196,3,140,36,173,170,195,
2371 91,33,190,225,167,32,109,123,8,132,240,116,176,16,177,43,4,186,51,251,208,230,44,176,168,250,12,232,14,205,128,63,110,190,23,222,218,255,2,139,4,136,38,71,42,232,12,144,64,141,123,214,41,63,156,242,210,63,254,223,186,207,191,253,224,150,71,240,233,138,
2372 2,0,201,98,58,150,85,47,154,115,93,219,175,68,187,80,145,142,44,127,154,228,39,242,86,88,90,123,46,28,87,115,46,56,196,204,175,159,43,251,214,66,98,221,147,32,109,127,29,52,186,182,95,144,222,126,154,188,226,66,103,164,146,64,83,162,32,239,122,28,228,
2373 189,127,7,193,223,5,150,138,227,64,12,207,98,83,14,51,69,137,179,18,174,232,184,3,94,223,251,52,252,105,243,47,216,124,1,179,147,4,105,244,144,23,185,146,185,215,183,255,185,168,222,243,181,231,190,189,250,235,216,70,24,5,0,146,109,207,41,145,135,89,
2374 95,28,115,237,248,115,234,239,150,227,138,133,222,184,230,123,253,81,168,247,181,193,233,141,87,66,19,121,8,102,214,177,85,65,222,190,2,18,107,159,0,121,247,187,44,108,203,137,246,60,77,232,67,50,175,133,132,145,94,8,26,40,61,111,131,220,243,38,155,90,
2375 200,132,64,233,66,214,150,56,83,208,254,26,99,130,227,224,143,155,238,101,73,130,60,249,37,154,88,185,65,171,4,36,69,230,186,78,173,185,51,80,227,234,122,234,246,149,151,13,236,137,244,225,69,129,2,0,201,2,188,101,14,251,130,155,59,127,84,63,171,228,
2376 82,186,118,103,118,55,223,195,94,63,173,233,63,150,120,254,214,76,38,133,201,9,144,182,188,76,12,255,227,108,0,15,11,81,211,48,191,197,137,23,2,50,58,81,17,226,245,83,31,91,29,222,6,241,117,63,128,196,182,63,128,165,124,9,17,3,199,103,108,56,145,207,
2377 90,4,23,181,222,12,93,69,83,225,255,54,253,12,246,71,118,153,26,13,160,207,20,250,108,169,28,95,116,250,242,159,78,107,122,250,27,239,158,187,237,245,3,107,240,122,64,1,128,100,144,146,86,95,213,226,219,198,222,31,106,242,206,137,13,152,155,229,175,129,
2378 10,81,57,2,245,222,86,56,189,233,139,208,156,65,175,159,38,242,73,27,95,32,134,255,49,80,14,109,102,51,5,64,180,99,144,26,201,28,212,203,166,203,3,137,67,16,223,244,75,144,118,253,21,68,226,141,91,171,78,206,88,194,224,132,226,185,208,232,239,132,255,
2379 219,248,51,120,109,239,223,76,207,13,160,121,1,238,98,251,184,19,190,61,241,185,127,252,100,221,69,111,63,184,229,113,188,16,80,0,32,25,128,120,252,83,150,220,49,246,119,86,167,88,111,118,47,127,218,191,159,178,184,250,76,88,86,127,81,230,58,249,73,49,
2380 72,108,120,6,18,107,30,99,237,121,233,240,29,92,223,71,178,43,40,32,178,78,137,154,52,8,137,173,191,3,121,207,83,172,132,48,83,66,128,70,3,46,105,187,5,218,130,19,225,225,77,63,131,190,248,65,83,239,95,90,42,200,139,92,241,156,235,218,30,241,150,57,174,
2381 123,233,135,107,127,68,91,11,35,40,0,144,209,82,250,231,212,47,159,117,85,235,47,21,89,243,72,38,175,247,71,229,97,150,96,116,102,243,85,208,85,148,161,12,127,69,34,30,255,243,16,95,253,103,80,15,109,97,157,237,10,59,155,31,201,126,33,32,36,133,128,28,
2382 25,17,2,79,130,165,108,41,88,170,79,203,200,210,192,180,210,69,208,232,235,128,7,214,255,16,86,30,124,5,108,130,221,180,113,195,52,47,64,83,20,97,210,249,141,63,116,6,109,245,207,222,189,250,122,226,132,96,118,32,10,0,36,189,207,24,14,230,94,215,126,
2383 67,247,242,154,111,43,9,21,204,84,222,138,166,176,218,254,201,37,11,136,241,255,34,243,36,70,29,77,3,105,243,139,16,95,245,39,80,14,172,103,99,94,1,13,63,146,147,66,32,202,132,128,180,247,239,96,169,60,145,188,78,30,245,100,193,176,163,28,174,234,190,
2384 11,158,218,246,32,252,117,235,111,32,65,238,111,179,114,120,104,94,64,180,63,1,173,75,43,175,13,84,187,106,30,185,225,159,23,13,29,136,245,227,5,128,2,0,73,3,118,175,133,159,127,83,231,247,91,143,171,184,58,62,64,231,160,155,103,252,227,74,140,205,33,
2385 95,222,120,57,27,222,147,9,104,171,222,248,59,191,39,158,211,106,182,198,143,137,125,72,174,11,1,16,93,160,73,3,144,216,248,11,144,118,63,9,214,154,211,193,82,126,220,168,150,15,210,68,192,37,53,103,65,131,191,29,254,247,253,123,96,251,224,6,112,178,
2386 242,93,115,50,104,104,135,209,226,86,255,201,167,253,116,90,249,223,239,92,121,250,174,183,123,182,227,201,207,13,120,60,4,185,129,59,108,119,157,242,227,169,15,142,89,90,113,117,172,95,50,209,248,107,16,149,135,160,202,211,0,95,26,251,221,140,24,127,
2387 58,145,47,242,204,93,16,121,234,14,144,247,18,227,111,33,15,71,209,138,39,29,201,19,33,64,252,44,26,17,136,29,128,216,218,239,67,228,141,47,176,78,131,163,77,147,175,11,110,28,119,15,235,220,25,83,34,44,226,103,22,82,68,6,127,165,115,202,9,119,79,124,
2388 174,122,82,104,44,158,116,20,0,136,73,132,155,188,37,203,190,63,249,177,146,86,223,114,51,147,253,84,242,0,136,42,81,242,64,56,14,110,32,15,134,58,111,235,168,126,46,45,210,3,177,87,127,14,195,127,253,50,72,155,95,78,206,114,23,237,120,194,145,60,125,
2389 218,90,200,245,237,2,117,104,19,196,222,189,29,162,111,221,0,74,223,234,81,221,5,151,197,11,23,183,126,5,206,105,254,18,155,218,153,80,205,107,243,79,39,140,210,132,228,147,238,153,252,247,238,229,181,199,224,9,207,126,112,9,32,203,169,28,23,108,56,225,
2390 219,19,255,100,243,88,58,105,9,142,105,55,43,185,241,45,188,141,60,8,174,37,94,255,201,163,251,161,84,5,18,235,158,128,248,202,135,65,29,220,203,178,250,49,179,31,41,28,33,144,92,131,87,14,173,128,104,239,59,96,169,88,10,214,186,243,129,179,133,71,109,
2391 23,230,85,158,4,213,158,70,248,205,186,239,192,174,161,205,166,117,244,164,93,2,121,145,11,205,187,161,227,17,14,224,194,119,254,176,245,247,120,194,49,2,128,232,160,98,92,81,55,49,254,127,183,186,44,157,84,93,155,5,205,242,15,59,42,224,154,238,111,141,
2392 186,241,151,119,175,132,225,71,111,134,232,203,63,1,45,218,155,236,220,199,225,101,136,20,32,35,67,124,18,219,255,4,145,215,47,7,105,251,195,163,58,124,169,193,215,1,55,142,191,7,38,22,207,101,203,128,180,239,135,41,250,94,214,64,73,40,142,57,215,183,
2393 63,48,235,170,214,203,56,108,214,129,17,0,36,53,58,150,85,205,156,117,117,219,195,22,135,80,76,235,110,205,64,99,235,253,195,48,54,60,19,206,111,185,30,252,182,208,168,125,30,109,248,16,196,222,126,0,164,245,79,211,39,4,150,244,33,8,133,38,187,178,68,
2394 193,62,136,173,251,62,155,64,104,109,188,116,212,6,14,121,44,126,184,162,243,14,248,235,150,122,120,116,235,253,192,17,107,77,135,13,25,22,1,10,121,218,104,42,63,229,226,166,159,218,125,22,223,223,191,254,238,221,128,173,2,80,0,32,159,77,247,242,218,
2395 197,243,111,236,120,72,145,84,31,45,245,51,3,154,240,35,171,9,88,90,115,54,156,210,240,121,16,76,170,7,62,26,18,239,255,13,226,111,61,48,18,238,39,134,95,196,203,14,65,62,42,4,104,254,139,8,74,223,187,16,125,235,122,176,84,46,3,107,253,249,228,126,241,
2396 141,198,155,195,9,117,23,66,185,187,22,126,75,68,200,176,52,0,86,19,170,20,52,85,99,101,130,93,167,212,124,139,24,127,239,211,223,120,247,86,13,69,0,10,0,228,223,26,255,147,231,221,208,254,91,41,174,56,53,83,106,252,57,144,212,88,114,189,127,204,141,
2397 44,225,111,180,80,123,183,65,108,197,175,217,148,62,78,176,226,160,30,4,249,44,168,225,213,84,72,108,123,16,148,131,175,129,181,241,115,32,150,204,29,149,183,158,16,158,203,150,6,127,181,230,27,176,99,112,147,105,121,1,180,69,121,215,169,53,95,37,143,
2398 34,247,211,223,88,117,45,21,6,72,118,128,139,175,217,101,252,151,207,163,158,127,66,53,201,248,211,250,254,8,4,108,197,112,117,247,55,71,207,248,107,10,36,86,253,41,153,221,191,125,69,210,235,231,81,107,34,200,209,105,118,158,53,18,82,163,187,33,246,
2399 238,109,16,91,125,39,104,241,3,163,242,214,213,238,38,248,210,216,239,65,119,104,58,68,88,94,128,57,207,161,216,160,68,71,149,95,115,242,15,38,255,212,25,176,98,86,0,10,0,228,99,198,255,2,98,252,31,160,163,124,205,234,238,71,215,251,233,248,222,235,199,
2400 125,15,154,253,163,179,166,72,7,245,12,63,126,43,68,95,189,23,52,57,142,217,253,8,162,251,233,108,5,16,108,172,129,80,100,197,149,32,239,125,122,84,222,214,107,13,192,23,186,238,132,133,85,203,217,8,112,58,10,220,184,83,144,28,36,84,55,189,248,178,19,
2401 191,59,233,94,103,192,134,34,0,5,0,242,33,227,255,43,37,174,8,102,120,254,84,181,83,245,62,177,100,46,92,219,125,55,107,7,58,10,110,63,107,223,27,121,236,43,32,239,94,149,76,242,227,5,60,185,8,98,44,28,144,76,18,140,31,130,216,170,255,76,70,3,18,135,
2402 210,254,174,116,138,224,89,205,87,195,233,141,87,178,126,33,138,102,78,9,50,141,4,148,119,5,47,57,241,187,19,239,117,96,36,0,5,0,26,127,98,252,111,104,167,198,159,55,195,243,167,106,61,70,84,251,162,234,51,224,178,246,219,193,33,186,211,254,25,212,254,
2403 221,16,121,242,118,214,212,71,147,19,201,78,126,8,130,152,248,164,182,176,252,128,100,52,224,11,32,31,120,105,84,222,150,62,71,46,109,191,21,44,188,245,200,132,80,163,208,214,193,101,157,129,75,150,125,119,18,21,1,120,110,81,0,20,184,231,159,80,77,49,
2404 254,84,165,203,154,68,84,251,21,112,102,211,23,129,31,133,250,122,105,195,51,48,252,232,77,32,237,248,103,50,201,15,189,126,4,73,111,52,32,182,15,98,43,191,6,241,247,127,72,110,250,104,218,223,149,246,9,248,98,215,93,224,179,6,217,146,128,25,208,229,
2405 128,178,46,38,2,126,225,12,226,114,0,10,128,194,51,254,203,169,231,47,155,228,249,203,170,68,78,38,15,23,181,222,12,139,171,207,76,251,254,107,241,65,136,190,120,15,68,158,255,30,249,126,8,215,250,17,100,212,158,218,86,246,74,108,123,8,34,255,188,26,
2406 148,129,117,105,127,203,102,127,23,92,59,246,219,80,238,170,101,115,4,76,17,1,67,50,148,19,17,112,252,55,39,220,43,88,208,20,161,0,40,28,227,127,242,188,27,58,126,75,61,127,227,107,254,28,107,235,107,23,157,112,69,231,127,178,25,224,233,70,217,183,134,
2407 117,243,75,172,123,42,25,238,199,12,127,4,201,64,52,192,13,234,192,122,136,190,121,45,72,59,254,152,246,119,164,198,255,186,177,223,129,38,95,39,75,48,54,131,56,17,1,21,227,139,46,153,255,229,142,31,112,216,50,16,5,64,1,24,255,197,243,110,236,248,173,
2408 156,80,172,170,9,198,159,134,228,104,104,142,206,252,238,40,154,146,246,253,79,172,250,51,12,63,241,31,160,246,110,31,169,235,199,155,22,65,50,6,237,27,160,202,16,91,251,61,150,36,168,73,253,105,125,59,218,61,244,170,238,111,30,41,19,52,39,18,32,209,
2409 102,65,87,31,115,75,231,93,40,2,80,0,228,45,237,39,84,205,156,127,83,199,239,21,83,154,252,112,172,198,191,216,81,1,87,119,223,13,13,222,246,180,238,187,22,27,128,232,179,223,134,232,171,63,79,246,43,23,109,120,66,17,36,43,130,1,2,203,13,144,246,60,5,
2410 81,186,36,208,255,94,90,223,206,41,186,225,242,142,59,96,106,233,66,211,68,192,72,179,160,155,137,8,248,42,138,0,20,0,121,71,197,184,96,215,156,107,219,30,86,18,170,215,140,53,255,152,50,12,149,238,6,184,102,236,183,200,215,250,180,238,187,114,96,61,
2411 12,63,118,11,36,54,62,155,44,239,227,48,209,15,65,178,78,7,208,37,129,161,109,172,149,176,180,243,47,105,125,47,171,96,131,75,218,110,129,185,21,39,154,214,48,136,150,8,118,157,82,115,231,130,175,116,94,133,103,19,5,64,62,25,255,134,19,191,61,241,17,
2412 209,33,20,211,113,153,198,141,127,4,234,188,99,88,119,63,26,1,72,39,52,203,63,242,196,215,88,91,95,108,229,139,32,89,14,49,204,160,74,16,95,251,29,136,175,251,46,251,62,109,111,197,137,112,222,152,27,96,81,245,233,16,147,35,198,69,0,249,231,177,33,22,
2413 9,248,225,184,51,235,206,193,147,137,2,32,231,41,170,247,20,19,227,255,103,171,75,172,49,99,176,15,77,190,105,244,117,16,227,255,45,8,164,121,126,120,124,229,31,32,242,194,247,89,71,63,12,249,35,72,206,132,2,216,168,225,196,246,135,33,186,242,86,114,
2414 255,14,167,239,173,200,175,51,155,174,98,149,71,102,137,0,90,34,56,231,186,182,95,117,47,175,93,130,39,19,5,64,206,226,14,219,93,75,254,115,220,255,217,60,150,14,57,110,134,231,63,12,77,254,78,248,66,231,215,217,24,207,116,146,120,239,175,16,123,253,
2415 62,54,196,7,179,252,17,36,231,84,0,209,1,30,144,247,191,4,177,213,95,39,134,85,78,235,187,157,222,116,37,156,88,119,33,139,78,26,21,1,116,88,16,113,150,172,243,110,236,120,176,110,102,241,100,60,151,40,0,114,14,98,244,249,101,223,155,244,235,226,22,239,
2416 44,41,170,24,247,252,21,234,249,19,227,223,69,140,191,53,189,198,95,217,179,138,24,255,95,2,103,177,177,193,36,8,130,228,168,12,176,16,17,176,239,121,72,108,186,47,237,239,181,172,254,98,56,177,246,66,83,34,1,52,79,138,142,67,95,124,219,216,135,43,198,
2417 21,213,227,153,68,1,144,51,208,166,22,243,191,220,241,253,146,54,255,105,52,156,101,134,241,111,58,108,252,211,236,249,131,28,135,232,107,247,210,59,16,147,253,16,36,31,68,128,232,74,142,23,78,115,117,192,17,17,80,119,33,43,79,54,44,2,36,21,236,30,75,
2418 229,177,119,142,251,163,167,196,17,196,51,137,2,32,39,152,117,77,235,245,237,199,85,93,29,31,52,158,128,67,67,106,204,248,119,222,153,126,227,79,72,108,120,22,148,3,27,112,205,31,65,242,70,1,144,199,188,154,128,196,230,251,71,229,237,168,8,88,82,115,
2419 22,203,87,50,42,2,164,152,2,174,144,173,251,196,239,76,124,192,21,182,227,224,0,20,0,217,205,248,179,235,79,27,123,90,237,183,105,93,171,193,187,246,72,182,63,29,205,233,177,6,210,191,243,196,235,151,222,255,27,113,252,45,120,34,17,36,159,16,236,160,
2420 244,188,9,234,224,134,81,121,187,211,26,46,135,37,35,137,129,96,84,4,68,21,40,105,243,47,90,116,107,215,127,243,34,246,8,64,1,144,165,212,205,40,158,52,251,154,214,251,20,73,229,52,205,200,69,159,108,242,83,229,110,128,43,153,231,31,24,149,253,87,122,
2421 54,147,215,86,186,134,129,39,19,65,242,236,81,175,145,103,138,124,224,31,163,246,142,167,55,125,1,230,86,158,4,17,19,170,16,104,52,181,110,102,201,165,243,111,234,188,25,207,37,10,128,172,35,220,226,173,88,250,95,227,126,175,72,154,219,104,163,159,184,
2422 26,133,98,103,37,49,254,255,149,246,82,191,143,8,128,125,235,146,37,127,216,222,23,65,242,14,142,19,65,233,95,51,170,239,121,110,203,117,48,163,108,137,41,29,3,105,203,224,142,147,170,239,162,81,86,60,155,40,0,178,6,79,137,195,190,244,142,113,15,88,157,
2423 98,173,42,27,43,247,163,131,125,252,214,16,92,217,241,95,16,78,115,147,159,127,17,0,125,59,209,246,35,72,222,42,0,1,180,232,94,114,163,199,71,239,45,201,175,11,198,220,4,227,195,179,13,15,16,162,65,85,37,174,192,172,171,90,127,89,59,45,60,14,79,40,10,
2424 128,140,35,218,4,56,230,150,206,31,135,154,188,179,104,194,138,17,232,72,95,135,232,130,43,58,238,128,10,119,221,168,127,22,45,62,128,222,63,130,228,111,8,0,52,37,6,154,26,31,213,183,21,121,11,92,218,254,85,24,19,24,103,120,148,48,141,174,106,170,230,
2425 93,124,251,216,223,251,43,93,97,60,169,40,0,50,202,244,43,90,174,169,159,85,122,137,209,140,127,69,147,65,224,5,184,180,237,107,80,239,107,203,208,167,209,240,132,34,72,94,147,153,123,220,46,56,225,178,142,219,161,202,221,196,74,4,141,56,26,180,157,186,
2426 195,103,109,60,225,238,137,247,219,125,86,172,85,70,1,144,25,218,79,168,58,102,226,185,13,223,137,15,38,140,169,90,77,37,2,64,129,243,90,110,128,142,162,204,53,190,226,44,46,20,1,8,146,207,182,159,120,227,92,134,58,123,122,173,1,184,162,243,14,8,217,
2427 75,33,161,198,12,109,139,70,91,195,45,222,197,243,110,104,255,22,158,88,20,0,163,78,121,87,160,122,238,245,237,247,75,49,89,52,146,240,79,235,100,105,210,223,169,13,159,103,227,53,51,122,49,120,203,146,11,109,8,130,228,33,10,240,182,34,54,39,32,83,208,
2428 225,101,151,117,222,14,78,209,5,178,102,44,106,26,31,146,96,204,146,138,235,39,158,223,112,54,158,91,20,0,163,134,221,103,177,46,188,181,251,126,209,46,148,170,178,49,131,73,19,99,22,85,157,206,134,105,100,26,33,220,8,156,128,125,255,17,36,47,3,0,170,
2429 76,68,126,11,100,58,207,167,214,51,6,46,110,189,133,37,8,170,154,129,188,41,242,232,149,99,10,76,191,172,229,167,181,51,138,187,240,12,163,0,24,21,230,223,212,249,237,162,122,207,108,217,96,210,31,53,254,147,74,230,193,242,198,43,178,226,115,9,225,102,
2430 224,61,165,0,170,140,39,25,65,242,12,142,19,64,44,154,146,21,251,210,21,154,198,166,8,74,106,194,80,183,64,86,114,205,129,103,209,215,186,255,215,87,225,244,226,89,70,1,144,86,38,95,220,116,86,203,162,138,171,227,195,198,194,87,49,37,202,198,250,94,56,
2431 230,203,192,103,73,207,125,206,226,4,75,237,140,145,94,0,8,130,228,13,106,156,120,255,77,32,4,186,179,102,151,230,84,156,8,75,106,206,54,92,30,72,199,172,187,130,182,142,133,183,118,255,183,96,69,147,134,2,32,77,212,76,13,143,153,122,105,211,79,228,152,
2432 108,40,87,142,214,250,135,236,37,240,185,246,91,89,217,95,54,97,105,59,22,120,103,32,57,12,8,65,144,188,64,83,37,176,86,47,39,79,252,236,106,167,127,74,253,165,48,181,228,24,195,34,32,17,145,161,122,74,232,220,105,159,111,190,2,207,54,10,0,211,113,248,
2433 172,246,121,55,118,252,134,227,192,111,164,211,31,45,247,179,240,54,184,164,237,171,16,114,148,103,223,5,225,46,6,91,247,114,208,164,40,158,116,4,201,7,227,47,71,88,232,95,44,61,38,235,246,141,227,120,56,111,204,13,172,244,217,104,121,32,237,20,56,241,
2434 220,134,239,54,206,45,29,143,103,29,5,128,169,204,187,169,227,174,96,141,123,178,28,215,223,233,143,174,117,209,102,63,103,53,95,13,77,254,236,205,89,177,118,156,8,150,186,233,160,37,134,241,196,35,72,46,163,38,88,230,191,173,245,186,172,29,239,77,163,
2435 160,151,182,221,10,126,91,136,60,31,245,47,63,106,228,209,172,170,154,131,58,106,238,176,221,131,39,31,5,128,41,140,61,163,110,217,152,37,21,215,210,178,19,35,208,48,23,205,246,159,81,182,52,187,63,48,121,80,56,102,95,11,98,113,11,70,2,16,36,103,141,
2436 191,196,66,254,246,206,175,2,239,172,202,234,93,45,113,86,194,69,173,95,102,17,1,218,23,69,47,52,31,192,93,108,239,88,112,115,231,247,104,231,67,4,5,128,33,194,77,222,138,105,159,111,254,169,20,53,150,25,79,141,255,216,240,76,56,185,225,115,57,241,185,
2437 57,187,23,28,199,124,21,132,162,122,20,1,8,146,147,198,223,66,140,255,109,32,4,39,229,196,46,183,145,253,60,181,225,50,214,23,197,72,146,85,98,88,134,134,185,165,151,78,190,176,225,12,188,16,80,0,232,134,102,148,30,243,213,174,159,217,220,162,161,122,
2438 255,132,26,135,82,87,53,92,48,230,6,16,184,220,233,92,201,187,195,224,90,244,31,40,2,16,36,23,141,127,215,109,32,134,167,231,212,174,31,83,117,26,204,42,59,206,112,82,160,20,145,105,197,214,143,75,90,125,181,120,65,160,0,208,197,140,43,199,92,85,214,
2439 17,56,78,138,234,207,136,167,45,126,173,188,21,46,106,189,25,124,214,162,156,59,6,28,17,1,206,17,17,0,40,2,16,36,103,60,127,49,52,61,39,63,194,153,205,87,65,189,175,99,36,41,80,231,97,80,52,16,173,124,104,254,151,59,127,110,117,137,184,22,128,2,32,53,
2440 106,166,134,59,198,159,89,127,23,45,47,209,143,198,122,94,159,214,120,5,171,249,207,217,139,100,36,18,192,99,36,0,65,114,195,248,135,167,231,236,199,160,131,131,104,62,128,219,226,3,89,211,255,252,165,142,91,121,87,112,225,244,203,91,174,197,139,3,5,
2441 192,81,99,243,88,196,185,215,183,255,92,211,52,151,166,234,15,253,71,228,97,22,206,154,91,177,44,231,143,9,139,4,44,190,13,151,3,16,4,141,127,218,41,119,213,194,217,205,215,130,162,202,134,58,5,210,65,109,221,167,213,222,89,61,57,212,137,23,9,10,128,
2442 163,130,40,198,175,20,213,123,166,201,113,253,161,127,234,249,215,122,91,224,140,230,47,230,207,197,226,10,97,78,0,130,160,241,31,21,104,155,244,99,170,78,53,148,15,144,156,109,166,57,169,67,103,115,91,44,120,177,124,20,156,252,242,49,106,167,134,39,
2443 116,157,90,115,107,194,64,171,95,58,224,194,198,59,224,130,49,55,130,67,72,83,167,63,162,140,19,187,214,129,180,125,53,200,7,182,129,26,237,103,87,59,103,119,131,24,172,0,75,101,27,88,171,218,129,179,153,251,254,135,115,2,34,127,251,79,80,14,109,6,206,
2444 226,192,139,6,65,242,214,248,107,160,36,54,130,28,95,3,138,180,13,52,181,47,89,112,207,59,129,23,75,65,180,182,128,104,107,3,142,79,79,217,253,41,13,159,135,173,3,239,195,198,254,85,96,211,57,197,144,246,110,9,53,122,167,78,251,124,243,77,207,127,239,
2445 189,175,227,69,131,2,224,19,177,123,45,214,57,95,106,255,41,185,230,173,6,74,81,153,247,127,78,203,151,160,198,211,98,254,237,40,197,32,242,207,191,146,215,95,64,222,183,25,180,196,72,247,44,158,251,64,242,210,151,96,97,66,192,222,49,15,92,83,78,5,129,
2446 124,111,90,36,96,36,39,96,24,69,0,130,100,222,248,119,165,33,225,79,75,64,124,248,41,136,15,61,193,4,128,166,142,68,252,56,254,67,174,181,198,122,134,240,98,9,88,157,51,193,238,57,133,124,95,97,234,110,88,120,43,156,63,230,6,248,214,91,87,177,164,64,
2447 129,211,103,178,168,67,215,189,188,246,107,155,95,222,247,232,246,21,7,87,226,197,51,242,44,199,67,240,1,211,46,107,185,161,168,193,51,209,72,232,159,134,171,38,23,47,128,121,21,39,153,190,127,241,141,43,224,224,79,46,134,254,63,125,3,164,221,235,217,
2448 205,72,61,126,206,238,2,206,234,76,190,136,199,207,126,102,177,129,210,183,7,134,158,253,21,28,248,201,133,48,244,226,253,73,229,110,114,36,0,171,3,16,36,195,158,191,201,198,95,138,189,1,3,123,175,132,225,131,119,19,239,121,45,115,48,56,222,149,124,113,
2449 142,228,139,119,142,252,222,14,154,124,8,98,253,15,193,192,158,43,32,54,240,144,233,31,181,204,85,3,167,55,94,105,104,114,224,200,163,207,54,247,250,246,159,216,220,22,116,124,81,0,124,148,154,105,225,14,22,250,31,50,144,117,74,46,80,218,209,234,204,
2450 230,171,77,223,191,225,127,60,0,61,247,93,3,210,222,13,71,12,252,103,118,186,18,44,192,57,60,160,69,135,96,224,175,223,133,158,255,185,30,212,225,94,115,35,1,139,147,213,1,40,2,16,36,3,198,223,228,176,127,172,255,127,96,104,223,205,32,19,175,63,105,224,
2451 109,240,153,253,249,137,87,206,241,110,208,180,8,68,122,126,4,195,7,238,32,6,55,98,234,126,77,47,91,66,94,75,33,38,235,223,46,117,236,66,141,222,233,211,46,107,190,6,47,34,20,0,71,176,185,69,126,238,117,237,63,34,226,210,161,105,58,21,230,136,50,61,155,
2452 92,91,94,107,192,212,253,27,122,238,62,232,255,203,221,204,224,115,22,123,234,27,16,68,38,4,98,171,159,131,67,191,186,10,148,190,189,230,69,2,92,88,29,128,32,249,96,252,35,189,63,38,175,159,177,176,62,245,236,83,39,41,4,226,195,127,131,161,3,255,65,4,
2453 129,185,207,131,211,27,175,96,209,0,201,192,188,0,218,37,176,251,180,218,219,202,187,2,77,120,49,161,0,96,76,56,167,254,243,161,6,207,92,163,161,255,5,85,167,66,71,209,20,83,247,45,250,246,227,48,240,212,127,3,103,115,146,179,101,172,139,32,21,1,210,
2454 206,53,208,243,155,235,76,21,1,180,58,192,137,213,1,8,146,211,198,63,214,255,32,51,224,70,205,2,77,8,148,162,175,66,228,208,247,76,221,71,218,23,224,236,150,107,128,35,251,167,129,190,229,76,90,214,77,252,40,207,236,107,218,126,32,88,208,252,21,252,17,
2455 40,105,245,87,78,56,183,241,206,248,176,254,208,63,109,245,91,231,109,133,101,117,23,153,186,111,210,174,181,196,243,255,22,17,228,150,15,146,111,140,122,236,54,23,203,31,48,91,4,124,56,39,0,69,0,130,228,162,241,167,21,67,230,52,205,163,34,128,38,16,
2456 198,6,30,52,117,95,219,2,19,89,187,224,168,129,165,0,41,166,64,197,216,224,210,73,23,52,158,131,2,160,144,63,188,192,193,140,47,180,124,75,180,241,69,122,27,254,208,201,85,34,39,178,208,191,222,50,149,79,220,110,164,31,250,254,112,59,168,241,8,11,225,
2457 155,9,141,38,164,67,4,240,40,2,16,36,125,198,191,43,93,198,255,33,83,141,255,7,34,192,1,209,222,95,128,28,251,167,169,219,61,161,238,66,226,112,141,129,132,18,211,239,180,69,100,24,127,118,221,55,131,53,238,162,66,190,180,10,90,0,140,89,92,177,168,102,
2458 106,248,108,35,237,126,227,74,4,22,215,156,5,13,190,118,83,247,173,255,145,187,153,145,214,181,230,159,37,34,0,19,3,17,196,68,207,223,228,108,255,72,207,97,207,223,105,186,241,79,66,151,44,85,86,77,160,42,251,77,219,170,77,176,195,89,205,87,131,200,91,
2459 65,211,89,217,68,103,5,216,60,150,202,233,87,182,220,129,2,160,0,113,248,172,182,169,151,53,127,151,206,143,214,173,34,137,2,173,39,134,255,216,26,115,35,73,195,47,255,14,162,111,61,206,178,253,211,73,186,150,3,62,92,29,128,145,0,4,49,193,248,135,211,
2460 96,252,7,30,76,139,231,255,209,135,140,21,20,101,15,68,14,125,151,252,70,49,109,179,141,190,78,88,88,181,28,162,138,254,165,0,234,248,53,205,43,187,188,97,78,233,100,20,0,5,198,228,139,27,175,241,87,186,58,244,10,0,170,60,69,114,115,158,217,116,21,107,
2461 86,97,22,137,237,171,96,224,169,159,144,251,102,52,154,235,104,35,34,224,253,17,17,176,207,188,251,158,85,7,224,114,0,130,100,157,241,239,29,37,227,127,248,89,192,185,136,177,253,7,196,250,127,107,234,118,143,173,61,151,229,94,37,244,86,5,104,44,18,32,
2462 204,184,162,229,123,22,135,80,144,182,176,32,63,116,73,171,175,186,235,148,154,175,36,12,36,254,81,229,73,179,254,205,12,253,171,209,65,232,123,248,191,64,147,227,134,51,254,83,19,1,238,17,17,112,173,201,213,1,97,156,29,128,32,217,102,252,251,71,207,
2463 248,31,17,1,188,19,162,125,255,99,106,62,0,93,10,56,163,233,11,196,136,241,186,27,4,177,222,0,77,222,25,19,206,109,56,31,5,64,1,192,241,52,241,175,245,78,193,38,248,245,38,254,209,58,212,106,79,35,28,87,123,158,169,251,54,240,216,61,32,239,73,223,186,
2464 255,103,71,2,176,58,0,65,50,138,150,127,198,255,3,83,163,193,240,161,239,131,166,244,153,182,213,102,127,55,204,173,92,102,104,96,16,29,27,60,246,244,218,59,189,165,142,64,161,93,110,5,39,0,26,231,150,206,172,153,26,58,71,210,153,248,167,141,104,205,
2465 211,26,175,96,115,171,205,34,250,246,19,16,121,227,207,105,95,247,255,183,198,58,141,137,129,24,9,64,144,163,240,252,185,220,203,246,63,250,7,140,21,20,121,59,217,151,31,153,186,217,19,106,47,132,50,103,53,235,196,170,235,176,203,42,56,252,214,138,233,
2466 87,180,220,140,2,32,143,161,235,60,228,36,127,83,77,168,186,63,55,109,69,57,189,116,49,116,4,205,203,27,81,14,237,132,254,199,190,7,156,104,201,220,205,153,102,17,128,179,3,16,228,51,140,127,206,102,251,167,240,28,224,92,16,31,250,59,36,134,30,55,109,
2467 155,46,139,135,77,13,164,83,88,65,231,82,0,141,2,52,47,40,255,98,121,119,160,25,5,64,158,210,189,188,246,204,162,58,207,12,89,103,226,159,172,201,16,180,23,195,178,250,139,77,188,241,85,232,123,228,110,80,7,15,177,222,253,217,192,104,84,7,160,8,64,144,
2468 79,48,254,185,154,237,159,202,243,133,183,178,150,195,170,188,211,180,109,78,40,158,3,227,195,179,33,166,232,123,174,208,229,96,222,202,59,103,92,57,166,160,198,5,23,140,0,240,20,219,93,19,207,107,184,67,138,25,24,246,163,196,217,186,127,192,22,54,109,
2469 191,134,95,121,8,226,107,95,98,70,55,123,248,120,78,0,86,7,32,8,26,127,179,16,137,223,211,11,195,61,63,160,7,192,180,173,158,210,240,57,112,137,222,145,72,128,158,40,128,12,149,227,138,78,109,61,182,114,54,10,128,60,99,236,25,117,87,56,131,182,70,85,
2470 214,23,34,138,43,49,150,112,50,171,252,56,211,246,73,222,187,17,6,159,254,217,40,149,252,233,21,1,35,213,1,253,230,86,7,56,23,225,0,33,4,141,127,190,148,250,165,236,8,112,78,144,34,175,65,108,240,143,166,109,179,196,89,5,139,170,79,39,207,106,157,207,
2471 20,141,229,3,112,147,47,106,252,186,197,33,114,133,112,9,22,132,0,8,55,121,139,59,79,169,185,73,26,214,159,248,39,242,34,83,152,2,103,82,91,94,85,129,254,71,190,205,74,255,70,175,228,207,64,36,224,215,102,231,4,224,0,33,4,141,127,254,101,251,167,240,
2472 12,224,237,16,237,187,15,20,105,171,105,219,164,115,2,170,60,77,186,19,2,233,242,112,81,189,103,102,235,146,138,83,80,0,228,9,19,47,104,184,222,238,17,195,170,206,178,63,154,248,55,181,116,17,52,249,187,76,219,39,22,250,223,184,34,57,229,47,203,193,217,
2473 1,8,146,6,227,159,175,217,254,71,141,0,154,58,8,209,158,31,131,89,75,1,116,30,203,178,186,139,117,47,3,48,17,16,83,96,194,249,245,183,59,131,54,107,190,95,138,121,47,0,138,91,124,53,141,115,74,175,212,219,239,95,33,23,146,223,86,4,39,212,154,215,39,66,
2474 62,176,21,6,159,190,55,75,67,255,153,19,1,152,24,136,20,138,241,119,164,35,219,191,55,123,178,253,143,250,185,194,57,33,17,125,29,226,131,143,152,182,205,113,225,153,208,77,142,109,76,103,155,96,69,82,33,88,227,233,24,119,70,221,121,249,126,57,230,189,
2475 0,152,112,94,253,205,162,93,112,235,156,25,193,214,147,142,169,90,14,65,123,137,57,59,164,105,172,225,143,26,237,207,226,208,255,167,137,0,156,29,128,32,134,61,127,98,252,133,112,186,74,253,114,193,243,255,216,115,133,183,177,165,0,85,222,99,218,54,79,
2476 172,191,136,69,3,84,157,15,254,68,68,130,246,101,85,183,184,66,25,108,204,130,2,192,24,165,29,254,230,198,185,165,23,208,236,78,61,208,117,164,42,119,3,204,175,60,217,188,27,245,173,71,33,182,246,197,44,203,250,63,106,245,130,213,1,8,98,208,248,23,78,
2477 182,255,209,34,130,170,244,176,210,64,179,168,118,55,193,204,178,99,217,180,86,93,167,75,214,192,29,182,215,143,61,189,230,226,124,190,44,243,86,0,208,150,191,179,190,216,122,139,96,21,28,122,189,127,69,149,89,217,31,85,146,166,60,3,6,15,193,224,223,
2478 126,10,156,152,203,75,75,31,171,14,192,217,1,8,146,57,227,223,155,235,198,255,240,243,218,73,188,238,231,64,138,188,104,218,54,151,214,158,205,74,182,21,77,167,3,24,85,160,253,196,234,47,17,33,224,65,1,144,99,212,78,15,183,85,140,15,158,165,215,251,167,
2479 101,127,45,129,177,48,177,120,158,105,251,68,75,254,148,222,221,89,211,240,199,188,72,0,206,14,64,144,140,24,255,254,220,55,254,35,119,62,249,37,64,164,239,94,208,212,33,83,182,232,183,134,96,65,213,105,108,108,187,190,40,128,74,163,0,53,221,167,213,
2480 92,142,2,32,151,62,20,241,254,39,158,219,240,101,98,167,172,122,58,67,210,178,63,158,227,224,248,218,243,201,87,115,14,81,98,203,91,16,249,231,35,57,26,250,255,148,91,22,103,7,32,200,103,27,255,130,207,246,63,218,7,138,21,148,196,22,136,13,252,206,180,
2481 77,206,173,88,6,229,174,90,144,232,185,208,21,5,144,161,99,89,245,181,238,144,221,139,2,32,71,168,156,80,52,134,120,255,103,208,16,142,94,239,191,43,52,29,90,131,19,204,217,33,69,134,129,39,127,12,154,162,208,180,215,188,58,214,56,59,0,65,62,221,248,
2482 99,182,127,138,247,61,249,76,177,129,63,130,34,109,50,101,123,14,209,5,139,170,207,0,89,247,160,32,13,92,97,123,121,247,233,53,23,162,0,200,17,218,79,172,186,142,227,56,155,158,127,171,129,10,86,222,10,199,214,156,107,218,254,12,191,241,103,72,108,121,
2483 155,8,92,123,62,30,110,172,14,64,144,79,242,252,49,219,95,151,73,210,180,8,68,123,127,97,218,22,167,149,46,130,90,111,11,27,227,174,43,10,16,145,161,131,230,2,228,97,69,64,222,9,128,226,22,95,125,227,220,178,243,164,136,94,239,63,202,6,75,212,121,199,
2484 152,243,44,24,234,129,161,231,238,3,206,98,131,252,229,99,57,1,253,88,29,128,160,241,199,108,127,157,247,60,235,13,240,10,36,76,74,8,20,137,67,183,184,250,44,80,84,125,54,65,85,88,20,160,166,123,121,237,57,40,0,178,156,9,231,214,95,101,177,243,14,77,
2485 75,125,241,95,211,84,176,11,46,114,177,156,105,218,254,12,61,255,107,80,122,119,229,65,226,223,209,138,128,247,161,231,215,105,168,14,64,17,128,228,140,241,255,15,204,246,55,42,2,64,128,88,223,125,228,153,28,51,101,123,19,137,83,215,224,239,128,132,129,
2486 40,0,141,44,187,66,246,188,242,228,242,74,0,148,140,241,149,53,206,45,189,80,111,215,191,152,26,133,201,37,243,161,210,221,96,202,254,208,97,63,195,43,254,148,87,137,127,41,69,2,204,204,9,112,97,117,0,146,205,151,254,135,61,255,25,230,27,255,254,194,
2487 49,254,201,27,222,10,114,98,3,196,7,255,98,142,161,227,4,54,40,72,111,99,32,26,5,112,23,219,91,154,230,149,230,213,140,128,188,18,0,109,199,87,93,106,113,138,126,77,87,230,191,10,78,193,13,11,171,150,155,182,63,131,207,220,11,90,124,152,102,182,20,212,
2488 179,16,103,7,32,5,231,249,115,233,44,245,123,168,176,140,255,225,231,8,111,135,216,192,239,65,83,14,154,178,189,113,161,153,208,232,107,215,29,5,144,227,10,116,157,86,123,157,197,33,228,205,3,61,111,62,136,167,212,225,105,94,88,246,121,73,175,247,47,
2489 71,97,82,201,60,40,115,213,154,178,63,241,77,43,32,186,250,57,34,100,157,80,136,224,236,0,164,96,140,255,225,108,255,48,102,251,155,139,8,170,188,143,136,128,135,76,139,2,44,172,210,31,5,80,18,42,132,26,60,147,90,151,86,30,131,2,32,203,232,58,165,230,
2490 44,87,200,94,73,67,53,169,123,255,26,216,69,39,204,175,52,41,186,67,46,176,193,103,126,193,190,230,91,217,95,106,34,192,149,214,62,1,60,138,0,36,11,140,63,102,251,167,51,10,224,132,216,224,99,160,72,219,77,217,222,216,176,177,40,128,34,171,208,122,92,
2491 229,181,180,211,44,10,128,44,193,230,22,197,166,5,101,95,160,99,28,117,121,235,114,4,198,135,103,155,182,246,31,91,253,44,36,54,189,153,83,211,254,210,67,26,171,3,104,36,96,241,109,184,28,128,100,220,248,155,237,249,71,123,10,43,225,239,179,76,20,29,
2492 25,28,27,248,95,83,182,38,112,2,235,14,168,119,92,176,18,87,160,172,195,191,176,110,70,113,55,10,128,44,161,97,110,233,194,96,173,187,139,142,113,212,227,253,91,5,59,185,40,78,53,199,228,201,9,24,124,254,55,57,55,233,47,253,34,224,112,117,128,121,34,
2493 128,119,133,176,68,16,201,43,227,79,61,255,40,26,255,143,69,1,28,144,24,126,22,148,196,251,166,108,143,230,2,212,120,154,217,176,183,148,159,102,26,155,51,35,118,44,171,186,18,5,64,54,124,0,145,167,77,26,190,168,199,248,83,104,159,232,142,162,201,80,
2494 235,105,49,71,189,175,124,10,164,29,239,229,121,221,191,145,72,192,181,88,29,128,228,240,165,140,131,125,50,19,5,136,67,180,255,183,166,108,77,36,231,111,94,197,73,32,235,109,15,28,81,160,122,114,248,140,112,179,183,20,5,64,134,169,158,84,212,81,62,46,
2495 184,72,79,248,63,217,243,95,48,109,237,95,75,68,97,232,69,114,145,138,22,188,103,63,201,88,99,117,0,146,235,158,63,102,251,103,44,10,32,69,95,1,57,254,158,41,219,155,84,50,31,202,92,53,32,107,169,139,0,218,99,198,234,18,124,173,199,86,158,143,2,32,195,
2496 180,29,87,117,9,167,129,168,75,201,17,85,217,228,235,132,150,192,56,115,188,255,183,31,7,121,207,250,28,31,247,155,251,34,0,19,3,145,180,24,127,204,246,207,228,147,131,24,94,217,180,92,0,58,226,125,86,217,177,32,41,122,27,3,41,48,102,113,197,37,206,128,
2497 45,167,67,189,57,45,0,188,101,142,64,205,212,240,217,180,62,83,215,61,173,169,48,167,98,25,27,68,105,138,247,255,202,67,104,252,143,74,4,96,117,0,146,123,198,31,179,253,51,252,220,224,236,196,240,190,6,114,124,181,41,219,155,86,182,24,2,246,98,80,116,
2498 36,4,178,198,64,97,91,115,227,252,210,69,40,0,50,68,243,194,242,83,156,1,107,177,158,210,63,58,29,170,210,93,15,99,77,186,161,233,218,191,188,103,3,0,10,128,163,145,75,31,36,6,178,234,0,147,167,8,98,117,0,146,6,227,143,189,253,179,32,10,0,178,105,125,
2499 1,188,214,32,76,42,158,199,242,192,244,160,200,26,180,46,169,184,44,151,75,2,115,86,0,88,157,34,215,113,98,245,231,36,157,165,127,116,62,244,244,210,165,96,225,141,71,112,52,57,14,195,175,254,30,215,254,83,22,1,238,100,36,224,215,215,97,117,0,146,181,
2500 198,223,129,9,127,89,20,5,112,128,20,121,21,228,248,26,83,182,55,171,252,120,54,50,152,118,130,77,217,137,140,43,80,210,30,56,166,172,35,208,132,2,96,148,41,31,27,156,228,175,118,77,214,147,253,79,107,64,3,182,16,76,41,53,167,161,19,173,251,151,118,173,
2501 3,78,196,204,255,212,69,128,51,125,213,1,40,2,16,19,60,127,1,141,127,150,69,1,18,16,31,252,63,115,236,136,171,22,218,139,38,65,92,79,46,128,70,3,190,188,173,245,184,138,243,80,0,140,50,109,199,85,94,192,233,188,123,226,106,12,198,23,207,6,159,53,104,
2502 194,131,66,129,225,87,254,128,117,255,70,110,233,116,37,6,162,8,64,12,26,255,180,101,251,115,104,252,245,71,1,236,144,136,188,2,138,180,217,156,40,64,217,113,196,16,234,59,23,82,84,134,250,89,37,231,56,131,182,156,236,250,150,147,2,192,87,238,244,87,
2503 79,9,157,42,233,44,253,179,241,118,152,81,182,212,148,125,137,175,127,5,18,219,223,5,206,98,199,59,51,75,69,128,11,171,3,144,20,141,63,102,251,103,183,217,210,212,97,136,15,254,217,148,173,141,9,78,128,106,79,147,174,198,64,52,255,204,83,236,168,111,
2504 154,95,186,0,5,192,40,209,188,176,252,56,103,192,86,162,169,169,39,255,209,178,143,38,127,23,212,152,212,248,103,248,213,63,224,253,104,154,8,72,211,40,97,172,14,64,82,244,252,49,219,63,203,159,21,196,137,75,12,63,79,12,176,241,220,33,145,19,97,106,233,
2505 34,150,24,174,235,178,81,84,104,156,91,118,65,46,158,214,156,19,0,180,243,95,243,49,101,23,40,9,157,165,127,228,215,244,178,37,166,236,139,180,99,53,196,55,190,129,222,191,105,124,124,118,128,217,213,1,73,17,128,203,1,200,167,26,255,46,204,246,207,13,
2506 4,98,120,123,32,62,248,184,41,91,155,88,60,15,252,182,176,174,25,1,82,92,129,242,238,192,226,226,102,95,5,10,128,52,19,110,242,54,6,235,61,179,229,68,234,201,127,138,38,67,177,163,2,186,138,166,153,227,253,191,254,48,171,0,40,228,137,127,105,21,1,191,
2507 78,223,114,0,138,0,228,227,198,159,133,253,67,104,252,115,43,10,240,55,208,212,33,195,219,242,219,138,160,43,52,77,95,73,32,49,69,22,135,232,105,152,83,114,50,10,128,52,211,118,92,197,105,162,77,176,65,234,209,127,114,114,227,108,234,31,45,251,48,138,
2508 210,187,27,98,107,94,64,239,63,109,34,192,153,182,229,0,108,27,140,252,139,231,143,217,254,57,136,8,138,180,19,18,145,231,77,217,218,212,210,133,32,240,22,246,252,73,21,57,161,208,165,233,179,45,14,33,167,78,116,78,9,0,139,83,224,107,166,21,159,174,196,
2509 117,38,255,137,14,152,108,82,174,70,228,205,71,65,29,234,197,236,255,116,42,252,116,182,13,198,234,0,36,237,217,254,104,252,211,254,140,224,68,136,15,209,101,0,197,240,182,104,91,248,100,50,160,164,227,82,82,33,80,229,154,92,218,17,232,64,1,144,38,202,
2510 58,2,227,253,149,206,110,85,78,61,252,79,147,255,26,188,237,80,237,54,222,179,65,75,68,32,250,206,83,56,241,47,151,69,128,11,103,7,160,241,79,119,182,63,26,255,244,63,32,172,160,196,215,130,28,91,105,252,153,192,9,48,177,120,174,174,100,64,58,38,152,
2511 23,121,161,97,78,201,105,40,0,210,68,203,226,138,229,28,207,241,154,142,240,63,237,247,76,39,64,153,65,108,237,203,32,31,216,2,32,96,231,191,209,17,1,31,106,27,140,179,3,16,19,61,127,204,246,207,249,167,3,49,190,202,72,20,192,56,19,138,231,128,219,234,
2512 103,115,98,82,118,50,99,10,237,9,112,138,221,103,21,115,229,232,229,140,0,112,6,108,150,186,233,197,39,233,25,251,75,51,59,253,182,16,116,135,204,73,254,139,188,249,87,154,129,130,247,222,168,241,161,182,193,105,154,29,128,213,1,133,103,252,205,246,252,
2513 163,152,240,151,25,9,192,219,136,126,127,29,84,217,248,115,33,100,47,131,22,255,88,54,41,54,229,75,75,86,193,87,225,236,168,158,84,52,1,5,128,201,84,77,42,154,228,10,217,154,245,12,254,73,144,147,217,26,156,0,62,107,145,225,253,160,70,40,177,229,45,76,
2514 254,203,136,8,72,87,117,64,8,171,3,10,200,248,59,210,52,216,39,138,198,63,67,208,146,192,62,72,68,158,53,101,107,180,36,80,211,147,101,206,174,49,128,134,57,165,57,83,13,144,51,2,160,97,46,57,168,58,207,9,29,247,75,215,118,76,81,249,239,60,1,90,60,130,
2515 165,127,25,19,1,88,29,128,232,185,116,48,219,63,175,163,0,156,5,18,195,207,38,207,179,65,58,138,38,65,145,189,148,149,141,167,10,173,6,168,28,95,116,162,195,103,205,137,245,225,156,16,0,206,160,205,90,49,54,120,130,172,35,251,159,158,196,176,163,2,198,
2516 4,198,25,127,134,196,135,33,250,222,115,152,252,151,233,155,29,171,3,144,84,61,127,14,179,253,243,251,161,96,37,198,119,19,72,241,119,140,219,27,209,3,109,193,137,250,90,3,203,26,184,139,237,173,85,147,67,227,81,0,152,68,121,87,96,130,59,108,111,209,
2517 27,254,239,40,154,12,118,193,105,120,63,226,235,95,3,229,224,14,76,254,203,10,17,224,194,217,1,200,209,25,127,44,245,43,16,20,72,12,61,109,202,150,38,132,103,179,170,0,125,209,8,128,234,137,161,147,80,0,152,68,245,164,208,9,122,35,238,2,39,194,184,208,
2518 12,115,110,248,119,158,196,251,60,107,208,62,90,29,208,143,179,3,16,52,254,5,237,20,112,54,144,98,111,128,166,244,24,222,22,157,23,19,118,148,235,91,6,136,171,80,49,46,120,172,197,46,100,125,147,152,172,23,0,22,135,40,84,79,13,31,75,15,106,202,39,66,
2519 147,160,196,81,1,13,62,227,189,25,148,222,61,144,216,242,38,112,34,134,255,179,75,4,184,147,34,128,37,6,238,51,239,97,50,82,29,128,203,1,104,252,63,78,20,75,253,178,20,1,84,249,0,36,162,175,24,222,146,77,112,64,107,96,2,235,30,155,178,173,144,84,240,
2520 87,187,218,203,58,3,237,40,0,12,82,49,54,216,230,175,116,117,208,131,154,42,146,146,128,214,224,68,176,10,198,51,246,99,107,158,199,206,127,89,45,2,232,114,192,181,166,87,7,124,52,49,16,31,246,185,100,252,49,219,191,16,195,0,2,155,18,104,6,99,195,51,
2521 64,224,245,149,244,11,34,47,212,207,41,93,154,237,135,43,235,5,64,213,164,162,69,188,160,111,49,70,36,39,111,108,104,166,41,70,38,186,250,89,122,86,241,6,203,90,17,224,76,75,179,32,238,35,137,129,17,60,212,57,228,249,11,56,213,175,240,236,63,77,6,140,
2522 191,71,188,240,237,134,183,69,91,3,211,101,0,89,213,87,13,80,222,21,56,150,207,242,209,0,89,45,0,232,232,223,202,241,69,75,21,41,245,236,127,26,254,15,179,240,127,155,225,253,144,246,110,4,105,231,90,224,68,43,222,97,217,124,243,167,49,49,16,171,3,114,
2523 203,248,139,88,234,87,160,240,108,58,160,20,125,217,240,150,232,50,0,173,30,147,53,29,213,0,146,10,69,117,238,137,225,102,111,21,10,0,157,248,43,157,101,193,90,247,100,61,225,127,153,60,12,104,71,39,122,18,141,18,95,243,34,104,241,33,236,254,87,224,34,
2524 192,133,34,32,235,141,191,163,11,19,254,48,10,32,130,20,161,121,0,154,225,109,209,209,241,156,142,115,78,219,213,91,156,162,179,122,114,104,46,10,0,157,84,77,10,205,180,185,45,30,29,109,153,217,73,235,44,154,98,194,131,69,129,216,218,23,1,4,244,254,115,
2525 3,45,109,34,128,195,18,193,236,246,252,137,241,23,66,104,252,81,1,208,158,0,27,64,73,108,50,188,169,70,95,7,4,236,197,108,150,76,202,151,165,172,66,213,132,208,98,46,139,155,198,101,183,0,24,95,180,88,83,83,87,113,201,222,255,97,104,244,119,26,222,7,
2526 105,207,122,242,218,128,225,255,156,20,1,135,115,2,176,58,32,239,141,63,13,251,135,48,219,31,73,186,127,154,58,76,52,186,241,106,0,151,197,11,13,190,118,93,77,129,228,132,10,225,22,239,44,103,145,205,153,173,71,42,107,5,128,221,107,181,148,118,6,102,
2527 209,100,138,148,141,54,57,89,245,222,86,112,91,124,134,247,35,254,254,43,160,37,162,216,250,55,39,69,192,72,137,32,171,14,48,79,4,252,107,117,0,146,113,227,143,217,254,200,135,37,0,109,13,28,93,1,102,44,3,180,7,39,147,205,164,30,134,166,206,171,195,111,
2528 173,14,55,123,187,81,0,164,72,81,131,167,205,85,100,109,212,211,253,143,142,114,164,173,28,141,219,16,21,98,239,255,3,64,196,206,127,185,29,9,48,191,68,144,195,182,193,121,109,252,49,225,47,215,21,128,21,148,196,70,80,164,173,134,55,213,226,239,6,151,
2529 213,11,42,164,40,2,52,90,149,200,67,221,140,226,249,217,122,152,178,86,0,212,78,13,205,17,44,228,232,105,169,30,115,21,156,22,55,52,251,141,139,46,121,255,150,100,248,31,91,255,230,246,179,32,93,179,3,92,56,64,40,239,140,63,203,246,127,8,141,127,238,
2530 223,245,35,203,0,43,12,111,41,228,40,131,10,87,61,75,44,79,253,82,85,161,180,221,63,143,23,179,243,90,202,74,1,64,147,237,203,199,6,231,41,178,158,236,127,25,202,156,53,80,226,50,94,125,17,223,176,2,180,24,102,255,231,135,8,112,165,109,128,208,225,234,
2531 0,76,12,204,3,227,207,214,252,157,104,252,243,225,158,231,4,83,4,0,77,40,167,21,101,138,142,126,0,106,178,43,224,120,111,137,163,40,27,143,81,86,90,54,87,145,221,21,172,117,79,84,117,150,255,209,228,63,222,132,143,22,219,240,10,118,254,203,27,210,95,
2532 29,128,179,3,70,201,248,99,169,31,114,84,55,38,93,6,216,0,170,98,60,255,135,246,3,16,121,11,164,154,83,160,170,26,216,61,150,64,73,155,127,98,54,30,162,172,20,0,197,45,222,46,71,192,86,169,103,253,159,78,112,106,13,24,159,196,168,14,236,7,105,231,58,
2533 204,254,207,75,17,144,190,234,0,30,151,3,210,111,252,49,219,31,57,74,243,166,42,125,32,199,86,26,222,82,181,167,9,2,182,176,174,114,64,26,65,40,31,27,156,141,2,224,40,33,7,107,58,207,167,126,35,210,242,63,159,53,8,53,158,102,195,251,16,223,186,18,212,
2534 161,30,140,0,228,165,8,248,208,236,128,126,115,171,3,176,89,80,250,140,191,35,13,165,126,152,237,159,255,72,209,55,12,111,195,33,186,153,93,145,116,228,1,208,78,182,165,237,254,153,217,216,22,56,235,4,0,173,182,43,235,12,204,212,53,252,71,147,160,210,
2535 93,15,94,34,2,140,146,216,104,78,9,9,146,205,145,0,34,2,126,125,173,233,203,1,88,29,96,230,169,250,80,147,31,204,246,71,82,189,31,249,228,108,0,77,51,126,47,54,5,186,200,118,82,183,75,138,172,65,160,218,213,233,41,115,134,80,0,124,6,174,34,187,35,88,
2536 235,30,175,103,253,95,85,21,168,247,25,159,192,168,201,113,136,111,91,137,221,255,242,94,4,96,117,64,214,123,254,92,122,154,252,96,182,127,161,64,71,4,239,99,185,0,70,105,244,117,130,77,176,147,39,71,106,142,33,237,7,96,243,88,2,165,109,190,172,235,7,
2537 144,117,2,192,95,237,106,177,123,45,149,122,218,255,210,233,127,180,117,163,81,228,125,155,65,233,217,9,28,78,255,203,127,15,33,93,34,192,141,34,192,176,241,199,108,127,196,248,29,78,188,246,4,200,177,119,12,111,169,220,89,3,65,123,9,168,154,172,103,
2538 55,104,100,123,42,10,128,207,58,200,221,129,137,188,149,231,83,85,89,116,253,159,134,254,171,220,141,134,247,33,177,229,109,208,226,216,253,175,112,68,128,43,45,163,132,89,137,32,206,14,200,82,227,143,158,127,225,220,224,2,72,38,36,2,90,137,247,95,229,
2539 110,208,53,30,88,149,53,218,220,14,5,192,103,17,110,242,77,213,145,104,201,198,255,150,187,106,193,99,245,27,222,135,248,230,183,200,145,193,218,255,194,225,195,109,131,175,51,53,49,240,112,199,64,172,14,64,227,143,100,200,254,115,22,80,164,205,160,41,
2540 135,12,111,139,206,5,80,117,132,167,217,120,224,122,79,151,51,104,115,100,211,177,201,42,43,103,177,139,92,168,201,51,94,79,2,160,162,42,80,235,29,99,220,20,196,134,216,0,32,14,215,255,11,87,4,252,218,236,234,0,28,37,156,138,241,119,164,171,189,47,26,
2541 255,2,69,0,85,233,5,57,177,209,240,150,106,189,173,96,101,182,33,245,126,0,14,175,165,50,80,237,106,66,1,240,41,120,203,29,101,158,98,123,147,166,163,254,95,224,4,54,0,200,40,210,222,141,172,7,0,8,88,254,87,152,34,32,141,213,1,152,19,240,111,14,61,102,
2542 251,35,233,188,190,20,144,227,171,12,111,166,204,85,3,94,107,81,234,253,0,136,73,19,108,60,95,222,21,28,139,2,224,83,40,170,247,180,91,156,162,59,213,17,192,52,36,227,180,120,160,210,221,96,120,31,18,219,87,145,103,81,28,31,20,5,12,38,6,102,192,243,199,
2543 108,127,36,173,55,181,192,202,1,141,226,18,61,80,230,172,214,151,7,160,2,132,154,188,89,213,17,48,171,4,64,184,217,59,78,207,61,170,104,50,132,236,165,172,83,147,25,2,0,123,255,35,40,2,70,209,248,167,189,189,47,102,251,23,252,253,204,242,0,182,129,166,
2544 244,26,222,86,181,167,153,37,157,167,126,169,107,16,172,115,143,203,166,193,64,89,101,233,66,141,222,241,122,194,255,84,0,84,184,235,89,27,96,35,104,137,40,200,123,55,0,135,227,127,17,72,115,117,192,71,6,8,21,168,113,74,99,123,95,76,248,67,62,138,64,
2545 140,127,31,75,6,52,74,173,183,133,216,154,212,77,167,42,171,224,45,177,183,184,195,14,127,182,28,149,172,17,0,22,135,40,4,170,93,109,84,37,165,108,184,53,13,106,60,198,115,43,228,131,219,65,233,223,79,142,10,214,255,35,236,202,250,88,117,128,217,29,3,
2546 15,207,14,136,20,174,241,239,68,227,143,140,210,221,172,73,32,199,215,26,222,78,185,171,14,28,162,139,141,158,79,233,253,85,13,172,94,107,40,80,227,170,71,1,240,49,124,229,206,18,87,216,86,167,103,0,144,69,176,66,149,219,184,0,144,118,175,99,81,0,172,
2547 255,71,254,85,4,208,196,64,115,69,64,193,206,14,192,108,127,36,19,16,175,93,78,188,111,120,51,69,246,18,240,219,66,186,6,3,9,2,199,133,155,189,29,217,114,72,178,71,0,84,58,27,89,2,160,150,122,3,32,183,197,7,197,206,74,227,2,96,231,90,188,73,144,79,17,
2548 1,174,15,68,0,86,7,24,56,148,152,237,143,100,200,254,131,8,138,180,149,214,122,27,218,142,133,183,66,169,179,26,20,29,137,128,212,190,249,43,93,89,211,18,56,107,4,64,176,222,221,206,235,240,188,169,10,11,218,74,192,99,49,186,172,162,177,250,127,12,255,
2549 35,159,46,2,48,49,208,176,231,159,174,108,255,30,204,246,71,62,75,1,136,160,202,7,64,145,247,24,222,20,29,58,167,171,33,144,172,65,168,193,211,158,45,147,1,179,70,0,20,55,123,59,85,85,95,2,96,153,171,90,87,82,198,71,78,204,96,15,40,61,187,176,255,63,
2550 242,239,159,33,163,32,2,242,178,109,112,186,179,253,7,48,219,31,249,236,24,128,166,69,64,73,24,79,4,76,38,157,235,75,4,244,148,58,26,109,30,139,13,5,192,225,157,16,121,240,150,58,199,168,74,234,138,138,134,84,104,82,134,81,104,2,160,58,220,135,45,128,
2551 145,163,16,1,31,174,14,48,177,99,224,200,236,0,62,223,68,64,58,179,253,113,205,31,73,205,96,152,50,25,144,46,1,216,4,135,222,201,128,21,222,50,71,25,10,128,17,236,30,139,195,83,98,175,211,100,29,29,0,121,129,8,128,26,227,2,96,223,70,208,228,4,62,68,144,
2552 163,185,141,63,36,2,174,53,183,58,32,223,102,7,28,78,248,75,87,169,31,174,249,35,41,221,96,66,50,15,192,32,65,91,49,120,172,129,148,251,1,208,20,55,209,46,216,189,229,206,172,168,4,200,10,1,224,173,112,148,217,188,150,178,84,59,0,210,50,12,187,224,132,
2553 98,71,133,225,125,144,246,108,196,236,127,36,197,72,192,135,171,3,112,118,192,167,26,255,206,219,64,192,82,63,36,27,238,89,160,2,96,39,49,196,198,18,1,105,25,32,173,6,208,83,9,192,243,28,109,8,212,130,2,96,4,103,192,86,43,88,4,91,138,5,0,44,9,195,75,
2554 84,24,45,201,48,44,0,14,108,33,71,3,251,255,35,122,34,1,233,153,29,224,202,229,196,192,116,103,251,163,241,71,116,70,0,52,181,7,52,249,128,225,77,81,199,83,85,83,23,0,212,209,45,170,243,160,0,56,76,81,189,167,81,79,86,36,157,0,24,176,21,179,181,24,67,
2555 207,170,216,32,40,189,123,201,3,5,19,0,17,61,34,32,61,137,129,92,174,86,7,96,182,63,146,181,240,196,104,71,64,145,119,26,222,18,77,62,79,53,7,224,176,0,32,78,111,19,199,115,89,112,52,178,128,96,173,187,89,211,81,1,160,130,98,74,248,95,38,15,109,117,184,
2556 23,35,0,136,126,99,141,213,1,31,24,255,195,29,254,48,219,31,201,74,205,174,176,185,0,198,35,0,149,108,10,109,202,142,43,109,9,92,225,168,177,56,50,63,114,54,43,4,128,43,100,111,72,181,1,16,59,143,228,223,148,152,208,0,72,57,180,19,59,0,34,38,136,128,
2557 52,206,14,200,133,234,128,81,25,236,131,158,63,98,244,70,229,76,17,0,33,71,41,88,5,123,234,149,0,228,175,91,157,98,153,35,96,11,20,180,0,96,109,127,45,192,249,42,156,213,84,21,165,188,243,28,15,97,71,185,241,8,192,193,237,116,103,240,198,64,140,186,22,
2558 31,21,1,38,38,6,102,125,117,0,14,246,65,114,6,1,84,121,183,225,173,248,172,69,224,178,120,82,175,4,160,165,128,110,209,239,10,217,202,51,125,36,50,27,1,208,232,51,131,115,139,54,190,44,213,165,20,170,186,44,188,13,130,246,18,227,2,224,192,118,244,254,
2559 17,19,35,1,238,15,37,6,154,91,29,64,7,8,101,93,78,0,14,246,65,114,233,254,100,2,224,0,107,10,100,4,151,197,11,94,107,48,245,142,128,26,235,125,195,23,213,186,43,51,125,44,50,27,1,32,94,191,175,194,81,108,247,91,131,169,14,1,210,200,65,119,90,220,224,
2560 183,21,25,222,15,165,119,23,174,255,35,105,136,4,172,79,246,9,232,51,121,128,80,54,37,6,166,115,205,31,179,253,145,180,40,0,158,120,225,253,160,201,61,6,133,4,7,1,91,56,229,8,0,251,183,196,225,180,121,44,181,5,31,1,160,107,33,60,207,165,220,22,81,37,
2561 191,220,68,129,185,68,175,177,93,72,68,65,25,56,128,2,0,73,131,8,200,243,234,128,116,27,127,108,242,131,164,41,6,160,169,81,80,149,253,134,183,68,123,1,232,201,95,83,201,191,41,106,240,212,100,250,72,100,84,0,40,10,29,140,224,174,20,44,60,164,186,4,64,
2562 235,47,233,26,140,72,30,64,134,158,97,195,189,236,197,113,40,0,144,52,60,106,142,68,2,242,108,128,208,168,100,251,163,241,71,210,36,0,52,25,20,217,248,253,88,100,47,213,85,10,72,255,137,205,37,86,23,180,0,160,203,238,54,183,69,215,58,8,141,0,208,240,
2563 139,97,17,50,112,16,180,120,148,102,20,226,125,129,164,41,18,144,198,234,128,197,25,40,17,196,176,63,146,243,168,166,36,2,210,62,52,122,135,2,249,171,93,44,9,80,79,9,124,206,11,0,26,53,161,205,127,138,26,61,149,122,166,0,210,176,75,192,94,108,92,0,244,
2564 239,3,77,193,25,0,72,186,69,128,59,61,213,1,174,207,168,14,208,49,178,244,35,110,202,199,189,27,244,252,145,188,8,2,240,196,8,27,95,2,240,219,67,44,10,173,165,158,197,78,19,1,75,129,214,193,21,106,4,96,228,64,232,238,228,19,48,161,5,48,243,200,84,21,
2565 111,8,100,148,68,64,122,170,3,92,135,171,3,18,31,202,108,150,19,192,123,74,245,63,35,29,149,44,99,26,14,39,57,169,137,35,189,253,177,206,31,201,109,136,0,80,140,183,3,246,90,252,96,163,189,0,82,204,3,208,20,218,13,208,26,180,20,129,71,149,11,50,2,64,
2566 199,34,90,193,95,229,42,81,83,238,1,160,129,192,139,44,7,192,120,4,96,63,150,0,34,163,40,2,210,83,29,192,141,84,7,136,101,29,201,72,0,121,137,85,19,193,218,113,162,238,109,10,254,54,176,212,158,149,20,0,242,48,112,86,31,246,246,71,242,35,0,64,132,173,
2567 166,244,209,44,112,67,219,161,125,0,232,96,32,58,152,46,85,251,39,216,120,15,103,129,160,158,36,66,179,200,92,243,123,141,206,101,224,4,209,46,132,116,68,79,64,224,68,86,131,105,120,55,162,3,248,208,65,70,89,4,124,80,29,16,188,224,251,196,208,150,154,
2568 178,101,90,29,224,58,246,235,32,239,89,197,68,173,88,218,65,110,20,35,17,70,14,108,77,151,131,165,100,30,168,177,125,32,248,218,200,190,135,76,61,26,81,204,246,71,50,36,1,52,45,78,94,18,185,85,172,186,183,66,167,209,58,69,15,244,196,14,64,170,227,108,
2569 104,245,27,141,2,104,25,12,64,103,46,2,160,106,96,247,138,46,139,67,8,164,60,6,152,40,38,171,96,99,101,128,8,146,147,143,159,52,149,8,82,131,47,86,142,7,177,98,156,65,227,255,161,135,132,183,5,196,226,217,166,27,127,26,246,143,162,241,71,114,24,158,19,
2570 192,101,241,233,106,7,44,88,5,26,1,47,214,148,2,92,2,160,141,127,220,97,187,207,225,183,186,83,22,0,228,151,93,112,128,67,116,26,127,16,59,168,136,192,28,0,36,19,34,32,61,213,1,185,0,174,249,35,153,69,35,158,191,205,144,247,127,24,15,17,0,122,154,1,81,
2571 205,160,72,106,56,147,71,33,179,125,0,36,213,71,140,127,202,86,156,118,1,164,161,23,155,224,50,188,15,98,168,10,64,195,219,1,201,208,67,40,77,213,1,104,252,17,228,223,221,121,10,240,98,152,141,173,54,44,0,172,126,0,157,189,0,124,101,142,112,38,199,2,
2572 103,116,9,192,87,238,244,11,34,207,167,126,220,52,112,90,60,134,155,0,81,44,21,173,228,26,176,3,170,0,36,179,34,192,252,234,128,172,52,254,152,240,135,100,197,109,167,128,96,29,99,202,166,220,116,9,64,143,253,39,255,200,87,225,12,101,242,54,200,168,0,
2573 240,148,56,130,188,133,75,249,224,209,225,11,14,209,109,202,113,179,150,183,128,24,174,1,144,37,188,41,144,12,138,128,244,84,7,100,157,241,199,53,127,36,27,238,55,222,10,22,199,20,147,4,128,254,92,52,69,82,139,50,233,123,102,122,9,32,160,47,114,162,130,
2574 139,8,0,83,16,173,224,24,187,24,52,41,142,247,5,146,97,17,144,166,196,192,44,0,179,253,145,172,185,211,180,56,121,236,183,129,104,51,39,2,224,20,189,186,186,1,82,39,216,225,183,6,5,107,230,204,112,70,5,128,213,37,250,117,31,116,139,199,180,253,112,78,
2575 58,9,132,162,10,162,72,18,120,119,32,25,37,31,69,0,245,252,49,219,31,201,22,161,77,95,118,223,25,228,171,57,243,95,92,22,247,136,0,72,205,155,165,137,240,222,114,151,215,234,204,220,28,154,140,9,0,154,248,16,106,242,250,245,212,64,210,181,19,167,224,
2576 54,239,32,184,2,224,57,230,50,208,164,4,96,46,0,146,121,17,144,63,213,1,216,222,23,201,42,243,175,14,131,213,57,15,44,142,153,166,109,147,46,71,211,114,64,77,215,254,104,30,173,80,151,0,8,58,23,79,136,130,51,161,4,240,35,81,128,137,39,130,115,242,201,
2577 160,70,7,241,46,65,50,238,165,164,107,138,224,104,126,134,40,102,251,35,217,35,171,137,227,24,5,193,82,7,174,224,85,166,110,153,182,2,166,141,233,244,56,143,196,248,187,105,83,192,66,21,0,250,226,248,28,199,218,47,154,141,111,217,151,193,209,185,16,212,
2578 200,0,128,134,145,0,36,11,34,1,187,214,65,239,131,183,130,150,136,230,212,190,71,251,239,39,175,223,161,241,71,178,198,243,23,196,82,112,23,255,39,112,66,145,169,219,166,77,233,216,64,160,84,59,218,146,191,111,113,8,46,171,83,176,102,234,184,100,78,0,
2579 104,201,240,135,190,157,230,137,234,114,154,190,75,156,197,6,129,179,190,14,174,105,167,177,161,42,154,140,57,1,72,134,35,1,118,55,36,182,188,5,137,109,239,228,208,110,199,32,49,244,4,209,233,14,52,254,72,134,81,137,157,25,4,209,214,66,140,255,221,44,
2580 2,96,54,22,142,8,0,78,76,189,27,160,162,129,171,200,106,245,20,59,108,5,39,0,44,78,1,188,101,14,151,170,163,13,34,71,123,148,11,233,57,102,84,4,248,79,253,26,4,206,184,19,196,64,25,121,150,13,38,43,4,52,236,22,136,100,44,22,192,198,151,230,142,108,249,
2581 215,239,16,100,116,189,75,137,60,178,135,128,142,187,113,248,206,5,79,201,61,196,248,215,164,199,150,17,91,36,232,236,73,67,103,226,105,154,102,207,212,145,202,216,48,32,209,198,131,51,96,179,15,12,105,41,202,16,218,194,145,7,171,144,222,99,230,24,127,
2582 44,216,90,103,66,244,237,199,33,250,206,147,32,237,221,4,90,124,56,25,183,97,211,3,209,179,65,70,225,81,38,199,193,222,50,29,172,53,221,185,35,87,56,59,216,220,75,33,210,251,19,250,1,112,218,38,50,74,70,95,27,185,254,172,192,139,101,196,201,156,70,174,
2583 195,99,211,226,245,127,196,150,113,22,22,1,208,41,120,173,35,175,194,18,0,90,114,9,192,161,239,1,195,129,133,79,127,212,132,119,120,193,53,253,76,112,77,59,3,228,125,155,32,177,123,29,200,251,183,130,58,116,136,60,215,254,63,123,231,1,47,71,89,245,255,
2584 179,51,179,237,246,126,211,147,155,222,72,2,161,6,233,72,145,162,2,214,191,149,87,254,250,250,250,170,20,11,254,241,125,21,21,21,20,17,20,72,40,210,91,66,73,40,161,164,87,82,110,239,189,238,189,119,123,239,51,187,255,231,121,54,137,160,160,185,179,51,
2585 91,207,55,159,225,134,36,187,59,59,237,252,206,121,78,17,81,3,32,234,18,139,129,80,49,19,10,63,241,229,99,221,42,179,7,67,233,87,217,90,171,24,106,252,123,20,3,65,212,50,254,196,139,212,240,37,204,240,11,186,69,192,147,45,177,4,165,62,188,134,7,45,175,
2586 99,213,105,50,46,115,33,47,5,192,241,99,39,231,84,211,37,0,65,163,77,221,94,178,209,170,11,217,134,32,200,73,221,52,196,251,186,138,109,8,146,211,87,58,177,15,84,4,36,97,131,243,48,9,48,241,217,178,82,249,105,205,165,192,9,120,229,33,8,130,32,105,37,
2587 97,143,244,172,67,173,28,39,56,30,139,167,205,152,165,59,179,72,70,92,48,206,170,0,18,107,46,8,130,32,8,146,165,226,129,215,128,177,52,125,189,128,185,108,61,112,113,204,48,70,16,4,65,210,238,197,106,64,199,233,166,94,6,24,143,131,96,224,161,108,78,81,
2588 81,186,246,61,157,2,128,186,240,83,95,2,160,69,3,26,14,120,92,2,64,16,4,65,50,65,4,208,50,93,89,189,128,19,67,129,242,81,0,208,240,191,172,36,64,186,230,194,167,50,9,16,65,16,4,65,114,140,116,47,1,196,211,242,82,4,65,16,4,65,1,128,32,8,130,32,8,10,0,
2589 4,65,16,4,65,80,0,100,34,52,219,50,142,189,249,17,4,65,16,36,43,5,128,72,182,192,84,95,68,219,138,75,49,17,162,49,156,212,135,32,8,130,100,49,26,214,11,32,109,125,178,211,41,0,104,22,159,132,87,0,130,32,8,146,173,208,136,116,68,10,179,150,192,83,118,
2590 102,163,49,240,89,67,193,124,20,0,199,244,143,188,3,142,141,128,16,4,65,144,76,17,1,114,204,159,20,142,129,103,60,16,206,215,8,128,95,214,65,139,139,16,149,162,120,213,33,8,130,32,233,53,254,241,56,196,226,146,60,127,86,3,113,13,159,190,73,153,233,108,
2591 167,151,212,18,128,20,79,253,234,129,100,182,129,52,97,134,152,211,13,241,96,16,175,124,68,237,39,11,8,179,103,130,118,213,178,172,220,125,79,32,2,102,103,128,60,28,227,56,12,24,81,213,144,240,28,7,6,29,15,69,6,45,20,23,232,200,255,167,238,138,163,198,
2592 95,140,69,88,75,96,25,80,79,54,148,127,2,64,195,198,40,6,101,188,140,28,240,24,68,98,169,49,192,226,192,8,132,182,237,133,240,251,13,32,142,154,32,230,245,147,83,134,209,7,36,53,2,0,200,131,173,232,107,55,64,241,247,255,35,171,118,125,216,236,133,109,
2593 77,228,222,137,72,104,252,145,212,152,20,141,6,116,2,7,133,70,45,76,47,47,132,5,51,74,97,86,149,250,109,246,99,228,151,24,139,78,57,7,224,184,95,9,137,132,248,252,18,0,113,49,14,209,144,20,158,250,49,211,176,7,163,218,85,0,212,211,247,61,250,60,4,223,
2594 219,3,113,143,15,200,149,5,26,65,75,54,30,64,139,115,8,144,20,33,73,224,123,246,85,48,92,118,1,104,151,46,204,138,93,142,197,226,112,184,103,18,194,196,248,211,7,50,130,164,236,118,33,215,158,203,23,6,187,39,4,29,163,14,152,81,81,8,107,23,214,192,172,
2595 234,34,21,63,83,100,2,64,38,212,144,165,45,7,32,109,150,44,236,19,193,49,236,11,112,117,220,148,23,2,168,226,138,72,234,69,77,168,199,239,249,195,195,32,77,90,65,83,104,4,77,113,33,222,89,72,122,224,137,224,12,133,137,32,181,100,141,0,16,165,24,4,194,
2596 98,74,195,176,8,146,136,2,144,91,134,252,231,248,181,103,178,251,96,194,225,135,85,117,85,112,246,178,105,192,169,80,113,71,157,81,49,46,130,156,28,0,13,167,9,211,45,93,199,43,221,242,220,39,43,122,64,4,64,72,82,103,9,192,255,236,43,224,188,253,183,32,
2597 57,221,9,195,207,161,7,131,164,143,120,56,2,124,117,37,232,86,44,206,154,125,214,106,121,168,45,43,128,168,132,205,186,144,52,95,139,60,199,140,126,67,159,5,222,173,31,97,226,84,121,1,16,78,44,1,76,81,0,16,195,15,33,79,52,18,116,69,210,150,3,144,110,
2598 235,230,145,245,80,140,199,33,44,6,20,223,153,192,150,119,192,243,199,13,160,209,10,160,209,225,180,65,36,205,198,63,74,30,42,122,29,148,222,241,67,224,106,170,178,199,11,35,219,39,86,204,128,26,42,2,68,20,1,72,250,163,2,122,34,74,251,198,93,176,179,
2599 121,140,165,214,40,9,141,70,211,101,128,169,6,23,232,4,225,16,49,254,1,71,56,109,93,237,210,42,0,56,94,227,145,121,74,33,40,249,21,221,151,104,103,47,120,239,121,152,60,112,181,137,176,43,130,164,19,106,252,181,90,40,191,235,167,160,63,239,204,172,219,
2600 253,34,163,22,62,117,198,60,168,42,53,160,8,64,50,2,42,2,186,199,156,208,216,111,85,244,125,195,82,24,196,120,20,100,46,1,120,201,150,182,36,192,244,9,0,162,194,156,35,126,183,220,37,153,128,168,160,0,16,37,240,222,187,1,98,129,32,128,128,9,126,72,250,
2601 141,63,156,48,254,103,101,237,215,72,136,128,58,34,2,140,40,2,144,140,64,43,240,208,208,107,6,135,87,185,168,123,136,56,163,180,44,93,142,41,99,2,64,147,190,174,118,105,19,0,52,140,239,183,132,220,178,122,39,144,35,22,136,122,149,59,129,59,247,67,184,
2602 190,5,52,5,70,188,67,144,12,242,252,207,202,250,175,243,247,72,128,17,115,2,144,180,67,115,3,195,68,140,54,244,41,23,5,8,136,190,99,195,233,166,158,3,16,116,134,189,98,36,125,247,69,122,151,0,180,156,67,206,235,104,178,5,61,232,10,41,17,8,188,178,21,
2603 147,253,144,140,241,252,203,114,196,248,255,147,8,40,193,72,0,146,1,81,0,158,131,97,139,135,53,170,82,2,191,232,133,152,140,158,118,28,175,1,207,68,192,25,13,164,111,36,78,218,172,30,245,226,195,222,168,51,30,139,203,120,45,167,152,0,144,70,199,33,218,
2604 209,195,146,173,16,36,221,198,191,60,199,140,255,71,70,2,80,4,32,105,132,46,59,135,194,34,17,1,202,68,145,253,17,183,236,196,66,34,2,236,233,236,148,149,62,1,64,212,143,125,208,227,20,35,177,248,84,243,0,56,22,1,240,42,210,14,56,210,218,5,49,175,15,35,
2605 0,72,218,136,231,184,241,71,17,128,100,158,8,208,192,132,93,25,39,210,23,245,200,126,173,20,141,217,210,121,28,210,92,5,192,121,104,32,64,78,4,32,40,250,33,162,64,47,0,113,104,4,20,175,11,65,144,41,120,254,154,60,48,254,255,44,2,176,58,0,73,163,237,225,
2606 52,224,14,68,88,46,90,178,120,163,46,89,109,128,105,14,128,185,203,99,139,75,233,179,63,233,139,0,112,108,9,192,21,9,74,126,205,20,59,134,209,28,128,48,49,254,74,84,2,196,236,46,244,254,145,180,25,127,200,35,227,255,97,17,128,213,1,72,26,35,0,100,139,
2607 68,37,69,18,83,189,17,34,0,228,152,210,132,217,179,228,101,4,128,38,64,120,205,33,111,208,21,117,77,89,0,104,184,99,2,32,249,16,78,92,20,241,110,64,114,202,248,139,225,40,217,148,187,174,105,154,142,39,172,236,125,130,213,1,72,46,64,35,8,190,168,27,56,
2608 205,212,77,105,140,136,95,191,61,108,213,164,209,255,76,107,209,187,134,215,68,136,16,160,107,32,11,166,42,156,162,49,145,40,47,103,242,66,196,104,196,37,0,36,103,140,127,203,198,195,208,183,179,147,37,58,45,184,112,25,156,114,253,25,160,73,162,39,255,
2609 246,126,59,220,187,119,16,108,129,8,172,153,94,2,191,252,228,34,152,86,164,87,84,4,188,117,100,8,108,238,32,104,113,112,16,146,74,39,148,220,36,154,36,103,3,68,98,33,86,5,48,85,1,64,63,86,138,198,36,247,88,192,78,243,225,242,46,2,64,31,74,17,111,20,220,
2610 99,126,171,70,152,234,1,208,128,20,23,193,29,177,39,127,0,170,42,80,0,32,105,48,254,183,43,110,252,143,252,109,15,52,60,115,0,2,54,47,248,173,94,168,127,106,31,244,19,49,32,151,17,87,8,126,248,122,39,52,79,122,193,30,136,194,150,78,11,124,125,99,11,140,
2611 123,148,155,93,130,37,130,72,58,160,81,45,189,78,96,37,129,201,224,143,122,89,62,154,70,70,42,127,60,30,247,145,87,57,210,121,28,210,42,185,165,72,12,162,1,113,92,142,10,163,161,23,103,56,249,4,74,126,90,53,128,6,167,150,33,234,243,225,108,127,101,219,
2612 251,82,227,223,190,185,1,116,133,122,224,180,252,137,109,162,117,84,246,123,54,78,120,192,17,140,64,145,142,7,129,8,246,50,131,0,237,102,31,124,115,19,17,1,94,133,69,192,153,243,160,18,115,2,144,84,221,139,228,87,161,33,249,0,56,173,0,8,75,1,182,44,61,
2613 37,195,43,112,224,183,69,92,17,43,184,120,109,250,204,112,26,251,0,80,21,22,7,247,120,208,36,43,131,146,188,198,25,74,62,127,130,9,0,173,0,128,65,0,68,101,207,95,173,108,255,19,198,191,64,247,225,102,100,52,196,153,68,145,177,72,220,164,15,142,79,165,
2614 183,8,21,3,237,22,34,2,88,36,64,185,118,170,84,4,92,133,213,1,72,170,4,0,177,61,244,154,75,22,26,133,142,178,73,128,50,246,33,22,55,199,99,16,74,231,113,72,107,4,128,118,79,244,219,66,163,26,89,9,148,156,34,17,0,174,186,10,52,6,67,98,103,16,68,37,227,
2615 15,170,25,255,189,208,190,165,145,24,127,253,71,71,178,146,8,110,125,220,75,139,143,139,128,151,91,85,88,14,192,234,0,36,37,46,40,148,24,147,111,254,230,12,91,217,36,192,169,222,104,52,2,224,26,241,79,178,61,225,242,48,7,32,241,197,1,2,206,200,104,76,
2616 70,29,36,77,186,112,19,1,16,135,228,30,20,92,69,25,112,37,197,137,69,33,4,201,42,227,191,7,58,182,212,131,206,168,131,84,118,19,139,31,19,1,29,116,57,224,101,117,114,2,42,177,58,0,81,211,246,144,251,165,184,32,121,1,96,15,77,202,86,215,209,160,56,146,
2617 238,227,144,222,70,64,180,25,131,41,48,17,151,98,83,30,165,68,5,128,39,234,2,127,52,185,82,64,174,184,16,248,170,114,136,75,18,222,21,72,118,121,254,155,27,64,107,212,67,58,90,137,158,88,14,80,73,4,92,133,137,129,136,138,215,46,77,254,43,86,32,2,96,15,
2618 78,202,170,36,160,182,207,214,231,25,206,107,1,192,166,33,185,162,230,72,64,154,242,88,96,142,205,3,240,130,55,154,100,41,32,249,96,126,122,45,0,10,0,68,201,135,140,202,158,127,59,245,252,11,210,99,252,255,49,18,208,174,98,36,0,151,3,16,197,175,219,120,
2619 28,116,90,94,145,36,64,71,216,2,188,134,151,245,218,136,95,204,115,1,192,107,32,64,51,33,253,162,121,234,221,0,57,136,72,97,112,40,145,8,56,107,58,46,1,32,138,26,127,213,19,254,140,233,53,254,31,41,2,212,168,14,56,3,171,3,16,165,5,0,16,227,175,5,189,
2620 54,57,1,16,146,130,224,14,219,137,51,58,69,1,64,123,0,144,235,217,214,239,195,37,0,144,64,244,140,7,70,57,25,77,64,196,88,20,108,193,137,164,247,67,152,59,43,35,30,166,72,14,144,142,108,255,12,16,1,234,87,7,160,8,64,148,33,70,156,189,18,114,15,37,91,
2621 253,237,137,56,192,39,122,100,53,1,138,134,36,127,192,25,49,229,181,0,96,15,49,242,244,8,58,35,253,114,219,33,154,131,163,73,239,134,48,103,102,98,28,48,54,4,66,146,52,254,106,133,253,143,50,227,255,47,178,253,51,0,117,171,3,80,4,32,202,9,214,178,194,
2622 228,187,89,58,66,102,8,139,129,41,155,209,99,77,240,38,189,230,160,53,191,5,192,49,236,131,222,62,78,198,64,30,26,122,177,4,146,23,81,252,244,26,208,176,74,0,124,184,32,153,103,252,19,165,126,153,231,249,127,212,131,245,131,213,1,38,172,14,64,50,16,122,
2623 11,149,43,208,206,218,18,52,177,40,244,84,111,73,54,7,199,18,26,147,194,82,56,221,199,34,35,4,0,57,24,189,114,198,50,210,228,11,90,134,65,79,66,82,7,161,162,12,248,218,106,172,4,64,50,208,248,239,73,107,182,191,28,17,112,188,58,224,70,172,14,64,50,16,
2624 129,231,160,76,1,1,48,225,31,145,213,63,142,230,190,5,29,145,62,41,154,254,107,56,35,4,128,115,216,55,40,137,177,41,91,95,26,1,112,71,28,224,73,182,18,128,227,216,50,0,136,40,0,144,12,51,254,172,201,143,46,171,114,84,254,185,58,64,217,156,0,92,14,64,
2625 228,66,187,207,26,245,2,203,1,72,22,186,252,204,201,168,0,160,209,110,251,160,183,59,19,142,71,70,8,0,183,41,48,22,241,68,237,220,20,167,34,209,54,165,129,168,79,153,68,192,5,115,177,18,0,153,154,161,75,129,231,159,234,38,63,170,136,128,77,152,19,128,
2626 100,136,0,136,209,6,64,180,2,128,79,234,125,162,177,8,235,1,32,167,4,144,205,177,25,241,161,0,56,78,200,29,117,251,109,225,145,169,143,69,212,64,52,30,129,201,64,242,213,20,218,69,117,0,60,143,119,8,114,210,158,127,190,101,251,203,17,1,39,170,3,54,97,
2627 159,0,36,51,34,0,229,133,134,228,157,214,136,29,220,97,135,172,8,0,29,3,236,26,245,247,163,0,56,134,24,150,226,30,115,176,139,147,49,23,89,67,158,50,227,190,193,228,35,0,117,179,129,43,41,196,68,64,228,164,140,191,250,97,127,125,206,76,169,252,123,117,
2628 0,77,12,84,97,57,160,196,8,17,20,1,200,73,66,69,99,178,152,3,99,16,148,124,83,46,1,164,54,46,236,137,90,220,166,224,72,38,28,11,46,83,78,138,99,200,215,206,201,152,205,204,113,2,140,7,146,111,168,68,147,0,89,34,32,230,1,32,105,52,254,29,91,178,55,236,
2629 255,175,34,1,199,171,3,110,84,163,68,240,204,99,145,0,172,14,64,254,157,163,71,12,112,101,73,242,17,0,147,127,16,68,54,4,104,138,14,43,249,124,191,53,52,24,242,68,188,40,0,62,44,0,218,228,172,192,211,53,24,107,112,28,130,162,63,201,43,67,0,97,254,28,
2630 0,81,196,187,4,73,143,231,191,185,49,107,178,253,229,136,128,34,21,19,3,177,58,0,249,119,176,4,64,157,160,72,5,128,201,55,32,111,6,0,113,114,61,230,96,135,20,201,140,235,52,99,4,128,173,215,219,45,6,197,232,212,135,2,241,224,9,59,192,26,26,79,122,31,
2631 180,203,22,225,18,0,146,30,227,191,37,251,215,252,79,54,18,144,16,1,152,24,136,164,88,0,196,226,204,248,27,146,76,0,164,19,104,39,252,195,196,249,156,122,43,97,186,4,96,237,245,182,100,202,49,201,24,1,224,53,7,71,195,62,113,108,234,51,1,52,16,142,133,
2632 136,34,75,62,15,128,9,0,157,22,59,2,34,31,190,225,213,14,251,103,80,111,255,212,138,0,117,102,7,160,8,64,62,46,2,160,196,250,191,43,108,7,91,72,94,5,0,221,7,107,143,7,5,192,63,18,116,134,67,158,137,96,23,47,99,38,0,53,216,35,222,158,164,247,65,152,63,
2633 23,248,138,114,0,92,75,68,62,224,249,171,157,237,175,205,113,207,255,163,68,192,137,229,128,141,88,29,128,164,6,26,178,175,45,43,72,250,125,104,213,153,63,234,158,114,5,0,253,252,168,79,244,57,6,189,189,40,0,254,217,134,131,99,192,219,200,9,114,102,43,
2634 11,48,234,235,75,254,96,148,151,130,48,111,22,196,49,15,0,57,102,252,213,15,251,231,78,182,255,84,249,96,117,0,54,11,66,212,22,157,180,246,191,74,129,4,192,17,98,191,229,36,0,82,219,230,179,134,6,60,147,193,73,20,0,31,129,165,199,211,32,231,89,40,104,
2635 4,54,19,192,27,117,37,189,15,218,21,75,48,17,16,73,81,182,191,62,175,167,80,126,120,118,128,90,57,1,6,172,14,64,78,76,0,84,162,3,224,144,167,123,202,229,127,9,1,192,129,115,196,223,34,134,50,231,130,204,40,1,96,235,243,180,73,209,184,140,68,64,14,60,
2636 17,39,75,204,72,22,221,234,229,216,16,8,141,63,102,251,167,80,4,20,169,218,54,184,14,171,3,16,38,0,170,75,141,178,50,247,63,244,104,136,69,192,228,31,0,158,155,122,2,32,93,49,176,245,122,142,102,210,113,201,44,1,208,235,25,242,89,67,35,156,156,142,128,
2637 228,196,12,121,186,146,143,0,44,89,192,150,2,48,15,0,141,63,118,248,75,109,36,0,171,3,16,53,175,177,233,21,133,73,191,143,53,104,2,71,200,34,171,2,128,238,4,141,114,163,0,248,24,66,222,104,216,61,30,104,230,4,57,163,129,57,24,244,116,38,127,64,106,170,
2638 64,168,155,147,200,252,70,242,235,33,145,18,227,143,158,255,191,21,1,216,54,24,81,242,218,138,39,214,255,107,203,147,79,0,28,242,244,64,72,10,176,234,179,41,185,168,156,6,66,158,168,131,56,185,157,153,116,108,184,76,59,89,147,173,206,195,114,18,1,121,
2639 78,11,163,190,126,8,75,201,135,16,217,50,0,118,4,204,59,207,31,123,251,167,95,4,224,236,0,68,105,104,233,93,89,161,30,74,11,146,111,0,52,224,105,151,103,104,137,77,243,76,4,59,137,131,107,67,1,240,47,176,244,184,15,201,25,178,76,107,50,29,97,139,34,131,
2640 129,116,107,87,17,79,16,243,0,242,201,248,99,182,127,230,80,252,1,17,96,82,169,58,0,103,7,228,15,82,44,206,188,255,100,111,191,88,92,98,9,128,114,194,255,180,188,221,222,239,61,28,207,176,137,179,25,39,0,172,221,158,214,176,55,234,144,213,16,72,12,194,
2641 160,167,35,233,125,160,13,129,248,234,74,140,2,160,241,79,138,163,152,237,47,59,18,192,170,3,44,42,205,14,32,34,160,26,171,3,242,6,106,248,103,86,21,37,111,155,130,19,96,9,154,100,37,0,82,75,107,106,178,31,200,180,99,147,113,2,192,109,10,216,93,99,129,
2642 86,94,198,50,128,70,195,65,175,171,53,249,131,82,90,12,218,165,139,48,15,32,231,141,191,168,162,231,191,23,218,48,219,63,41,17,80,164,106,78,0,86,7,228,197,117,68,46,164,2,189,22,166,41,177,254,239,237,130,128,232,37,70,115,106,102,147,86,30,136,33,41,
2643 108,238,112,215,163,0,248,55,196,164,56,76,182,59,15,242,50,66,240,2,167,37,39,169,27,194,82,48,233,253,208,159,185,6,64,194,8,64,110,123,254,130,138,107,254,245,184,230,175,80,36,224,239,205,130,48,39,0,153,26,82,44,198,162,61,5,122,33,233,247,234,113,
2644 53,201,139,64,208,9,128,246,112,55,113,110,71,50,237,248,112,153,120,210,198,155,156,123,227,50,18,1,88,30,64,208,204,234,52,147,69,119,250,42,208,20,21,210,133,31,188,139,114,205,176,164,160,206,31,179,253,21,22,1,102,20,1,136,12,135,50,30,135,153,149,
2645 201,135,255,197,184,8,3,238,78,214,116,110,202,118,73,203,209,254,255,7,195,190,104,198,121,148,25,41,0,204,29,174,6,114,176,60,156,140,60,128,72,44,76,148,90,115,210,251,32,204,155,147,40,7,20,113,25,32,215,60,127,13,78,245,67,17,128,34,32,47,208,242,
2646 60,204,170,78,94,0,76,250,135,143,173,255,107,167,110,100,121,13,140,55,59,118,103,226,241,201,72,1,224,158,8,76,186,70,3,205,156,118,234,187,71,163,0,93,206,166,228,119,130,231,64,127,198,106,128,8,10,128,92,50,254,170,103,251,227,154,191,250,34,96,
2647 147,122,179,3,176,58,32,119,160,217,255,229,197,122,168,40,78,190,255,127,143,171,5,66,162,140,250,127,242,207,165,168,20,158,104,113,30,70,1,112,146,196,196,56,152,219,93,187,228,8,0,129,245,3,232,3,79,196,145,244,126,232,215,157,14,26,28,15,140,198,
2648 255,36,140,63,102,251,167,78,4,116,88,212,235,24,136,213,1,185,37,0,102,85,21,1,167,64,249,109,151,179,65,118,255,127,151,41,208,97,235,247,14,102,226,49,226,50,245,228,153,154,29,187,228,24,94,58,162,209,19,118,64,159,187,61,233,125,160,131,129,248,
2649 217,51,176,28,48,235,141,191,186,217,254,108,164,47,26,255,148,137,128,34,85,151,3,176,58,32,87,224,57,13,204,169,41,73,250,125,124,81,15,171,255,23,184,169,15,18,226,117,28,76,182,185,246,68,252,153,121,65,101,172,0,152,108,119,53,132,188,81,139,12,
2650 209,5,177,120,12,58,28,71,146,222,7,141,65,15,186,211,87,67,60,18,193,187,41,171,61,127,181,179,253,209,248,167,35,18,160,110,78,128,1,69,64,150,123,255,37,133,58,168,45,51,38,253,94,180,251,159,51,108,101,203,203,83,182,33,26,13,76,180,56,183,103,234,
2651 113,202,88,1,224,30,243,187,108,189,222,131,188,110,234,7,93,203,235,216,154,13,29,16,148,44,6,98,52,52,56,29,48,59,13,5,102,251,231,135,8,80,171,79,0,38,6,102,181,0,152,85,89,4,2,159,188,137,107,183,31,97,93,0,167,108,252,201,71,135,60,17,215,200,17,
2652 219,33,20,0,83,189,193,201,29,62,214,96,223,198,203,24,12,68,75,53,44,193,49,24,246,246,36,189,31,186,83,87,2,63,115,90,34,140,140,100,149,231,143,189,253,243,68,4,96,159,0,228,31,13,27,241,188,235,166,37,31,254,23,227,81,232,118,53,129,86,78,248,95,
2653 203,129,99,200,127,196,51,17,176,160,0,144,193,200,17,235,118,73,140,201,176,188,26,136,74,17,162,220,146,79,188,212,20,24,65,119,230,169,184,12,144,101,198,31,167,250,229,107,36,0,171,3,242,157,24,241,254,75,11,117,48,77,129,241,191,35,222,94,48,7,70,
2654 101,181,255,165,205,236,70,143,218,222,165,73,237,40,0,100,96,237,246,116,187,77,254,118,94,86,53,128,0,29,206,163,44,31,32,89,140,151,156,75,206,38,143,213,0,104,252,19,217,254,104,252,51,82,4,168,94,29,128,34,32,43,16,137,0,152,83,83,12,90,5,194,255,
2655 109,246,67,16,145,194,83,46,255,163,72,209,88,140,8,128,247,50,58,82,146,201,59,71,51,39,205,157,238,247,104,38,229,212,5,128,14,198,124,3,48,238,79,190,250,66,187,122,5,8,115,103,65,92,196,101,128,204,54,254,152,237,159,207,34,224,131,213,1,38,204,9,
2656 200,91,104,246,255,252,105,165,201,71,18,136,243,216,102,63,194,156,201,41,27,86,65,3,126,107,168,139,216,175,246,76,62,86,92,166,159,204,129,61,150,183,228,60,113,169,98,163,141,27,218,28,10,44,3,24,244,96,56,239,76,128,48,46,3,100,182,231,47,168,104,
2657 252,49,219,63,91,34,1,84,4,220,168,70,78,192,153,88,29,144,233,208,228,63,218,248,71,137,225,63,212,121,164,109,229,229,148,255,9,122,158,150,178,191,23,246,102,118,242,88,198,11,128,209,35,182,195,62,75,112,140,182,83,156,186,18,20,160,197,118,16,228,
2658 204,21,248,71,12,151,158,71,132,128,1,151,1,50,214,248,171,24,246,199,53,255,172,20,1,44,39,192,171,160,8,48,96,36,32,27,4,0,77,254,155,106,27,249,143,162,197,126,80,86,247,191,227,23,98,223,174,201,55,50,253,120,101,188,0,8,56,195,126,91,159,119,155,
2659 156,101,0,154,185,73,147,56,38,252,67,73,239,135,118,217,34,208,46,93,136,201,128,121,102,252,105,123,95,45,102,251,103,167,8,176,168,85,34,136,213,1,153,122,222,117,2,7,11,166,39,31,254,143,199,99,204,121,148,19,254,215,16,241,17,116,69,76,227,205,206,
2660 247,81,0,40,192,224,126,203,102,186,166,50,229,19,65,126,5,69,63,52,89,247,43,112,164,56,22,5,192,114,192,204,50,254,170,151,250,225,154,127,86,139,128,14,172,14,200,31,239,95,138,65,109,121,161,34,189,255,71,125,253,196,121,236,147,25,254,231,192,220,
2661 233,222,230,183,133,124,40,0,20,17,0,230,93,33,119,212,170,145,17,214,161,179,1,154,108,7,20,169,6,48,92,114,46,112,21,101,52,206,132,119,91,134,120,254,101,152,237,143,252,11,17,80,132,213,1,121,3,157,220,190,104,102,169,34,239,213,100,219,7,97,41,40,
2662 43,252,79,157,213,254,61,147,175,102,195,49,203,10,1,224,54,5,92,147,237,174,93,130,78,222,112,160,49,95,31,81,115,201,55,5,226,167,213,128,254,172,211,32,30,14,227,221,150,86,227,175,118,182,127,35,102,251,231,152,8,80,179,99,96,37,46,7,100,128,241,
2663 143,67,49,57,31,117,181,201,11,0,218,122,166,153,56,141,90,25,163,127,19,225,255,168,109,232,128,117,15,10,0,5,25,216,107,222,164,209,202,91,6,8,75,33,168,183,42,51,142,217,120,213,37,180,205,20,222,113,105,245,252,213,206,246,199,53,255,92,19,1,106,
2664 118,12,188,10,103,7,164,29,81,138,195,188,218,18,48,232,146,111,219,62,232,233,32,78,227,32,240,50,4,0,13,255,79,182,185,182,121,38,2,78,20,0,10,50,184,223,242,158,220,101,0,58,27,128,42,186,72,44,249,27,95,127,198,26,16,22,214,97,50,96,58,30,228,152,
2665 237,143,36,43,2,84,157,29,128,34,32,93,8,196,46,44,153,85,174,204,179,192,178,19,196,88,68,86,248,95,147,8,255,191,152,45,199,45,107,4,128,219,20,112,154,219,93,239,81,133,53,229,139,67,163,133,73,255,8,116,59,155,146,223,17,157,22,10,46,191,16,32,18,
2666 197,187,46,197,198,95,131,217,254,136,82,145,0,28,32,148,67,222,63,77,254,43,128,26,5,106,255,105,210,120,171,253,125,208,241,250,169,27,127,34,66,66,174,168,121,232,128,117,7,10,0,21,232,223,99,126,145,19,228,237,114,140,252,58,108,222,166,200,126,24,
2667 174,184,16,184,138,114,76,6,76,21,152,237,143,40,44,2,58,44,88,29,144,43,208,228,191,165,179,43,20,185,125,105,235,95,107,112,28,120,205,212,203,255,104,243,159,201,118,215,155,158,137,128,7,5,128,10,244,237,152,216,225,179,4,77,114,74,2,117,156,30,218,
2668 29,71,193,21,182,37,189,31,44,25,144,24,162,120,40,132,119,95,10,140,63,246,246,71,148,22,1,88,29,144,43,198,63,49,248,71,137,214,191,148,67,230,237,242,26,255,64,98,252,111,215,214,177,23,178,233,248,101,149,0,240,219,195,62,83,163,99,11,85,90,83,254,
2669 162,26,30,220,97,59,52,40,148,156,89,240,153,203,65,163,211,98,103,64,85,141,191,168,242,84,63,204,246,207,119,17,160,110,78,0,46,7,168,13,77,254,91,52,163,12,116,218,228,77,25,157,250,215,195,70,255,78,61,252,79,157,82,175,37,52,48,120,192,178,23,5,
2670 128,138,244,108,159,120,142,217,92,25,15,109,218,26,248,176,121,135,34,61,1,116,171,151,131,110,205,74,136,227,124,0,21,61,127,65,213,193,62,152,237,143,34,64,205,234,0,236,24,168,242,249,35,39,208,160,229,97,233,108,101,146,255,14,19,239,223,31,245,
2671 16,103,81,70,158,25,237,253,95,111,127,37,228,142,102,85,88,56,235,4,192,208,1,235,251,238,49,127,27,47,99,25,128,182,6,30,242,116,65,191,187,45,249,29,209,104,160,224,186,79,97,30,128,26,55,182,218,237,125,49,219,31,249,71,17,96,70,17,144,117,62,2,121,
2672 246,206,173,45,129,210,66,125,210,239,69,43,196,142,88,118,201,242,254,233,115,36,38,197,165,246,55,70,159,203,182,99,152,117,2,32,26,20,197,193,125,150,231,229,44,3,208,181,157,104,44,2,7,38,222,86,100,95,12,23,156,13,194,162,58,114,245,96,20,64,73,
2673 227,175,118,182,63,122,254,200,199,138,0,156,29,144,53,208,177,191,43,231,85,42,242,94,237,246,35,108,102,140,32,163,246,159,215,114,224,26,241,31,153,104,85,162,204,12,5,192,191,165,115,235,216,139,98,36,22,210,200,120,136,235,121,3,52,219,15,42,146,
2674 12,8,122,29,20,124,246,10,136,99,73,160,66,234,14,179,253,145,244,138,0,172,14,200,14,104,233,223,172,170,34,69,198,254,82,246,79,188,37,251,181,212,25,237,126,111,252,153,104,80,202,186,132,176,172,20,0,214,94,111,191,185,211,189,157,215,201,75,6,116,
2675 133,237,44,219,83,9,140,159,186,24,248,89,211,201,21,137,67,130,146,53,254,152,237,143,164,91,4,124,184,58,64,121,17,128,213,1,202,157,171,149,243,170,20,121,47,147,127,16,186,156,141,160,227,167,62,68,136,58,161,17,191,232,238,223,51,185,41,27,143,99,
2676 86,10,128,24,185,129,186,182,154,30,231,101,102,126,210,30,207,7,39,223,97,203,1,73,31,192,146,98,40,184,230,50,136,135,112,62,128,124,227,127,60,219,255,118,204,246,71,50,66,4,36,114,2,90,177,58,32,19,189,255,88,156,120,254,133,48,167,166,88,33,239,
2677 127,43,107,0,36,167,252,79,48,240,96,106,118,188,110,237,246,152,81,0,164,144,222,29,19,111,251,172,161,33,142,151,151,12,104,242,13,176,166,15,74,64,151,1,184,234,74,58,143,18,239,78,89,158,255,241,108,255,51,85,48,254,184,230,143,76,93,4,96,78,64,6,
2678 159,31,34,0,78,153,87,169,200,72,22,95,212,13,71,205,59,101,117,254,99,17,0,158,131,206,55,199,30,203,214,99,153,181,2,32,224,8,7,6,246,154,159,211,26,229,15,127,216,109,122,93,153,131,72,140,127,193,85,151,64,60,136,141,129,166,116,35,171,26,246,223,
2679 139,189,253,145,228,69,192,241,156,0,47,138,128,76,241,254,171,201,113,91,48,93,153,198,63,180,244,207,30,154,148,213,249,143,23,56,112,143,249,91,6,247,89,246,161,0,72,3,29,111,142,61,41,69,99,97,57,15,120,186,222,211,237,106,132,65,79,167,50,81,128,
2680 47,92,11,92,101,57,70,1,166,224,249,171,155,237,95,15,90,52,254,136,82,34,96,163,58,145,0,28,37,60,53,98,212,251,175,171,2,78,1,247,159,14,252,217,55,254,22,8,156,78,214,235,5,3,7,61,219,198,31,11,251,162,89,155,0,150,213,2,96,178,205,217,51,209,234,
2681 122,71,118,73,160,20,134,93,166,205,138,236,11,109,15,92,112,245,39,49,10,144,9,198,31,179,253,17,133,69,64,199,137,102,65,202,38,6,94,133,213,1,39,141,68,140,127,85,137,1,22,206,80,198,251,111,182,29,132,17,95,31,91,18,158,178,253,32,2,36,236,19,157,
2682 109,175,141,190,144,205,199,52,171,5,64,76,138,67,235,107,35,15,201,153,13,144,136,2,24,161,209,186,15,44,193,49,101,162,0,95,196,40,192,201,24,127,26,246,47,195,108,127,36,139,68,0,171,14,56,150,24,104,194,234,128,52,9,128,24,172,158,95,13,2,207,41,
2683 112,78,227,204,249,147,219,247,95,107,224,97,228,176,109,163,107,204,111,65,1,144,70,6,246,154,183,123,198,131,109,188,140,41,129,180,229,163,63,234,38,23,194,22,229,162,0,215,94,134,81,128,143,53,254,216,219,31,201,110,17,64,19,3,111,196,234,128,148,
2684 67,215,254,107,202,10,96,209,204,50,69,222,175,199,217,4,61,174,102,217,201,127,177,88,92,106,223,50,250,112,182,31,215,172,23,0,97,111,52,218,179,109,124,61,45,199,144,3,109,12,116,104,114,27,184,34,118,69,246,167,240,203,159,5,190,166,138,118,170,192,
2685 187,246,159,60,127,65,229,246,190,152,237,143,168,43,2,212,175,14,192,72,192,71,30,123,34,0,214,16,239,159,231,148,185,193,183,143,189,2,82,92,146,87,250,167,231,193,214,231,221,53,116,208,210,136,2,32,3,104,122,105,232,217,160,59,98,145,83,18,200,105,
2686 4,112,133,173,176,87,169,138,128,170,10,40,184,225,42,140,2,124,240,230,197,222,254,72,174,137,128,227,57,1,94,21,34,1,37,24,9,248,144,247,47,197,96,90,69,33,44,80,104,237,127,200,219,5,173,246,247,153,243,39,235,25,47,104,160,245,213,225,251,99,82,246,
2687 79,130,205,9,1,224,157,12,58,135,14,88,158,148,27,5,160,21,1,251,38,222,98,53,161,74,80,240,249,107,129,159,51,35,225,245,162,241,79,65,111,127,52,254,72,14,69,2,206,196,18,193,127,100,237,162,26,226,172,41,115,147,191,55,178,145,53,129,147,227,253,211,
2688 230,115,158,137,96,123,215,86,211,214,92,56,174,92,174,92,32,13,207,13,60,44,134,99,65,57,223,136,214,128,218,130,147,176,119,252,77,101,14,106,105,49,20,125,245,122,28,21,140,217,254,72,62,136,0,21,167,8,230,123,117,0,157,248,71,59,254,205,85,168,235,
2689 223,152,175,31,154,108,251,137,247,111,148,245,122,234,100,118,189,109,122,48,18,16,115,194,187,203,25,1,96,233,242,12,76,180,58,55,105,245,242,162,0,90,94,15,187,77,91,192,47,122,20,217,31,227,181,151,129,118,217,162,252,21,1,216,219,31,201,51,17,128,
2690 213,1,202,67,215,252,79,95,92,171,216,251,189,55,186,17,194,98,64,150,247,79,67,255,62,75,104,188,121,227,208,179,185,114,124,115,70,0,196,227,113,104,120,118,224,62,208,104,100,101,223,9,26,1,172,65,19,236,49,189,161,200,254,104,244,122,40,250,214,151,
2691 243,179,36,16,179,253,145,60,20,1,88,29,160,44,52,250,177,104,102,57,212,150,41,51,241,207,228,31,128,122,203,110,208,11,242,188,127,173,65,128,193,125,150,13,62,107,200,157,43,199,152,203,165,11,102,240,128,165,97,172,222,254,182,214,32,55,10,96,72,
2692 68,1,162,202,68,1,12,23,173,3,253,186,211,33,30,8,230,207,3,17,179,253,145,124,142,4,168,84,29,80,153,103,137,129,49,114,80,141,228,152,158,190,168,70,177,247,124,123,248,5,8,73,212,251,159,186,217,163,141,127,34,1,209,213,244,210,224,250,92,58,206,57,
2693 37,0,104,169,72,203,166,225,123,56,65,222,215,58,30,5,216,105,122,77,153,29,210,104,160,248,59,95,3,141,94,151,184,162,243,192,248,171,185,230,143,189,253,145,140,23,1,22,117,68,192,85,52,49,48,143,68,0,93,251,95,85,87,5,37,5,58,69,222,111,216,219,67,
2694 188,255,93,178,51,255,117,70,129,14,160,251,155,181,215,51,137,2,32,131,25,58,104,217,109,31,240,238,226,117,242,190,154,238,88,20,192,29,113,40,178,63,218,21,139,193,120,237,229,16,15,4,114,252,142,85,63,219,31,123,251,35,249,44,2,242,165,58,128,182,
2695 252,173,44,54,192,170,249,213,138,189,231,214,225,103,33,194,198,198,200,240,254,53,204,251,247,55,60,51,240,64,174,29,235,156,19,0,228,68,65,227,11,131,119,11,50,147,1,105,69,128,35,100,134,109,163,155,20,219,167,226,111,125,137,117,9,132,236,157,25,
2696 241,111,141,191,154,83,253,48,219,31,201,86,17,96,194,234,128,41,19,139,199,225,204,197,181,160,19,148,49,79,189,174,22,104,178,202,207,252,167,19,103,199,26,237,207,90,251,60,131,40,0,178,128,206,183,198,222,182,247,123,247,9,50,163,0,244,66,217,59,
2697 254,6,88,131,227,202,28,228,170,10,40,186,241,139,185,89,17,160,246,72,223,45,245,24,246,71,178,82,4,208,1,66,55,170,48,64,40,151,171,3,168,176,153,87,91,162,88,211,31,122,54,222,28,122,26,164,184,40,175,239,191,134,37,152,135,154,94,28,252,99,46,94,
2698 171,57,41,0,162,33,41,222,248,194,224,93,188,94,222,215,227,52,60,120,35,46,216,58,252,156,98,251,84,240,217,43,65,183,246,148,220,234,16,168,122,182,127,3,102,251,35,89,43,2,138,78,148,8,170,83,29,144,107,163,132,137,227,15,122,45,15,103,45,157,166,
2699 216,123,54,217,14,64,187,227,136,124,239,223,192,195,232,81,251,179,67,7,173,61,40,0,178,41,10,176,213,244,182,173,223,183,79,174,8,48,8,70,120,127,242,61,150,60,162,8,2,15,37,223,255,15,182,78,14,177,28,184,105,49,219,31,65,78,42,18,160,86,179,160,227,
2700 163,132,115,69,4,68,164,24,172,174,171,98,235,255,74,32,198,163,204,251,215,104,100,154,57,13,243,6,67,71,159,238,191,59,87,175,209,156,21,0,209,160,24,111,122,97,240,46,65,199,203,60,247,28,68,98,33,120,125,240,9,197,246,73,187,106,89,98,78,128,63,187,
2701 203,2,213,238,237,143,217,254,72,78,138,128,77,106,204,14,200,13,17,32,74,113,168,46,49,192,154,133,202,37,254,237,31,223,10,3,238,14,208,113,242,38,254,209,204,255,129,221,147,79,142,28,178,245,228,234,245,201,229,242,205,215,185,117,108,171,125,192,
2702 187,83,110,66,32,13,27,53,219,14,66,139,253,160,114,55,237,77,95,6,161,110,54,196,35,217,153,15,16,199,108,127,4,145,39,2,104,98,224,70,245,218,6,103,179,8,160,183,251,186,229,211,65,203,43,99,146,104,47,151,183,135,159,39,239,39,175,140,144,214,253,
2703 71,195,146,255,192,67,221,191,163,77,230,80,0,100,101,20,64,130,163,79,245,223,73,91,56,202,187,40,53,172,4,100,203,192,223,216,240,8,69,14,120,73,49,91,10,0,41,150,88,244,202,170,3,170,158,241,63,138,189,253,145,124,17,1,155,80,4,124,144,136,40,193,
2704 210,57,21,48,187,186,88,177,247,124,103,228,5,176,4,199,64,208,104,101,189,94,91,32,64,239,246,137,13,182,126,239,80,46,95,151,92,174,223,120,29,111,140,237,26,171,183,191,65,75,57,228,64,195,71,131,158,78,216,99,218,162,216,62,233,47,90,7,198,79,93,
2705 12,113,127,22,245,6,80,123,164,47,246,246,71,242,73,4,168,84,29,144,109,34,128,214,252,151,146,251,254,172,37,202,245,251,31,247,15,193,46,211,102,208,243,242,90,8,211,148,129,104,64,116,214,63,51,112,79,174,95,147,57,47,0,104,248,134,156,200,95,16,79,
2706 94,118,17,62,109,14,180,117,248,121,112,134,173,138,237,23,141,2,240,51,167,101,199,200,96,149,179,253,59,176,183,63,146,111,34,64,181,234,128,121,89,85,29,64,107,254,105,232,223,168,23,20,123,207,205,3,143,65,64,244,1,39,51,249,79,87,192,186,254,221,
2707 103,235,243,76,160,0,200,1,6,15,88,234,71,142,216,158,211,26,229,93,100,180,57,16,53,254,175,15,62,169,220,129,175,170,128,146,31,124,11,226,162,152,217,75,1,41,200,246,215,98,182,63,146,183,34,32,127,171,3,104,205,255,210,89,229,48,127,122,169,98,239,
2708 73,71,253,54,88,247,129,65,102,217,31,199,107,192,111,11,143,29,92,223,115,127,62,92,139,121,33,0,232,140,128,189,15,116,222,41,69,99,126,154,220,33,7,131,80,0,7,38,222,134,30,87,139,98,251,101,248,228,249,96,188,242,146,140,93,10,192,108,127,4,73,129,
2709 8,200,195,234,128,68,232,95,7,103,47,155,174,216,123,134,165,32,188,54,240,232,49,207,95,222,67,69,87,168,133,182,205,163,191,241,76,4,92,40,0,114,8,75,151,187,191,111,231,196,3,186,2,185,101,129,26,136,197,37,120,165,127,61,171,47,85,138,146,31,126,
2710 11,132,217,51,32,30,201,172,165,0,204,246,71,144,20,137,0,21,171,3,50,117,57,128,6,61,207,93,57,3,10,20,12,253,191,59,242,34,140,120,251,64,203,201,203,252,167,243,99,236,131,222,214,250,231,6,30,207,151,107,144,203,167,27,110,255,131,93,247,4,156,145,
2711 113,26,230,145,165,14,121,3,244,186,90,97,215,216,107,202,157,128,202,114,40,249,209,127,38,154,3,101,202,82,64,74,178,253,49,236,143,32,255,156,24,152,251,203,1,225,168,4,43,230,86,64,93,109,137,98,239,57,238,31,132,119,71,55,202,14,253,83,104,215,191,
2712 134,103,7,110,15,185,35,145,124,185,254,242,74,0,120,38,130,142,230,77,195,191,20,100,86,4,36,68,128,30,222,28,122,70,177,57,1,20,106,100,11,191,112,45,196,125,25,176,20,144,178,108,127,180,254,8,242,33,17,112,44,39,192,148,195,213,1,172,225,15,217,151,
2713 179,151,77,83,244,8,110,234,123,24,130,162,159,181,113,151,131,64,140,255,120,179,115,107,231,91,99,111,230,211,181,199,229,219,205,86,255,116,255,227,174,17,127,189,220,113,193,52,33,208,27,117,193,203,253,235,21,221,175,226,239,126,29,180,167,44,73,
2714 239,172,0,236,237,143,32,105,23,1,55,170,84,29,144,110,17,64,3,156,60,167,129,11,86,205,2,157,192,43,246,190,251,39,222,97,205,218,146,241,254,53,188,38,242,254,163,61,63,137,134,164,188,186,238,242,78,0,68,2,162,248,254,35,61,63,230,181,242,191,186,
2715 129,47,128,122,203,110,56,98,217,169,216,126,105,10,140,80,250,179,239,179,159,32,165,225,34,76,73,111,127,52,254,8,114,178,145,128,92,19,1,81,242,92,59,99,73,45,76,43,47,80,236,61,157,97,27,75,252,147,187,238,79,209,23,105,161,111,219,196,131,131,7,
2716 44,173,249,118,205,113,249,120,163,117,189,109,218,49,124,208,250,60,173,247,148,11,141,4,208,40,128,39,226,84,108,191,180,203,22,65,201,247,190,9,241,96,56,165,199,3,179,253,17,36,3,69,64,14,85,7,208,146,191,186,105,165,176,102,65,181,162,239,75,147,
2717 178,29,33,11,121,30,203,235,248,71,187,196,6,221,145,241,253,15,119,255,26,226,249,119,189,229,165,0,160,161,168,125,15,118,221,30,13,73,110,185,101,129,2,167,5,107,96,156,92,128,27,20,221,183,130,207,95,147,232,18,232,243,167,196,96,98,182,63,130,100,
2718 166,8,232,200,145,217,1,180,228,175,164,64,7,23,156,50,83,209,199,0,141,194,190,63,185,141,149,104,203,118,186,140,2,52,60,55,112,135,115,216,103,207,199,107,141,203,215,155,204,210,229,30,110,121,101,248,215,186,66,249,81,0,122,225,237,159,120,27,26,
2719 172,123,21,221,183,146,31,255,39,8,11,235,212,143,4,168,109,252,177,183,63,130,200,22,1,133,42,86,7,164,74,4,28,47,108,186,112,213,44,40,52,104,21,123,95,119,196,1,27,251,30,34,158,63,207,74,180,101,57,113,122,14,172,61,238,61,13,207,41,216,225,13,5,
2720 64,246,112,248,241,222,251,93,163,254,38,185,249,0,244,194,227,53,28,108,236,125,144,37,6,42,118,82,74,75,160,236,127,111,1,141,65,79,211,102,85,51,254,234,133,253,247,66,7,246,246,71,144,164,249,112,78,64,246,85,7,68,201,243,235,140,197,181,48,187,186,
2721 72,209,247,125,185,111,61,171,196,162,145,88,153,15,111,224,4,46,122,224,161,238,155,163,193,44,159,165,140,2,64,30,33,79,52,114,240,225,238,155,5,61,47,123,245,71,224,116,96,9,154,152,26,85,18,237,202,37,80,114,243,255,133,120,56,172,124,127,0,85,179,
2722 253,137,241,223,92,143,217,254,8,162,80,36,64,237,217,1,85,37,234,136,0,186,238,191,112,70,25,172,93,84,163,236,51,198,178,19,14,78,190,3,198,36,66,255,250,2,1,58,223,26,187,191,127,143,185,33,159,175,47,46,223,111,176,174,119,199,119,13,238,183,60,154,
2723 204,82,0,189,16,15,78,188,3,135,205,219,21,221,183,130,235,174,132,130,207,95,11,113,175,95,97,207,95,205,108,255,122,92,243,71,16,213,68,128,10,203,1,103,38,34,1,17,5,69,64,84,138,65,101,177,1,46,88,53,83,209,99,65,19,254,94,234,253,43,240,156,0,114,
2724 31,50,196,243,135,128,51,50,176,255,161,238,59,243,253,218,202,123,1,64,231,4,236,250,99,219,207,130,174,136,73,110,135,64,122,33,210,11,242,165,222,7,193,30,154,84,116,255,74,110,185,9,244,23,156,77,68,128,47,249,239,26,142,96,182,63,130,100,187,8,80,
2725 169,58,160,154,137,128,228,151,28,69,98,252,11,244,90,248,228,105,115,192,160,19,20,61,14,47,244,62,0,142,176,5,4,141,252,124,2,173,129,131,3,15,119,255,208,59,25,244,160,0,64,192,57,226,183,29,125,170,255,182,100,162,0,244,130,116,69,108,240,108,207,
2726 125,228,102,85,46,100,175,209,233,152,193,54,92,124,46,196,61,222,68,203,96,57,15,16,127,0,184,242,82,40,191,231,231,152,237,143,32,217,44,2,44,199,68,128,194,145,128,171,207,170,131,89,85,197,172,85,175,220,85,71,42,32,78,204,33,40,49,40,250,253,119,
2727 140,189,202,50,255,141,124,161,124,227,111,228,97,172,193,241,124,235,107,195,175,227,21,133,2,224,4,77,47,14,189,96,106,116,188,170,77,162,77,48,109,16,212,108,61,192,134,82,40,137,166,168,16,202,239,190,3,138,190,245,101,58,64,27,226,129,224,73,231,
2728 5,80,175,159,182,24,214,159,125,26,84,109,184,155,253,84,220,248,99,111,127,4,73,125,36,64,225,229,0,58,152,231,42,34,2,78,91,88,195,62,135,46,9,156,172,16,160,165,126,244,223,207,169,41,129,79,159,179,0,106,202,140,138,126,239,17,111,47,188,218,255,
2729 40,155,199,34,219,216,241,26,136,134,36,203,174,123,219,111,141,199,240,90,66,1,240,1,196,136,4,59,255,208,254,3,49,28,179,201,95,10,0,208,243,70,216,50,248,4,12,120,58,148,221,65,65,128,226,255,190,17,42,30,188,11,244,231,158,145,16,2,62,63,107,29,204,
2730 26,249,208,208,29,221,162,34,196,67,225,196,223,145,159,218,69,117,80,118,231,109,80,241,215,187,128,159,59,75,97,227,255,193,108,127,180,254,8,146,30,17,160,92,117,128,192,105,96,221,242,233,112,237,217,243,97,254,180,18,118,91,71,162,18,91,211,167,
2731 70,62,22,63,182,145,223,211,80,63,53,250,244,239,202,139,12,112,241,234,217,112,245,153,117,172,230,95,73,232,152,223,167,187,255,0,33,41,192,202,254,228,66,27,191,29,121,162,255,86,75,151,123,2,175,162,99,231,27,15,193,223,49,119,186,70,143,60,217,255,
2732 147,115,191,187,228,177,176,87,222,120,94,58,139,58,34,133,225,169,174,123,224,199,167,221,15,5,66,177,162,251,168,59,117,37,84,144,45,218,209,11,225,125,135,32,210,218,5,210,132,133,24,251,196,67,128,214,245,115,213,149,160,93,186,0,244,231,156,14,250,
2733 211,87,179,164,63,165,57,145,237,143,97,127,4,73,179,8,104,133,191,93,191,10,102,148,232,21,123,255,233,21,5,100,155,7,118,34,46,134,45,94,152,116,248,193,19,136,48,99,79,195,2,28,17,10,116,157,191,178,212,0,115,170,139,97,54,217,120,78,157,7,193,43,
2734 253,143,64,191,187,131,60,75,229,151,18,210,134,63,99,13,142,205,245,207,244,63,131,87,15,10,128,143,165,254,233,190,199,235,206,173,190,118,218,138,178,79,71,131,242,18,98,232,196,192,81,111,31,188,216,251,87,248,230,178,159,170,178,159,218,229,139,
2735 216,198,30,6,212,227,103,229,130,84,0,8,160,41,44,80,245,24,97,111,127,4,201,188,72,128,210,34,128,66,215,241,19,107,249,213,44,2,112,188,92,144,227,64,209,129,62,31,7,173,172,218,49,246,10,24,5,249,235,254,26,94,3,98,72,180,236,252,67,219,247,164,40,
2736 198,254,63,228,176,226,33,248,48,98,36,70,151,2,190,151,236,82,0,189,96,247,143,111,133,221,227,91,84,223,103,218,48,136,54,15,226,202,74,82,96,252,247,98,182,63,130,100,168,8,80,178,58,224,31,161,30,190,129,124,22,221,82,97,252,39,2,35,240,124,207,253,
2737 228,115,181,178,187,253,49,135,172,64,128,195,79,244,221,98,233,118,143,225,21,131,2,224,223,98,238,112,141,29,121,178,239,7,218,130,100,2,36,26,208,242,122,216,216,251,144,242,249,0,105,34,145,237,143,97,127,4,201,88,17,160,112,117,64,186,8,75,33,120,
2738 162,243,247,224,139,186,65,208,200,127,14,83,227,111,106,114,188,80,255,204,192,179,120,165,160,0,56,105,14,63,222,251,220,224,62,243,179,201,148,6,210,132,149,72,44,124,226,66,206,122,227,143,189,253,17,36,59,34,1,89,46,2,54,246,61,8,189,174,22,150,
2739 84,45,219,184,9,28,157,244,55,186,237,174,150,31,96,232,31,5,192,212,110,40,114,71,237,250,99,251,15,66,158,232,16,29,25,41,91,129,114,122,48,249,6,225,233,238,123,21,237,15,144,90,227,191,151,213,249,99,216,31,65,178,41,18,16,202,202,239,177,119,252,
2740 13,216,101,218,156,212,186,63,133,150,116,31,120,168,235,59,246,126,175,5,175,14,20,0,83,198,57,226,183,239,190,183,253,38,65,199,199,146,49,124,244,66,62,98,222,1,111,14,61,149,149,198,159,102,251,163,231,143,32,89,36,2,88,179,160,86,48,101,89,36,160,
2741 207,221,198,146,167,169,227,148,204,186,191,190,88,11,29,111,142,221,215,242,202,200,91,120,85,160,0,144,13,185,136,182,117,189,99,250,189,190,40,185,81,150,116,94,192,235,131,79,66,131,117,79,118,121,254,88,234,135,32,89,43,2,254,227,229,86,176,248,
2742 35,89,177,223,174,176,13,254,214,241,91,136,198,194,192,37,81,239,47,232,121,234,188,213,239,189,191,243,103,120,53,160,0,72,154,157,247,180,253,175,173,207,187,95,48,200,191,40,53,228,80,107,52,28,60,221,245,71,24,243,245,103,252,119,110,125,249,8,51,
2743 254,186,2,236,240,135,32,217,40,2,138,136,8,104,157,244,192,247,183,116,64,40,195,39,222,70,99,17,120,188,243,183,96,14,140,129,150,147,95,202,168,225,52,180,121,145,111,251,111,91,190,225,183,133,130,120,37,160,0,72,154,144,39,26,125,239,215,205,223,
2744 136,137,49,135,38,137,210,64,58,47,192,39,122,224,209,142,95,131,55,234,202,216,239,59,209,58,10,77,47,30,2,45,107,239,139,214,31,65,178,149,98,189,0,187,7,29,240,199,189,131,25,189,159,47,245,61,8,109,246,195,96,16,146,43,99,214,23,9,112,228,169,254,
2745 91,70,14,219,218,240,236,163,0,80,208,40,58,251,14,61,214,251,93,93,65,114,189,147,244,156,1,70,125,253,240,183,142,223,129,20,23,51,238,123,74,17,17,234,159,218,199,166,36,106,56,52,254,8,146,11,34,224,241,250,49,104,24,207,204,225,119,219,70,55,178,
2746 65,63,201,38,253,209,138,173,161,131,214,167,223,127,164,231,17,60,235,40,0,20,231,200,147,125,47,246,238,152,120,32,153,210,64,10,157,102,213,100,219,207,198,7,103,26,131,123,187,193,222,103,6,65,143,77,34,17,36,39,30,242,68,199,135,197,24,252,245,253,
2747 225,140,219,183,102,242,28,220,212,191,158,56,70,201,37,253,241,90,14,124,214,80,251,123,119,181,96,183,63,20,0,234,64,39,72,189,123,103,243,143,236,3,190,131,201,228,3,48,17,64,212,238,182,177,77,240,222,232,75,153,243,253,164,24,244,110,107,7,142,231,
2748 241,100,35,72,14,81,160,229,97,239,160,19,186,172,254,140,217,39,58,225,239,111,157,191,103,9,11,201,36,253,209,72,37,39,112,254,237,191,107,253,170,199,20,240,224,217,70,1,160,26,97,111,52,252,222,175,155,191,34,69,98,214,100,90,5,83,181,75,151,3,54,
2749 245,173,135,122,235,238,140,248,110,206,17,59,56,134,108,192,235,208,251,71,144,92,139,2,248,34,34,108,235,179,101,196,254,56,66,22,88,223,254,75,8,136,94,16,184,228,42,172,104,68,246,224,134,238,239,13,236,49,55,226,153,70,1,160,58,19,173,206,129,125,
2750 127,233,252,166,96,224,227,201,228,200,81,213,75,43,3,158,236,188,27,122,221,173,105,255,94,214,158,73,16,67,81,204,250,71,144,28,132,142,250,61,58,150,254,142,164,65,209,15,27,218,239,4,115,96,20,116,156,252,78,127,52,114,64,235,253,123,119,76,60,120,
2751 232,241,222,39,240,12,163,0,72,25,77,47,13,189,217,242,202,240,255,232,146,236,15,64,251,92,211,190,215,27,218,126,201,134,95,164,19,247,152,3,79,44,130,228,176,0,24,243,132,210,90,18,72,19,159,105,185,31,109,243,107,224,11,18,86,92,38,218,2,30,108,253,
2752 222,125,59,126,223,118,75,150,54,89,69,1,144,205,236,190,183,227,215,163,71,237,155,244,73,38,5,210,186,87,218,4,227,225,214,255,97,63,211,69,216,19,196,204,127,4,201,213,135,189,70,3,254,136,4,193,168,148,182,125,120,182,251,62,168,183,236,78,58,227,
2753 159,23,56,136,248,37,211,187,191,108,250,178,223,22,10,227,217,69,1,144,114,196,176,4,239,252,162,233,91,238,137,96,179,160,79,230,80,198,217,208,11,147,127,16,30,110,251,5,4,68,95,90,190,79,28,147,103,17,36,167,137,39,229,115,39,199,171,3,143,192,110,
2754 211,102,40,16,138,146,122,31,186,236,202,235,184,200,206,63,180,253,159,201,118,215,40,158,85,20,0,105,195,51,17,112,191,251,171,230,47,74,209,184,45,153,161,65,20,26,18,163,161,177,71,219,127,197,166,8,166,26,193,40,64,60,142,177,52,4,201,73,227,31,
2755 167,209,70,13,232,210,16,229,123,103,228,69,120,115,232,25,48,36,233,249,179,231,100,137,142,54,251,249,126,231,91,99,187,241,172,162,0,72,59,163,71,108,93,251,254,210,249,53,94,203,75,201,54,206,163,161,177,38,219,1,54,66,56,22,79,109,168,174,168,166,
2756 20,112,45,13,65,114,19,137,40,128,234,66,29,20,166,184,199,199,158,241,55,224,229,190,135,137,240,48,36,85,235,207,140,63,29,242,179,117,236,190,131,235,187,215,227,25,69,1,144,49,52,189,52,180,181,225,249,129,155,13,165,186,164,223,139,134,200,222,159,
2757 124,15,158,233,254,19,164,210,34,87,45,172,5,13,143,151,4,130,228,34,81,41,6,43,107,139,83,90,228,115,216,188,13,158,35,207,49,158,211,2,167,73,238,217,66,199,251,78,116,184,222,216,241,251,214,219,176,217,15,10,128,140,99,223,95,187,30,104,127,125,244,
2758 207,180,31,181,18,34,128,206,196,166,163,49,83,69,245,226,90,40,170,46,134,152,136,55,23,130,228,26,60,199,193,69,11,42,83,246,121,116,242,233,19,93,247,176,82,103,94,147,92,115,49,58,225,47,232,138,180,188,249,211,250,175,134,220,105,204,98,68,1,128,
2759 124,28,49,162,74,183,255,182,245,150,201,118,215,230,100,103,6,80,232,114,192,187,35,47,178,65,25,169,128,142,253,157,123,206,66,16,195,81,60,153,8,146,67,208,210,191,101,213,133,112,206,156,178,148,124,30,29,236,243,88,199,93,16,139,199,136,241,79,238,
2760 89,72,219,252,70,2,226,196,27,63,173,191,222,109,10,184,240,108,162,0,200,88,200,133,26,219,114,219,209,175,186,70,253,135,105,200,42,25,232,122,25,77,154,121,103,248,5,216,60,240,120,74,246,127,233,149,171,193,88,94,8,49,9,163,0,8,146,51,207,37,114,
2761 63,127,235,204,217,228,121,162,254,35,191,205,113,24,214,183,255,2,164,152,200,250,156,36,245,12,228,52,52,227,63,176,231,190,142,207,155,26,29,125,120,38,81,0,100,60,62,107,200,251,206,157,205,55,132,189,209,1,170,94,147,23,1,5,176,101,240,137,148,136,
2762 128,194,234,98,88,245,185,51,18,29,1,17,4,201,122,188,97,9,46,93,88,5,215,173,168,77,137,231,191,190,245,23,16,149,34,73,183,248,165,9,213,196,137,138,239,188,167,237,27,237,175,143,238,195,51,137,2,32,107,24,111,118,140,190,241,211,250,235,136,253,182,
2763 39,51,51,224,67,34,96,40,53,34,96,217,149,171,97,193,249,75,33,226,199,254,26,8,146,173,208,167,78,32,42,193,156,50,3,220,117,217,98,224,53,234,166,255,29,247,252,163,177,228,141,63,133,182,249,109,121,121,248,135,77,47,13,109,196,179,137,2,32,235,24,
2764 61,106,111,222,125,111,251,231,121,29,31,212,40,33,2,248,2,120,125,232,73,216,212,247,176,202,79,14,13,156,253,159,151,192,172,181,117,40,2,16,36,75,241,19,227,95,83,168,131,245,159,89,9,179,74,13,42,123,254,135,96,125,219,47,21,241,252,41,116,192,15,
2765 49,254,119,237,184,187,237,126,60,147,40,0,178,150,230,77,195,59,118,254,161,237,27,188,150,139,37,219,102,151,77,16,228,141,176,117,248,89,213,171,3,180,70,45,92,248,163,79,193,194,139,150,65,36,16,134,120,12,27,4,32,72,182,64,195,254,75,170,10,225,
2766 169,207,175,134,85,211,139,85,253,44,154,237,255,80,219,255,18,207,63,172,152,231,63,124,200,246,200,182,187,90,254,31,62,119,80,0,100,191,8,216,56,244,82,253,51,3,223,165,77,44,146,45,194,61,158,24,248,238,200,11,240,116,247,31,33,14,234,37,235,9,6,
2767 45,124,226,7,151,195,25,95,63,143,117,8,148,34,88,125,131,32,153,76,140,220,167,158,176,8,87,47,173,134,23,190,116,42,44,175,41,82,245,243,14,153,183,193,163,29,191,97,67,126,4,141,50,158,255,120,179,99,211,219,255,211,248,159,216,148,20,5,64,206,176,
2768 255,161,174,245,205,155,134,126,202,68,64,146,28,23,1,187,198,94,131,199,59,126,11,98,44,162,234,190,175,248,204,90,184,248,167,215,64,65,101,17,68,131,17,60,153,8,146,97,80,191,34,44,198,128,22,239,220,126,193,2,88,255,217,149,80,89,160,85,245,51,247,
2769 140,191,14,127,235,248,29,113,14,98,202,24,255,2,129,142,90,127,119,243,173,71,190,22,112,132,209,219,64,1,144,59,196,165,56,108,187,171,245,247,45,47,15,255,198,80,162,76,36,192,40,20,193,254,137,183,217,218,91,72,10,168,186,255,51,214,204,129,203,127,
2770 117,253,137,188,0,12,205,33,72,230,224,33,246,114,122,137,30,30,189,254,20,248,239,117,115,85,255,188,119,70,94,128,103,186,238,101,221,253,146,173,243,63,110,252,29,67,190,3,91,110,61,250,185,160,51,18,196,51,138,2,32,247,68,64,156,137,128,59,90,94,
2771 25,254,179,18,141,130,40,180,99,96,131,117,47,252,165,229,103,224,137,56,84,221,127,218,37,240,226,219,175,129,83,191,116,14,19,0,82,68,196,147,138,32,105,68,138,197,153,241,191,124,113,21,108,250,242,169,112,209,252,10,213,63,243,149,129,71,96,99,223,
2772 67,32,112,58,34,0,248,164,223,143,118,249,11,56,195,245,239,252,162,233,51,228,167,7,207,42,10,128,220,22,1,191,105,249,225,240,251,214,13,74,44,7,80,104,199,192,46,103,35,252,169,249,199,96,14,142,169,186,255,52,145,113,245,23,206,34,66,224,106,40,174,
2773 45,133,72,0,151,4,16,36,29,4,163,49,208,104,52,240,255,46,156,15,143,17,207,127,70,137,186,153,254,116,157,255,169,174,63,192,27,131,79,177,100,228,100,123,251,31,55,254,33,79,164,117,243,173,71,62,61,217,225,178,226,89,69,1,144,7,34,0,224,237,255,109,
2774 250,142,169,217,241,152,174,72,153,72,0,45,17,28,245,246,193,125,141,183,193,160,167,83,245,239,48,99,205,92,184,252,215,55,192,130,243,151,64,52,24,197,249,1,8,146,194,231,7,77,244,91,82,93,8,207,124,97,53,252,215,57,115,85,31,240,19,20,125,240,112,
2775 219,47,216,124,18,26,117,212,40,240,137,204,248,187,35,237,196,248,127,106,178,205,101,194,51,139,2,32,111,8,56,194,113,114,225,127,107,162,197,249,24,205,124,85,74,4,216,195,22,248,115,243,79,160,217,118,64,245,239,96,44,43,128,243,110,190,2,214,125,
2776 247,18,208,21,234,48,65,16,65,84,38,44,197,32,68,182,111,172,157,197,66,254,103,206,42,85,253,51,237,33,51,121,166,252,20,26,44,187,153,241,87,130,99,158,127,223,230,219,142,92,75,140,255,24,158,89,20,0,121,71,208,25,1,34,2,110,154,104,117,62,166,47,
2777 82,98,57,32,14,58,78,15,33,49,192,212,250,110,211,150,148,124,143,69,151,174,128,203,127,117,3,204,60,117,30,68,3,17,156,35,128,32,74,123,253,64,107,251,69,152,81,108,128,245,159,89,193,58,251,149,24,4,213,63,119,216,219,13,127,106,186,21,250,220,173,
2778 44,233,88,17,227,111,96,158,127,31,121,246,93,73,140,255,0,158,93,20,0,249,44,2,226,91,110,61,122,211,120,139,67,33,17,0,172,25,7,13,208,61,211,125,47,188,220,191,158,60,60,212,207,216,47,157,89,14,151,222,241,105,56,227,155,231,131,160,19,216,178,0,
2779 130,32,201,67,7,249,208,245,254,207,175,154,14,175,126,229,52,184,98,113,117,74,62,183,201,182,15,238,107,250,17,88,130,38,48,240,133,202,121,254,238,72,219,230,219,142,94,65,140,63,14,247,65,1,128,4,156,97,34,2,142,220,52,214,104,87,44,39,128,102,231,
2780 234,120,3,188,53,244,12,108,104,187,19,2,162,79,253,47,66,84,199,242,107,79,133,203,239,188,30,102,174,153,131,209,0,4,73,198,235,143,39,188,254,233,197,122,248,235,181,203,225,79,87,45,131,154,34,93,74,62,251,189,209,151,224,225,182,95,66,80,12,128,
2781 142,51,28,139,65,40,96,252,19,9,127,196,243,119,246,227,25,70,1,128,156,16,1,145,248,43,223,123,255,91,109,175,141,254,89,169,234,128,227,189,2,14,155,183,49,37,111,14,140,166,228,187,148,207,171,130,75,127,254,105,56,235,166,11,65,87,160,99,66,0,176,
2782 109,0,130,156,52,33,49,198,214,251,255,207,154,153,240,234,87,215,194,53,203,106,82,242,185,98,44,10,207,246,252,137,181,26,231,200,243,67,137,214,190,20,109,129,64,141,255,209,99,9,127,184,230,143,2,0,249,167,155,47,28,131,109,191,105,254,97,203,43,
2783 195,191,99,205,130,20,130,138,0,90,25,240,135,198,91,216,208,142,148,160,209,192,210,79,173,134,43,126,243,57,152,119,238,98,16,35,81,144,162,216,220,11,65,254,21,137,186,126,17,22,87,21,178,210,190,187,175,92,194,6,250,164,2,71,216,10,247,55,255,20,
2784 182,143,190,114,172,204,143,87,228,125,89,147,159,65,239,62,52,254,40,0,144,127,3,13,251,189,119,87,203,237,68,4,252,92,137,217,1,199,161,55,52,109,20,244,215,214,59,88,120,47,85,148,76,47,131,11,110,187,18,46,184,229,74,40,158,86,138,93,4,17,228,163,
2785 238,123,178,249,35,18,104,121,14,110,62,183,14,94,249,202,105,112,201,130,202,148,125,126,175,171,5,254,216,120,51,116,56,143,42,86,230,199,140,127,161,0,19,109,206,119,55,126,231,224,213,196,248,99,157,127,134,33,224,33,200,204,167,193,182,223,180,252,
2786 154,136,1,247,170,235,230,222,31,241,139,138,24,77,45,167,131,88,92,130,23,122,255,2,38,223,32,124,113,209,247,216,76,129,84,48,119,221,34,152,182,106,54,180,191,90,15,93,239,180,178,101,1,58,113,16,65,242,29,218,195,95,36,55,251,165,11,171,224,182,243,
2787 234,96,69,109,81,74,63,159,86,11,209,206,126,116,154,31,45,37,86,10,58,213,143,14,246,161,189,253,177,189,47,10,0,100,138,145,0,34,2,30,112,12,120,29,231,255,112,249,99,98,36,166,167,243,4,146,133,134,245,140,124,33,236,25,127,3,76,254,65,248,198,178,
2788 31,195,204,194,249,41,249,78,250,34,3,156,246,213,115,97,238,185,139,160,249,133,67,48,86,63,200,58,11,242,58,188,12,145,252,67,36,162,62,16,149,88,67,159,31,174,171,131,79,47,175,73,233,231,135,165,32,188,212,247,32,19,0,90,78,207,54,69,208,36,194,254,
2789 195,7,45,27,182,254,188,233,187,196,248,227,218,95,134,130,75,0,25,78,195,243,131,207,238,252,67,251,117,130,158,119,241,130,114,167,139,134,249,134,60,93,240,199,134,155,225,176,121,123,74,191,83,229,252,26,184,248,103,215,192,249,183,94,9,101,179,43,
2790 33,26,8,99,39,65,36,111,136,29,203,238,47,212,241,240,163,243,231,195,230,175,174,77,185,241,31,39,226,255,222,166,219,96,231,216,107,108,121,144,87,104,189,95,67,140,63,93,186,108,123,109,228,174,87,126,112,248,219,1,39,78,245,195,8,0,146,20,205,27,
2791 135,222,242,154,131,87,92,118,199,234,141,250,18,237,108,49,164,204,61,69,111,252,160,228,135,71,219,127,13,3,158,78,184,126,193,77,202,121,1,39,193,188,117,139,96,214,105,243,160,251,237,22,232,120,179,9,2,54,47,8,6,29,139,10,32,72,174,65,227,119,1,
2792 226,12,235,137,144,255,194,170,25,108,106,95,93,185,49,229,251,241,190,249,61,120,177,231,175,224,139,186,20,235,236,199,140,63,185,111,181,70,62,222,180,113,248,230,29,191,107,249,115,28,83,125,80,0,32,202,48,176,199,124,232,245,159,28,189,232,83,191,
2793 62,109,83,97,165,126,77,84,33,17,192,107,180,192,241,2,188,59,242,34,235,250,245,149,197,55,195,204,162,249,169,187,0,13,90,88,241,153,181,48,239,19,139,161,227,245,70,232,219,209,1,17,95,24,4,163,150,13,58,65,144,92,128,54,242,161,92,180,160,18,254,
2794 251,156,185,112,70,10,90,248,254,35,52,228,255,114,255,6,230,245,243,156,192,28,0,165,224,181,28,221,252,59,239,105,187,177,233,165,161,151,240,140,103,7,184,4,144,69,152,26,29,253,47,126,107,255,165,214,94,207,219,74,150,9,210,140,95,234,9,244,185,90,
2795 225,15,141,55,195,190,137,183,82,254,221,10,171,138,89,23,193,43,127,243,57,88,120,209,50,230,46,177,110,130,232,70,32,89,12,173,231,167,217,253,167,205,44,129,71,174,91,9,79,125,110,85,90,140,255,144,183,139,221,219,219,70,55,129,142,215,131,160,81,
2796 206,247,163,13,126,196,144,100,122,239,55,205,87,162,241,71,1,128,168,136,103,34,104,223,124,203,145,79,15,236,53,111,160,173,131,149,116,146,169,71,16,146,2,240,68,231,221,240,120,231,111,193,27,117,165,252,251,149,205,169,132,115,191,127,25,92,246,
2797 203,235,96,238,217,11,32,38,197,201,195,37,138,141,132,144,172,130,102,246,123,195,18,44,175,41,130,63,95,179,140,13,238,185,108,81,85,90,246,133,26,253,123,27,111,133,33,79,183,162,37,126,20,173,129,117,247,107,220,114,219,145,139,219,54,143,238,197,
2798 51,159,93,224,18,64,22,226,179,134,34,175,221,114,228,219,151,252,244,148,193,149,215,206,249,173,68,60,140,152,164,140,133,228,137,103,192,243,60,236,31,223,10,3,238,14,248,226,162,255,134,149,149,103,166,252,59,86,47,158,6,23,254,248,42,48,119,152,
2799 160,125,115,3,152,26,135,89,91,97,173,94,0,192,165,1,36,131,61,126,154,221,79,13,255,55,215,206,130,235,86,214,18,97,157,30,63,203,30,154,132,23,123,255,2,245,214,61,172,157,175,158,55,40,250,254,180,204,207,220,238,218,242,214,29,13,223,112,142,248,
2800 157,120,246,81,0,32,41,130,150,4,110,251,77,203,239,156,195,190,254,79,252,215,178,71,52,92,188,84,138,42,149,73,79,91,8,23,130,53,56,14,127,105,253,25,92,50,235,122,184,182,238,27,138,174,25,158,44,181,203,103,178,109,178,109,12,58,223,106,6,83,195,
2801 16,72,145,40,8,122,45,38,11,34,25,101,248,105,23,191,149,211,138,225,171,167,206,128,207,46,159,6,70,109,250,2,172,135,204,219,96,83,223,122,112,134,45,172,236,87,73,88,166,127,137,14,58,182,142,221,183,235,158,182,219,2,88,230,135,2,0,73,15,245,207,
2802 12,108,116,12,250,6,47,251,249,234,103,140,101,186,37,74,37,7,82,104,227,160,56,196,224,237,225,231,160,203,217,0,95,88,244,61,88,92,182,58,45,223,115,218,202,89,108,51,119,142,67,247,214,102,24,171,31,98,205,132,4,131,64,132,0,174,100,33,105,16,225,
2803 113,128,160,152,184,223,78,155,81,202,12,63,237,217,175,227,211,119,61,186,194,54,120,165,127,3,28,156,124,143,149,246,41,217,216,135,194,9,28,240,58,46,124,232,241,222,31,238,251,107,215,195,216,213,19,5,0,146,102,6,247,91,142,190,120,211,129,11,174,
2804 249,253,218,191,85,47,41,189,50,236,83,110,205,92,3,28,155,37,48,234,235,131,63,55,255,24,46,153,117,3,92,53,239,43,105,137,6,176,136,192,178,25,108,115,12,88,161,251,221,86,24,121,191,31,130,110,63,8,58,45,123,56,33,136,218,72,196,242,211,172,126,26,
2805 218,63,191,174,2,190,186,102,38,92,186,176,18,248,52,71,164,14,91,118,192,43,125,27,88,228,206,32,20,40,186,214,207,28,2,35,15,17,191,56,178,253,119,45,223,232,120,99,108,39,94,9,40,0,144,12,193,53,234,55,111,250,238,251,215,92,120,219,138,223,45,189,
2806 124,230,109,180,87,128,82,121,1,20,186,134,24,139,199,224,141,161,167,160,221,113,4,110,88,248,29,88,86,126,90,218,190,111,197,252,106,56,231,59,23,195,202,207,172,133,254,157,157,48,176,183,27,188,19,174,132,135,162,21,0,112,117,0,81,152,40,185,159,
2807 66,196,227,47,51,106,225,138,197,213,240,21,98,248,207,154,93,154,246,253,114,132,204,196,235,127,4,14,89,182,3,79,126,25,85,104,239,77,215,251,109,253,222,221,219,126,221,252,245,241,22,231,48,94,13,40,0,144,12,35,232,138,72,91,239,104,252,145,189,207,
2808 219,124,246,77,139,255,194,243,154,82,41,162,92,135,61,78,195,177,44,226,68,52,224,39,112,193,204,107,224,154,121,95,131,34,109,89,218,190,51,29,48,180,230,75,103,195,242,107,214,192,208,129,94,38,6,108,125,22,34,126,36,204,19,64,146,134,134,249,143,
2809 175,239,207,45,55,192,213,75,107,224,115,167,76,135,133,149,5,25,177,127,123,199,223,132,45,131,79,48,17,160,134,215,79,239,31,218,214,183,111,231,228,95,119,220,221,122,171,207,18,10,227,85,129,2,0,201,96,14,63,209,247,140,109,192,219,126,233,237,171,
2810 254,86,88,165,95,77,135,9,41,137,142,211,179,220,128,109,35,155,160,221,126,24,62,61,255,70,56,163,230,226,180,126,103,93,145,1,22,95,118,10,44,186,116,37,76,180,140,66,255,174,78,24,111,26,134,144,59,8,156,150,248,69,90,62,63,47,6,77,90,94,154,245,208,
2811 76,254,96,84,34,70,149,103,117,251,55,172,156,198,188,254,50,99,102,60,50,169,8,127,149,120,253,45,246,247,65,224,116,170,120,253,188,142,3,142,215,120,15,172,239,254,225,161,199,122,30,143,99,183,110,20,0,72,118,48,176,199,220,184,113,232,192,5,151,
2812 220,190,234,254,57,103,86,125,77,169,137,130,127,55,14,28,123,232,216,130,19,176,161,237,78,56,90,189,11,62,51,255,63,96,122,225,220,244,218,59,226,177,204,88,51,135,109,222,73,55,139,10,12,147,205,57,108,99,101,132,130,78,0,13,159,39,185,2,196,125,165,
2813 3,152,228,82,162,23,242,170,226,146,222,30,97,81,2,186,114,54,163,88,15,151,18,79,255,51,43,106,225,204,89,165,25,179,143,180,79,199,59,35,47,192,246,209,151,33,32,250,20,79,242,59,33,168,11,5,32,222,126,203,206,63,180,221,72,188,255,122,124,162,162,
2814 0,64,178,12,231,136,223,253,234,15,14,125,125,221,119,150,28,90,251,229,249,247,196,98,241,2,37,151,4,216,5,68,188,15,1,226,80,111,221,13,93,174,70,184,116,246,13,240,201,217,159,83,237,193,52,21,232,242,192,41,215,157,14,43,174,61,149,69,5,134,246,245,
2815 194,120,243,48,4,28,126,34,2,52,44,87,32,167,151,8,136,33,43,154,38,223,120,213,18,35,104,16,56,22,6,207,85,33,64,37,113,68,140,65,132,136,195,34,34,120,214,205,45,135,107,151,213,178,164,190,234,66,93,70,237,107,3,185,199,104,184,127,212,219,199,146,
2816 112,213,184,199,232,253,160,47,18,96,232,160,245,201,237,191,107,253,129,107,212,239,198,39,41,10,0,36,75,161,6,127,239,253,157,15,78,182,187,234,47,188,121,197,250,162,90,131,226,75,2,52,30,64,31,70,81,41,12,175,245,63,10,245,150,221,112,205,188,175,
2817 195,218,154,11,50,226,24,112,2,15,51,79,155,199,182,128,221,199,74,8,135,15,246,129,173,119,18,34,254,48,75,28,164,203,4,185,54,123,128,126,167,202,186,106,217,175,159,87,110,132,154,34,61,76,120,195,160,205,161,99,67,141,62,77,232,163,222,190,142,156,
2818 251,197,213,133,240,201,133,85,112,229,146,106,88,81,83,148,113,251,59,234,235,135,215,137,225,111,178,238,35,215,104,162,42,71,13,88,200,159,211,120,15,61,222,123,219,193,13,61,27,148,118,22,16,20,0,72,154,232,221,62,113,104,178,205,121,254,197,63,57,
2819 229,158,5,23,76,251,191,209,128,168,104,149,0,51,56,26,158,61,156,38,252,195,240,112,251,47,96,213,228,57,44,73,112,94,201,210,140,57,14,5,149,69,176,248,178,149,108,115,141,218,97,244,200,32,17,4,131,172,172,48,26,140,228,140,24,160,227,149,139,170,
2820 139,161,124,158,124,1,80,164,227,225,212,233,37,48,228,52,131,86,151,221,57,20,39,140,62,237,38,73,188,220,185,101,70,184,96,126,5,92,177,168,10,78,159,85,154,214,218,253,143,195,19,113,194,123,163,47,193,110,211,150,99,225,126,35,168,149,153,65,179,
2821 252,157,35,190,195,59,239,110,251,54,241,254,155,240,137,137,2,0,201,49,188,230,144,103,243,45,71,190,125,214,127,44,218,117,198,215,23,222,167,53,242,53,209,160,242,77,188,104,3,33,250,200,109,182,237,135,110,103,3,172,155,126,37,92,62,231,139,80,105,
2822 168,205,168,227,81,54,187,146,109,116,153,192,222,111,97,93,6,105,203,97,154,47,64,155,12,209,92,1,154,60,152,141,203,4,98,88,132,89,107,235,64,107,76,110,104,20,157,83,255,90,135,57,59,141,62,177,250,52,180,79,55,106,224,231,150,27,97,221,156,114,214,
2823 147,159,26,253,162,12,21,53,98,44,10,123,39,222,100,19,58,45,1,147,106,225,126,38,218,137,224,165,253,252,59,223,28,187,119,239,3,157,63,247,89,67,1,124,82,162,0,64,114,152,67,143,245,62,63,114,216,118,248,194,91,87,60,48,99,85,249,149,97,175,72,30,150,
2824 74,119,244,74,44,11,208,222,1,52,97,169,193,178,7,46,158,245,89,184,112,214,103,20,157,65,174,20,149,11,106,216,182,234,115,103,130,99,200,6,19,45,35,48,78,196,128,99,208,10,33,79,144,125,31,42,6,56,234,41,102,184,30,160,201,158,250,34,61,44,190,252,
2825 148,164,223,235,130,186,10,56,117,70,9,52,79,120,192,152,5,149,20,180,92,143,122,249,244,103,161,78,128,165,53,69,112,238,220,114,184,136,120,251,107,166,151,144,63,203,236,239,208,96,221,3,91,135,159,99,115,56,180,42,101,247,31,135,150,247,5,221,145,
2826 161,189,127,238,248,126,211,198,161,215,241,201,152,127,104,226,105,26,183,26,137,68,96,201,146,37,48,52,52,132,103,33,77,208,100,159,117,223,89,114,203,170,235,230,253,138,78,4,22,195,234,181,244,150,226,34,241,196,194,48,163,112,46,92,58,251,115,176,
2827 110,250,229,228,1,167,207,130,168,137,27,44,29,227,48,78,4,129,173,199,12,126,155,7,232,240,37,22,29,32,222,83,38,86,20,68,124,97,88,249,217,181,112,250,55,206,83,228,253,118,15,58,224,107,27,91,88,231,187,76,11,134,196,200,243,139,134,246,169,151,79,
2828 59,241,85,21,232,96,101,109,17,75,230,163,134,159,10,0,109,22,68,112,104,171,109,106,248,59,28,245,108,249,73,167,226,189,193,241,26,208,18,227,111,106,180,63,183,243,158,182,91,45,221,158,73,124,26,166,143,13,27,54,192,77,55,221,132,2,0,73,15,243,214,
2829 213,156,122,254,15,150,61,80,181,176,228,220,136,79,141,104,192,223,161,225,205,104,60,2,243,138,151,194,101,115,62,199,250,7,208,220,129,108,128,46,11,56,134,172,108,48,17,157,73,224,26,177,179,62,3,113,98,124,50,69,16,68,67,81,150,248,119,217,157,215,
2830 17,15,79,57,35,242,203,237,125,240,208,161,17,40,51,164,55,104,120,220,224,71,143,149,180,210,82,197,186,10,35,235,197,127,206,156,50,22,173,152,94,172,207,154,123,143,122,250,239,142,190,8,77,214,253,76,36,39,38,246,169,39,88,104,59,223,104,72,154,60,
2831 250,84,255,79,142,60,217,255,20,205,21,65,80,0,160,0,200,247,104,64,177,86,183,238,255,46,254,241,170,235,231,254,140,184,32,70,53,163,1,204,80,197,194,108,121,96,126,233,10,184,116,246,245,176,182,250,66,214,105,48,155,160,21,5,116,137,128,138,1,123,
2832 159,25,220,99,78,8,121,2,32,145,135,42,71,188,78,238,152,32,72,85,66,161,72,140,127,97,117,49,92,122,199,167,161,116,86,133,178,247,43,17,57,255,181,185,3,222,232,178,64,105,138,68,0,125,52,73,199,12,190,24,35,199,148,28,71,250,217,115,202,140,112,202,
2833 180,98,214,160,135,134,245,235,202,141,105,239,195,63,85,70,188,61,196,240,191,196,150,198,34,228,94,160,235,252,26,21,13,255,9,175,191,193,254,202,238,251,58,110,157,108,119,225,131,23,5,0,10,0,228,159,162,1,167,159,255,253,101,127,172,90,84,114,190,
2834 210,205,131,62,242,58,32,15,191,248,9,33,112,3,17,2,231,103,77,68,224,159,4,129,195,207,162,2,54,34,6,236,3,22,112,143,58,200,159,249,152,87,78,187,204,208,222,3,52,135,128,78,47,84,52,177,144,38,187,5,195,80,54,171,18,46,184,237,83,80,62,183,82,149,
2835 239,71,59,227,221,250,86,23,188,218,110,102,9,116,74,26,221,227,198,158,118,224,163,27,253,127,131,150,131,170,2,45,204,43,47,96,97,125,234,221,175,168,45,134,57,165,134,172,51,248,31,52,252,219,198,18,57,49,180,169,143,218,134,63,225,245,11,228,26,20,
2836 39,234,159,238,255,201,225,39,250,159,70,175,31,5,0,10,0,228,95,69,3,248,117,223,94,124,243,170,235,230,222,65,172,113,169,24,82,127,220,247,7,133,0,77,22,92,91,125,1,8,156,54,171,143,35,245,200,125,22,15,56,137,40,160,101,134,180,236,144,118,39,12,186,
2837 252,16,13,70,217,210,1,125,246,127,80,20,76,73,24,144,91,87,140,136,204,122,206,57,123,33,156,245,173,11,192,88,94,168,234,119,162,79,139,251,15,12,195,67,135,134,193,75,174,139,2,29,7,252,20,34,28,84,79,210,48,190,116,204,208,211,223,83,207,222,72,140,
2838 125,185,81,203,188,251,69,149,133,176,172,166,136,108,133,196,187,47,128,202,2,109,214,223,83,253,158,118,150,12,219,98,59,64,12,127,16,244,156,129,213,244,171,9,39,104,64,208,243,96,106,114,60,179,231,79,29,183,79,118,184,198,240,233,134,2,0,5,0,114,
2839 82,204,60,181,114,217,39,190,183,244,247,51,215,84,92,163,70,223,128,143,19,2,177,184,4,115,139,23,195,5,51,175,101,57,2,106,102,66,167,26,26,13,8,218,125,224,153,116,129,107,196,1,158,113,39,75,52,164,203,9,33,111,8,196,96,132,181,44,102,150,86,147,
2840 16,4,116,57,225,120,43,62,122,191,198,99,177,19,109,141,171,22,77,131,101,87,175,129,185,68,0,164,146,118,179,15,30,62,60,2,59,251,137,184,33,98,134,138,0,129,238,43,221,79,77,66,41,80,143,254,184,177,167,80,175,157,86,18,148,234,5,214,101,112,22,241,
2841 228,23,84,20,16,131,95,0,117,228,231,172,18,3,84,228,128,177,255,32,29,142,163,176,211,244,26,155,153,145,8,245,27,88,27,109,117,159,234,199,50,252,157,145,158,131,143,244,252,164,245,149,225,215,82,113,239,34,40,0,80,0,228,24,212,131,56,253,107,11,190,
2842 118,218,151,234,238,212,23,107,231,70,2,98,194,56,169,109,40,99,17,98,64,162,48,173,96,46,156,59,253,74,56,103,218,101,80,166,175,202,217,227,28,9,132,33,228,10,130,223,230,5,159,213,3,126,139,135,252,244,38,132,129,39,200,234,250,169,93,229,137,241,
2843 44,172,44,130,202,133,181,48,99,205,92,168,89,58,61,173,251,61,224,8,176,42,129,35,99,110,24,38,251,239,9,137,236,242,160,98,128,122,244,53,133,58,152,73,12,253,76,98,220,231,150,25,96,6,249,89,91,164,135,10,242,119,185,218,94,152,94,187,180,107,223,
2844 238,241,215,161,215,213,66,174,99,233,152,225,215,164,228,126,229,120,77,164,115,171,233,254,131,27,186,239,114,155,2,78,124,138,161,0,64,1,128,36,69,213,130,226,234,115,190,189,248,127,23,92,56,253,59,113,41,198,139,225,212,172,35,178,170,1,242,64,45,
2845 55,84,195,233,53,23,50,49,48,187,104,97,94,29,123,41,34,130,36,74,204,124,112,90,33,99,39,27,82,143,63,16,137,17,1,16,103,17,129,66,93,126,77,96,244,68,28,112,200,188,29,14,78,190,195,250,245,83,131,175,229,245,41,49,252,199,147,252,172,61,158,157,196,
2846 240,255,180,111,231,228,97,124,106,161,0,64,1,128,40,202,162,139,167,175,35,66,224,174,170,5,37,23,68,137,183,23,19,83,115,253,80,47,42,34,133,216,114,192,242,138,51,224,19,68,8,172,168,60,131,24,26,236,101,133,164,23,58,154,247,224,196,59,112,212,178,
2847 27,236,161,73,150,187,146,232,134,153,138,39,120,34,220,31,114,71,71,27,95,28,252,101,195,115,3,143,71,252,34,198,251,81,0,156,20,248,244,68,166,68,239,142,137,3,195,135,172,23,157,254,149,5,223,92,117,195,220,255,49,150,233,230,210,118,194,106,87,11,
2848 240,108,206,64,33,241,45,99,208,104,221,3,77,182,125,48,167,104,17,156,53,237,18,86,66,88,97,168,193,147,131,164,206,129,33,98,180,213,126,136,121,251,93,206,70,8,138,126,208,17,111,63,149,249,42,130,129,167,249,33,225,222,237,19,15,30,220,208,243,59,
2849 251,128,215,130,103,6,65,1,128,168,251,240,35,30,198,129,245,221,143,183,191,62,186,101,221,119,150,220,182,240,226,105,223,19,244,124,161,26,115,5,254,217,225,225,88,233,212,113,207,107,176,167,19,222,30,126,1,78,169,60,155,136,129,75,97,113,217,106,
2850 38,22,16,68,13,198,253,67,112,196,178,19,26,136,183,63,238,31,6,154,16,147,106,195,79,167,246,209,181,254,137,22,199,235,71,158,232,255,69,223,238,201,6,60,51,136,172,231,41,46,1,32,201,50,235,180,202,229,68,8,252,124,198,234,138,47,210,210,54,49,197,
2851 99,68,105,213,0,205,176,22,52,2,204,46,94,8,107,107,46,132,211,170,206,131,154,130,89,120,114,144,164,241,139,94,104,35,222,254,17,243,14,232,113,53,131,63,234,101,33,254,84,151,169,210,178,62,26,238,183,15,250,26,27,95,24,252,69,251,150,145,45,169,202,
2852 197,65,212,3,115,0,144,156,96,197,53,179,47,62,253,107,11,126,94,89,87,124,33,237,36,40,69,83,251,112,162,201,103,52,105,144,110,197,186,82,88,84,182,10,78,175,185,8,150,87,156,14,197,218,50,60,65,200,73,35,198,69,232,119,181,194,81,235,110,102,252,173,
2853 193,9,150,202,71,123,244,107,82,220,177,146,150,130,234,10,120,240,217,194,67,29,111,140,221,93,255,108,255,99,65,39,121,128,34,40,0,146,4,151,0,16,197,104,127,125,116,71,239,246,137,29,203,175,154,245,185,83,191,84,119,123,197,188,162,83,105,217,96,
2854 170,18,5,89,214,53,241,204,232,22,145,34,172,191,122,163,117,31,27,67,76,69,192,169,213,231,193,162,210,85,57,213,87,0,81,86,64,14,123,186,161,201,182,31,90,236,239,195,184,111,144,85,160,208,16,191,225,216,178,83,170,13,63,235,221,31,148,108,29,111,
2855 154,30,56,248,72,207,95,220,99,126,7,158,41,4,5,0,146,145,80,131,223,180,113,104,99,207,246,137,45,167,125,185,238,235,203,175,158,125,107,81,181,97,113,52,152,58,33,64,161,115,5,142,231,10,120,34,78,216,59,254,38,236,159,120,27,170,13,51,136,24,88,11,
2856 171,170,214,193,162,178,83,84,155,179,142,100,7,116,30,133,201,63,0,45,182,131,208,74,140,254,136,183,15,194,82,144,133,247,143,111,169,183,252,0,58,214,190,87,242,118,110,29,219,208,248,252,224,159,205,157,238,81,60,91,136,226,151,26,46,1,32,106,82,
2857 60,205,88,188,250,250,185,55,18,33,240,125,34,4,230,167,178,116,240,163,160,161,93,81,138,0,199,241,80,99,156,1,139,203,214,192,41,149,103,193,66,34,6,112,153,32,63,160,94,253,136,183,151,133,246,219,29,71,136,0,24,132,144,24,32,198,94,32,155,46,37,117,
2858 251,31,103,248,181,6,158,118,125,12,14,236,49,63,121,232,177,158,123,137,225,239,197,51,150,219,96,14,0,146,15,66,160,116,245,13,243,190,189,226,234,89,223,45,172,50,204,77,183,16,56,33,6,136,49,160,149,5,21,134,106,168,43,89,14,43,42,78,103,162,160,
2859 22,19,8,115,10,111,196,5,3,158,14,98,240,15,179,68,62,115,96,12,34,82,248,132,151,159,54,163,15,137,80,63,45,233,131,88,60,56,86,111,127,166,254,249,193,251,6,247,153,59,240,172,161,0,64,1,128,228,154,16,40,95,125,253,220,175,46,191,102,246,127,23,85,
2860 27,22,166,122,105,224,227,160,141,134,168,24,160,235,192,133,66,49,204,44,170,99,66,96,73,249,26,214,111,160,80,91,130,39,47,139,160,137,160,180,100,175,215,221,2,93,142,70,24,246,118,131,43,108,99,21,35,212,203,231,137,183,159,78,163,127,220,240,211,
2861 53,254,72,64,244,142,55,57,158,109,222,56,252,192,0,26,126,20,0,40,0,144,60,16,2,37,171,111,152,251,229,229,87,207,254,175,162,42,195,74,49,34,129,20,201,140,146,38,186,46,44,198,163,32,197,68,230,29,150,235,171,97,78,241,34,86,85,176,176,116,37,204,
2862 40,156,119,34,191,0,129,140,57,103,150,160,137,24,250,46,232,118,54,195,160,167,147,253,63,13,237,211,124,16,102,244,51,164,63,4,107,219,203,12,191,100,239,219,57,249,100,195,243,3,15,89,186,220,125,120,22,81,0,160,0,64,242,75,8,212,26,13,11,47,154,118,
2863 253,170,207,206,249,110,229,130,146,117,146,72,140,111,88,74,201,192,161,147,35,126,44,58,16,101,70,134,14,117,169,48,212,194,172,162,5,176,160,116,5,212,149,44,133,105,5,115,160,72,91,138,39,51,149,207,143,88,24,44,1,106,240,123,136,177,239,128,33,79,
2864 55,51,248,196,153,102,127,47,104,180,25,225,229,127,200,240,11,28,51,252,62,75,112,116,232,128,245,177,166,141,67,143,17,195,143,35,122,81,0,96,25,32,146,159,120,205,193,80,227,11,131,207,182,111,25,125,118,249,85,179,174,88,122,197,204,255,154,182,162,
2865 236,83,26,226,182,69,67,234,183,24,62,9,141,204,230,13,240,188,112,76,14,196,193,22,156,0,115,96,148,53,134,209,242,58,40,213,85,194,116,34,2,102,23,47,130,121,197,75,88,132,128,150,30,234,136,88,64,148,144,96,113,112,134,173,48,233,31,129,17,95,47,43,
2866 213,163,137,123,142,144,5,66,82,128,253,27,122,142,104,35,168,140,171,234,32,250,67,208,113,204,248,123,38,130,205,221,239,152,30,109,222,52,252,28,185,238,177,156,15,73,59,40,0,144,204,240,232,18,229,131,111,55,109,26,122,123,193,249,211,78,95,113,237,
2867 236,155,230,156,81,121,131,190,72,91,193,242,4,50,100,158,57,245,40,89,226,24,104,79,24,39,58,5,206,73,140,17,237,13,79,195,205,180,207,0,29,93,92,107,156,77,68,193,2,152,89,56,159,37,21,210,121,5,5,66,49,158,236,127,227,217,187,195,118,230,205,155,124,
2868 3,48,70,182,201,192,8,216,66,19,172,3,31,141,196,208,99,204,68,25,39,100,108,25,39,91,223,55,240,16,139,197,99,246,126,239,123,173,175,141,172,39,198,255,141,144,39,26,197,179,140,160,0,64,144,143,118,247,160,127,247,228,81,186,77,91,81,246,171,37,151,
2869 207,252,210,146,79,206,248,122,97,181,126,5,77,22,204,172,229,129,132,32,248,96,132,128,66,115,7,104,120,122,194,63,12,13,214,61,39,122,18,20,235,202,88,100,160,198,56,11,166,21,204,102,173,138,171,13,211,161,68,95,193,150,16,50,41,92,173,54,116,109,
2870 222,19,117,130,61,56,9,214,208,56,57,86,35,44,170,66,167,233,185,35,118,54,92,71,36,199,81,163,57,118,124,53,252,137,38,79,153,12,175,229,88,175,254,176,79,180,145,107,248,229,246,55,198,30,27,220,111,57,18,19,177,101,47,130,2,0,65,78,154,201,118,215,
2871 24,217,238,57,250,84,223,253,139,46,158,254,169,37,151,205,252,70,237,242,210,203,4,29,103,160,131,135,50,37,42,240,79,162,128,38,157,209,13,180,31,208,53,113,150,133,110,15,153,217,244,56,154,123,67,141,26,93,38,40,212,22,67,137,174,130,37,27,82,129,
2872 64,55,250,123,186,21,17,209,80,164,45,33,2,162,32,107,134,28,209,137,141,180,196,206,23,245,128,95,244,144,239,109,103,223,157,46,157,56,194,102,22,186,167,94,62,253,123,26,194,167,94,61,133,35,223,143,126,71,142,25,123,61,219,178,1,42,82,4,3,199,188,
2873 126,183,41,208,208,187,115,226,201,246,45,163,27,29,131,190,9,188,139,17,20,0,8,146,4,126,91,56,220,244,210,208,171,205,155,134,95,157,177,186,98,233,178,43,102,126,121,254,121,53,95,44,170,49,46,138,209,225,67,52,87,32,195,39,160,159,136,20,104,132,
2874 127,48,150,116,9,193,197,140,228,144,167,139,9,3,250,43,145,185,174,101,73,135,6,190,16,10,180,69,172,81,17,141,20,208,173,88,151,248,61,93,82,40,20,138,192,72,54,42,38,244,124,194,112,106,201,79,186,38,206,49,131,202,177,159,199,247,227,223,27,112,242,
2875 43,30,99,73,143,180,108,142,38,65,70,99,97,136,196,34,108,12,46,13,211,135,136,135,30,16,125,224,167,70,62,234,5,111,212,77,54,39,248,34,110,98,216,221,108,128,14,245,226,195,196,211,143,30,171,168,56,110,44,143,27,122,218,127,65,75,190,99,166,123,245,
2876 31,115,66,129,23,18,83,249,34,1,209,49,114,196,246,70,231,155,99,79,15,236,179,236,12,123,163,18,222,181,8,10,0,4,81,210,179,140,197,193,212,104,239,34,219,255,20,62,98,248,237,162,139,166,125,114,193,133,211,190,50,99,85,249,101,58,163,80,202,6,16,209,
2877 80,107,60,123,190,83,66,24,240,31,233,221,83,67,76,103,26,132,137,209,117,133,173,9,131,12,137,80,242,241,234,157,132,113,39,222,39,121,61,53,248,44,63,225,88,6,60,21,27,58,98,92,57,46,241,147,190,130,14,179,161,255,62,254,15,7,137,238,71,226,243,194,
2878 240,247,202,135,8,49,252,137,225,74,18,107,154,36,178,242,200,68,69,132,116,66,36,28,127,47,106,220,169,81,63,177,79,244,23,249,169,211,16,79,62,75,188,249,127,7,157,200,71,141,126,92,138,199,157,35,254,3,61,219,39,94,24,216,61,249,170,185,203,109,194,
2879 59,20,65,1,128,32,41,137,10,132,130,77,27,135,182,208,173,118,121,217,156,249,231,213,126,122,241,165,211,63,95,54,187,240,28,242,144,230,197,16,49,78,89,190,238,154,48,160,212,99,231,224,95,59,238,9,19,124,220,128,71,32,116,194,40,31,143,40,36,84,81,
2880 194,200,255,171,112,73,226,243,78,124,58,253,131,99,31,173,57,254,39,199,146,240,56,128,60,201,89,96,157,250,244,28,59,54,62,107,168,119,172,97,242,53,226,237,191,100,106,118,28,165,75,81,8,130,2,0,65,210,132,185,195,53,66,182,7,142,62,213,247,192,140,
2881 213,21,107,136,24,184,110,254,39,106,62,93,50,163,96,21,181,119,180,201,80,38,116,27,84,87,42,252,163,1,63,241,87,72,18,70,159,227,57,8,186,34,227,227,205,142,173,93,239,140,111,28,58,104,217,19,176,135,131,120,132,16,20,0,8,146,65,80,111,108,248,125,
2882 107,19,221,222,127,84,119,231,156,51,170,206,92,112,193,180,107,103,174,169,184,170,168,218,176,146,26,67,218,109,48,219,150,9,144,20,25,125,94,147,168,217,39,63,131,238,168,217,212,228,216,62,184,215,188,105,232,160,117,151,107,204,239,196,35,132,160,
2883 0,64,144,44,32,232,140,136,221,239,142,31,160,91,65,185,238,231,179,207,168,58,131,8,130,171,103,172,174,184,162,108,78,225,26,242,144,215,72,209,24,196,200,22,71,49,144,167,22,63,209,150,87,208,241,76,15,134,92,145,81,83,3,49,250,251,204,155,135,222,
2884 183,238,117,141,250,237,120,144,16,20,0,8,146,197,4,156,145,232,113,49,160,53,242,119,204,88,85,177,122,193,5,181,159,156,190,170,252,138,138,185,69,103,234,10,132,66,42,4,152,32,144,80,13,228,180,205,231,52,137,90,125,178,145,243,29,247,89,67,29,19,
2885 45,206,247,250,247,76,190,57,222,236,60,228,53,7,189,120,148,16,20,0,8,146,131,68,131,82,108,248,144,181,145,110,196,251,187,187,122,113,233,188,185,103,85,157,63,107,109,229,39,171,23,151,156,107,44,211,213,81,35,193,4,129,24,207,128,86,196,72,178,94,
2886 62,45,215,163,205,121,104,126,68,200,19,113,216,7,188,71,71,143,218,223,29,61,106,219,110,238,112,181,133,60,81,17,15,20,130,2,0,65,242,8,234,237,155,59,93,67,116,59,252,68,223,83,197,53,134,130,234,37,165,107,230,173,171,190,104,218,242,178,11,203,102,
2887 23,158,170,47,214,86,178,127,43,210,8,1,10,130,140,183,247,180,112,129,167,30,190,134,37,240,17,47,63,228,54,249,59,38,219,93,251,198,91,156,59,136,225,63,228,26,245,79,226,121,68,16,20,0,8,114,2,175,37,20,32,219,129,129,189,230,3,26,78,243,155,178,89,
2888 5,181,181,203,203,78,155,177,186,226,188,218,229,165,231,150,207,42,92,161,47,33,130,64,3,172,170,128,70,9,98,212,144,160,45,73,159,193,231,52,172,54,159,122,249,244,188,136,97,41,24,176,135,186,173,189,222,131,19,45,142,61,227,173,174,163,214,30,119,
2889 95,196,143,78,62,130,160,0,64,144,147,128,122,136,206,17,191,153,108,91,187,222,54,109,165,225,227,210,89,5,53,181,203,74,87,17,65,112,118,229,252,162,179,43,235,138,79,33,130,96,182,160,227,53,244,223,211,234,130,24,46,27,168,107,236,249,132,193,167,
2890 63,227,49,128,144,55,98,115,141,132,58,109,3,222,195,227,77,142,131,230,78,87,163,219,20,24,12,121,162,120,18,16,4,5,0,130,40,32,8,226,113,112,141,250,45,100,219,214,253,238,248,54,250,103,69,53,134,162,178,217,133,11,103,172,42,95,93,181,176,120,109,
2891 249,220,226,53,197,181,134,197,134,98,109,45,53,82,180,186,128,69,10,136,48,160,162,0,171,13,78,214,210,3,112,196,216,211,178,60,142,255,187,177,39,94,188,199,109,14,14,146,115,208,102,235,243,28,181,116,121,26,172,189,158,78,207,120,192,138,201,155,
2892 8,130,2,0,65,82,134,207,18,242,145,173,105,172,222,222,68,254,247,73,106,244,139,170,141,21,21,117,133,117,53,139,75,87,150,204,44,56,165,106,126,241,138,226,233,198,133,250,98,237,76,157,158,55,82,163,70,141,21,21,4,9,97,0,121,27,49,160,30,61,109,40,
2893 72,215,234,143,255,164,66,75,138,198,164,176,55,106,38,199,118,208,103,13,117,90,123,60,45,150,110,119,171,99,200,215,235,157,12,142,71,131,104,237,17,4,5,0,130,100,16,212,219,247,76,4,28,116,27,58,96,173,63,254,231,5,21,122,67,201,116,227,180,226,105,
2894 198,186,202,249,197,75,43,235,138,150,24,203,117,139,74,103,22,206,209,26,249,25,250,34,109,57,17,15,26,106,16,227,82,252,88,228,32,209,159,32,17,57,56,102,239,178,105,198,193,177,14,132,52,33,143,254,158,138,35,250,27,234,217,179,89,3,116,180,115,72,
2895 242,134,60,81,139,215,28,26,11,185,34,189,182,126,111,47,241,238,187,220,166,192,128,115,196,63,26,116,133,221,185,221,193,17,65,80,0,32,72,78,19,112,132,67,100,27,154,108,119,13,245,110,159,216,121,252,207,245,197,90,222,88,170,171,40,172,54,204,168,
2896 152,91,56,147,252,127,93,213,130,226,217,186,66,97,94,217,156,194,105,188,150,155,110,44,211,149,11,122,190,152,136,3,3,45,101,75,180,242,255,123,226,33,253,253,7,141,36,251,43,137,206,64,248,168,30,192,39,177,12,161,249,184,137,129,241,99,30,187,230,
2897 67,30,60,13,207,159,120,29,75,193,63,81,49,33,17,241,226,241,91,67,110,242,211,236,28,245,155,137,231,62,108,235,245,140,68,2,226,144,173,207,75,12,124,196,228,179,4,109,33,111,52,132,137,148,8,146,103,2,192,235,197,158,27,72,254,66,199,198,146,205,234,
2898 26,243,91,77,141,246,230,143,248,39,58,190,2,138,180,70,168,48,148,232,42,202,231,20,86,199,164,120,109,113,141,161,178,100,102,65,53,49,177,85,134,18,109,25,249,125,105,92,130,98,242,239,139,5,3,103,44,252,255,236,221,75,106,194,64,0,128,225,104,226,
2899 139,90,104,233,190,208,131,120,75,47,215,19,20,173,90,84,218,196,81,155,206,152,62,20,234,174,208,133,223,7,1,5,31,193,133,243,79,72,50,119,189,126,28,232,211,26,187,157,163,173,125,184,235,93,63,63,123,36,33,141,223,233,102,72,187,240,189,136,82,136,
2900 91,90,237,38,196,193,61,196,125,173,226,140,61,45,23,184,110,229,217,186,92,132,213,122,82,46,227,27,103,241,125,207,211,199,229,60,126,196,244,117,182,153,174,158,222,94,222,247,217,60,76,178,101,124,189,123,231,195,25,33,132,203,11,128,162,40,178,241,
2901 120,44,2,224,183,249,118,115,121,97,136,3,254,34,62,94,52,51,251,250,103,182,253,57,19,79,119,180,235,118,138,172,46,234,230,105,63,239,12,175,6,131,56,213,79,235,239,118,143,182,162,119,221,105,223,222,15,135,231,206,57,72,231,39,196,25,123,21,7,245,
2902 144,53,153,80,197,45,93,63,183,137,223,183,41,119,161,42,55,135,127,171,109,154,237,239,110,246,217,182,191,255,58,64,144,213,15,205,145,137,195,145,130,188,217,209,188,104,157,236,47,112,106,52,26,253,219,119,183,106,167,38,3,192,197,105,251,9,0,64,
2903 0,0,0,2,0,0,16,0,0,128,0,0,0,4,0,0,32,0,0,0,1,0,0,8,0,0,64,0,0,0,2,0,0,16,0,0,128,0,0,0,4,0,0,32,0,0,0,1,0,0,8,0,0,64,0,0,128,0,0,0,4,0,0,32,0,0,0,1,0,0,8,0,0,64,0,0,0,2,0,0,16,0,0,128,0,0,0,4,0,0,32,0,0,128,191,246,33,192,0,100,235,173,153,70,62,64,
2904 37,0,0,0,0,73,69,78,68,174,66,96,130,0,0 };
2905 
2906 const char* juce_icon_png = (const char*) temp_binary_data_19;
2907 
2908 //================== wizard_AnimatedApp.svg ==================
2909 static const unsigned char temp_binary_data_20[] =
2910 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
2911 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
2912 "\n"
2913 "<svg\n"
2914 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
2915 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
2916 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
2917 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
2918 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
2919 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
2920 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
2921 "   version=\"1.1\"\n"
2922 "   id=\"Layer_1\"\n"
2923 "   x=\"0px\"\n"
2924 "   y=\"0px\"\n"
2925 "   viewBox=\"0 0 136.9 114.8\"\n"
2926 "   enable-background=\"new 0 0 136.9 114.8\"\n"
2927 "   xml:space=\"preserve\"\n"
2928 "   inkscape:version=\"0.91 r13725\"\n"
2929 "   sodipodi:docname=\"wizard_AnimatedApp.svg\"><metadata\n"
2930 "     id=\"metadata50\"><rdf:RDF><cc:Work\n"
2931 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
2932 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
2933 "     id=\"defs48\" /><sodipodi:namedview\n"
2934 "     pagecolor=\"#ffffff\"\n"
2935 "     bordercolor=\"#666666\"\n"
2936 "     borderopacity=\"1\"\n"
2937 "     objecttolerance=\"10\"\n"
2938 "     gridtolerance=\"10\"\n"
2939 "     guidetolerance=\"10\"\n"
2940 "     inkscape:pageopacity=\"0\"\n"
2941 "     inkscape:pageshadow=\"2\"\n"
2942 "     inkscape:window-width=\"1680\"\n"
2943 "     inkscape:window-height=\"1001\"\n"
2944 "     id=\"namedview46\"\n"
2945 "     showgrid=\"false\"\n"
2946 "     inkscape:zoom=\"5.6568543\"\n"
2947 "     inkscape:cx=\"85.414924\"\n"
2948 "     inkscape:cy=\"49.441529\"\n"
2949 "     inkscape:window-x=\"0\"\n"
2950 "     inkscape:window-y=\"1\"\n"
2951 "     inkscape:window-maximized=\"1\"\n"
2952 "     inkscape:current-layer=\"Layer_1\" /><g\n"
2953 "     id=\"Layer_1_18_\"\n"
2954 "     style=\"stroke:#a45c94;stroke-opacity:1\"><rect\n"
2955 "       x=\"16.3\"\n"
2956 "       y=\"10.9\"\n"
2957 "       stroke-miterlimit=\"10\"\n"
2958 "       width=\"103.6\"\n"
2959 "       height=\"67.5\"\n"
2960 "       id=\"rect4\"\n"
2961 "       stroke-width=\"1.3469\"\n"
2962 "       stroke=\"#a45c94\"\n"
2963 "       fill=\"none\"\n"
2964 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><rect\n"
2965 "     x=\"16.3\"\n"
2966 "     y=\"10.9\"\n"
2967 "     fill=\"none\"\n"
2968 "     stroke=\"#a45c94\"\n"
2969 "     stroke-width=\"1.3469\"\n"
2970 "     stroke-miterlimit=\"10\"\n"
2971 "     width=\"103.6\"\n"
2972 "     height=\"2.4\"\n"
2973 "     id=\"rect6\"\n"
2974 "     style=\"stroke:#a45c9f;stroke-opacity:0.94117647\" /><circle\n"
2975 "     fill=\"none\"\n"
2976 "     stroke=\"#a45c94\"\n"
2977 "     stroke-width=\"1.3469\"\n"
2978 "     stroke-miterlimit=\"10\"\n"
2979 "     cx=\"80.3\"\n"
2980 "     cy=\"45\"\n"
2981 "     r=\"20.8\"\n"
2982 "     id=\"circle8\"\n"
2983 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
2984 "     id=\"g10\"\n"
2985 "     style=\"stroke:#a45c94;stroke-opacity:1\"><g\n"
2986 "       id=\"g12\"\n"
2987 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
2988 "         stroke-miterlimit=\"10\"\n"
2989 "         d=\"M97.8,40.1c0.9,3.2,0,8-2.1,8.3    c-2,0.2-10.5-2.2-14.8-3.6c2.9-3.4,8.9-10,10.8-10.8C93.5,33.2,96.9,36.9,97.8,40.1z\"\n"
2990 "         id=\"path14\"\n"
2991 "         stroke-width=\"1.3469\"\n"
2992 "         stroke=\"#a45c94\"\n"
2993 "         fill=\"none\"\n"
2994 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
2995 "       id=\"g16\"\n"
2996 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
2997 "         stroke-miterlimit=\"10\"\n"
2998 "         d=\"M93.3,57.7c-2.3,2.4-7,4-8.2,2.4    c-1.2-1.6-3.4-10.2-4.3-14.6c4.4,0.8,13.1,2.8,14.7,4C97.2,50.5,95.6,55.3,93.3,57.7z\"\n"
2999 "         id=\"path18\"\n"
3000 "         stroke-width=\"1.3469\"\n"
3001 "         stroke=\"#a45c94\"\n"
3002 "         fill=\"none\"\n"
3003 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
3004 "       id=\"g20\"\n"
3005 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
3006 "         stroke-miterlimit=\"10\"\n"
3007 "         d=\"M75.7,62.6c-3.2-0.8-7-4.1-6.1-6    c0.8-1.9,7.2-8,10.5-11.1c1.5,4.3,4.1,12.7,3.9,14.8C83.9,62.4,79,63.4,75.7,62.6z\"\n"
3008 "         id=\"path22\"\n"
3009 "         stroke-width=\"1.3469\"\n"
3010 "         stroke=\"#a45c94\"\n"
3011 "         fill=\"none\"\n"
3012 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
3013 "       id=\"g24\"\n"
3014 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
3015 "         stroke-miterlimit=\"10\"\n"
3016 "         d=\"M62.9,49.9c-0.9-3.2,0-8,2.1-8.3    c2-0.2,10.5,2.2,14.8,3.6c-2.9,3.4-8.9,10-10.8,10.8C67.2,56.8,63.8,53.1,62.9,49.9z\"\n"
3017 "         id=\"path26\"\n"
3018 "         stroke-width=\"1.3469\"\n"
3019 "         stroke=\"#a45c94\"\n"
3020 "         fill=\"none\"\n"
3021 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
3022 "       id=\"g28\"\n"
3023 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
3024 "         stroke-miterlimit=\"10\"\n"
3025 "         d=\"M67.4,32.3c2.3-2.4,7-4,8.2-2.4    c1.2,1.6,3.4,10.2,4.3,14.6c-4.4-0.8-13.1-2.8-14.7-4C63.5,39.4,65.1,34.7,67.4,32.3z\"\n"
3026 "         id=\"path30\"\n"
3027 "         stroke-width=\"1.3469\"\n"
3028 "         stroke=\"#a45c94\"\n"
3029 "         fill=\"none\"\n"
3030 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
3031 "       id=\"g32\"\n"
3032 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
3033 "         stroke-miterlimit=\"10\"\n"
3034 "         d=\"M84.8,27.4c3.2,0.8,7,4.1,6.1,6    c-0.8,1.9-7.2,8-10.5,11.1c-1.5-4.3-4.1-12.7-3.9-14.8C76.7,27.6,81.6,26.6,84.8,27.4z\"\n"
3035 "         id=\"path34\"\n"
3036 "         stroke-width=\"1.3469\"\n"
3037 "         stroke=\"#a45c94\"\n"
3038 "         fill=\"none\"\n"
3039 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g></g><path\n"
3040 "     stroke-miterlimit=\"10\"\n"
3041 "     d=\"M130,114.8H6.9c-3.8,0-6.9-3.1-6.9-6.9V6.9  C0,3.1,3.1,0,6.9,0H130c3.8,0,6.9,3.1,6.9,6.9v101.1C136.9,111.7,133.9,114.8,130,114.8z\"\n"
3042 "     id=\"path36\"\n"
3043 "     stroke-width=\"1.3469\"\n"
3044 "     stroke=\"#a45c94\"\n"
3045 "     fill=\"none\"\n"
3046 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
3047 "     opacity=\"0.8\"\n"
3048 "     fill=\"none\"\n"
3049 "     stroke=\"#a45c94\"\n"
3050 "     stroke-width=\"1.3469\"\n"
3051 "     stroke-miterlimit=\"10\"\n"
3052 "     d=\"M62.6,61.4  c-9.1-9.1-9.1-23.7,0-32.8\"\n"
3053 "     id=\"path38\"\n"
3054 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
3055 "     opacity=\"0.5\"\n"
3056 "     fill=\"none\"\n"
3057 "     stroke=\"#a45c94\"\n"
3058 "     stroke-width=\"1.3469\"\n"
3059 "     stroke-miterlimit=\"10\"\n"
3060 "     d=\"M55.9,57.3  c-4.7-7.4-4.7-16.9-0.1-24.4\"\n"
3061 "     id=\"path40\"\n"
3062 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3063 "     opacity=\"0.7\"\n"
3064 "     fill=\"none\"\n"
3065 "     stroke=\"#a45c94\"\n"
3066 "     stroke-width=\"1.3469\"\n"
3067 "     stroke-miterlimit=\"10\"\n"
3068 "     x1=\"57.7\"\n"
3069 "     y1=\"41.5\"\n"
3070 "     x2=\"37.8\"\n"
3071 "     y2=\"41.5\"\n"
3072 "     id=\"line42\"\n"
3073 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3074 "     opacity=\"0.7\"\n"
3075 "     fill=\"none\"\n"
3076 "     stroke=\"#a45c94\"\n"
3077 "     stroke-width=\"1.3469\"\n"
3078 "     stroke-miterlimit=\"10\"\n"
3079 "     x1=\"57.7\"\n"
3080 "     y1=\"48.4\"\n"
3081 "     x2=\"34.2\"\n"
3082 "     y2=\"48.4\"\n"
3083 "     id=\"line44\"\n"
3084 "     style=\"stroke:#a45c94;stroke-opacity:0.94117647\" /></svg>";
3085 
3086 const char* wizard_AnimatedApp_svg = (const char*) temp_binary_data_20;
3087 
3088 //================== wizard_AudioApp.svg ==================
3089 static const unsigned char temp_binary_data_21[] =
3090 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
3091 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
3092 "\n"
3093 "<svg\n"
3094 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
3095 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
3096 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
3097 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
3098 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
3099 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
3100 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
3101 "   version=\"1.1\"\n"
3102 "   id=\"Layer_1\"\n"
3103 "   x=\"0px\"\n"
3104 "   y=\"0px\"\n"
3105 "   viewBox=\"0 0 136.9 114.8\"\n"
3106 "   enable-background=\"new 0 0 136.9 114.8\"\n"
3107 "   xml:space=\"preserve\"\n"
3108 "   inkscape:version=\"0.91 r13725\"\n"
3109 "   sodipodi:docname=\"wizard_AudioApp.svg\"><metadata\n"
3110 "     id=\"metadata137\"><rdf:RDF><cc:Work\n"
3111 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
3112 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
3113 "     id=\"defs135\" /><sodipodi:namedview\n"
3114 "     pagecolor=\"#ffffff\"\n"
3115 "     bordercolor=\"#666666\"\n"
3116 "     borderopacity=\"1\"\n"
3117 "     objecttolerance=\"10\"\n"
3118 "     gridtolerance=\"10\"\n"
3119 "     guidetolerance=\"10\"\n"
3120 "     inkscape:pageopacity=\"0\"\n"
3121 "     inkscape:pageshadow=\"2\"\n"
3122 "     inkscape:window-width=\"1680\"\n"
3123 "     inkscape:window-height=\"1001\"\n"
3124 "     id=\"namedview133\"\n"
3125 "     showgrid=\"false\"\n"
3126 "     inkscape:zoom=\"4.1114981\"\n"
3127 "     inkscape:cx=\"45.83412\"\n"
3128 "     inkscape:cy=\"47.98031\"\n"
3129 "     inkscape:window-x=\"0\"\n"
3130 "     inkscape:window-y=\"1\"\n"
3131 "     inkscape:window-maximized=\"1\"\n"
3132 "     inkscape:current-layer=\"Layer_1\" /><path\n"
3133 "     fill=\"none\"\n"
3134 "     stroke=\"#a45c94\"\n"
3135 "     stroke-width=\"1.3469\"\n"
3136 "     stroke-miterlimit=\"10\"\n"
3137 "     d=\"M130,114.8H6.9c-3.8,0-6.9-3.1-6.9-6.9V6.9  C0,3.1,3.1,0,6.9,0H130c3.8,0,6.9,3.1,6.9,6.9v101.1C136.9,111.7,133.9,114.8,130,114.8z\"\n"
3138 "     id=\"path3\"\n"
3139 "     style=\"fill:none;fill-opacity:1;stroke:#a45c94;stroke-opacity:1\" /><rect\n"
3140 "     x=\"16.5\"\n"
3141 "     y=\"10.9\"\n"
3142 "     fill=\"none\"\n"
3143 "     stroke=\"#a45c94\"\n"
3144 "     stroke-width=\"1.3412\"\n"
3145 "     stroke-miterlimit=\"10\"\n"
3146 "     width=\"102.7\"\n"
3147 "     height=\"2.4\"\n"
3148 "     id=\"rect5\"\n"
3149 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><rect\n"
3150 "     x=\"16.5\"\n"
3151 "     y=\"10.9\"\n"
3152 "     fill=\"none\"\n"
3153 "     stroke=\"#a45c94\"\n"
3154 "     stroke-width=\"1.3469\"\n"
3155 "     stroke-miterlimit=\"10\"\n"
3156 "     width=\"102.9\"\n"
3157 "     height=\"67.5\"\n"
3158 "     id=\"rect7\"\n"
3159 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3160 "     fill=\"none\"\n"
3161 "     stroke=\"#a45c94\"\n"
3162 "     stroke-width=\"1.5\"\n"
3163 "     stroke-linecap=\"round\"\n"
3164 "     stroke-miterlimit=\"10\"\n"
3165 "     x1=\"17.1\"\n"
3166 "     y1=\"43.8\"\n"
3167 "     x2=\"17.1\"\n"
3168 "     y2=\"44.5\"\n"
3169 "     id=\"line9\"\n"
3170 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3171 "     fill=\"none\"\n"
3172 "     stroke=\"#a45c94\"\n"
3173 "     stroke-width=\"1.5\"\n"
3174 "     stroke-linecap=\"round\"\n"
3175 "     stroke-miterlimit=\"10\"\n"
3176 "     x1=\"18.8\"\n"
3177 "     y1=\"43.6\"\n"
3178 "     x2=\"18.8\"\n"
3179 "     y2=\"44.7\"\n"
3180 "     id=\"line11\"\n"
3181 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3182 "     fill=\"none\"\n"
3183 "     stroke=\"#a45c94\"\n"
3184 "     stroke-width=\"1.5\"\n"
3185 "     stroke-linecap=\"round\"\n"
3186 "     stroke-miterlimit=\"10\"\n"
3187 "     x1=\"20.4\"\n"
3188 "     y1=\"43.8\"\n"
3189 "     x2=\"20.4\"\n"
3190 "     y2=\"44.5\"\n"
3191 "     id=\"line13\"\n"
3192 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3193 "     fill=\"none\"\n"
3194 "     stroke=\"#a45c94\"\n"
3195 "     stroke-width=\"1.5\"\n"
3196 "     stroke-linecap=\"round\"\n"
3197 "     stroke-miterlimit=\"10\"\n"
3198 "     x1=\"22.1\"\n"
3199 "     y1=\"43.6\"\n"
3200 "     x2=\"22.1\"\n"
3201 "     y2=\"44.7\"\n"
3202 "     id=\"line15\"\n"
3203 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3204 "     fill=\"none\"\n"
3205 "     stroke=\"#a45c94\"\n"
3206 "     stroke-width=\"1.5\"\n"
3207 "     stroke-linecap=\"round\"\n"
3208 "     stroke-miterlimit=\"10\"\n"
3209 "     x1=\"23.8\"\n"
3210 "     y1=\"43.1\"\n"
3211 "     x2=\"23.8\"\n"
3212 "     y2=\"45.2\"\n"
3213 "     id=\"line17\"\n"
3214 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3215 "     fill=\"none\"\n"
3216 "     stroke=\"#a45c94\"\n"
3217 "     stroke-width=\"1.5\"\n"
3218 "     stroke-linecap=\"round\"\n"
3219 "     stroke-miterlimit=\"10\"\n"
3220 "     x1=\"25.4\"\n"
3221 "     y1=\"42.3\"\n"
3222 "     x2=\"25.4\"\n"
3223 "     y2=\"46\"\n"
3224 "     id=\"line19\"\n"
3225 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3226 "     fill=\"none\"\n"
3227 "     stroke=\"#a45c94\"\n"
3228 "     stroke-width=\"1.5\"\n"
3229 "     stroke-linecap=\"round\"\n"
3230 "     stroke-miterlimit=\"10\"\n"
3231 "     x1=\"27.1\"\n"
3232 "     y1=\"43.9\"\n"
3233 "     x2=\"27.1\"\n"
3234 "     y2=\"44.4\"\n"
3235 "     id=\"line21\"\n"
3236 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3237 "     fill=\"none\"\n"
3238 "     stroke=\"#a45c94\"\n"
3239 "     stroke-width=\"1.5\"\n"
3240 "     stroke-linecap=\"round\"\n"
3241 "     stroke-miterlimit=\"10\"\n"
3242 "     x1=\"28.8\"\n"
3243 "     y1=\"43.3\"\n"
3244 "     x2=\"28.8\"\n"
3245 "     y2=\"45\"\n"
3246 "     id=\"line23\"\n"
3247 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3248 "     fill=\"none\"\n"
3249 "     stroke=\"#a45c94\"\n"
3250 "     stroke-width=\"1.5\"\n"
3251 "     stroke-linecap=\"round\"\n"
3252 "     stroke-miterlimit=\"10\"\n"
3253 "     x1=\"30.4\"\n"
3254 "     y1=\"29.3\"\n"
3255 "     x2=\"30.4\"\n"
3256 "     y2=\"59\"\n"
3257 "     id=\"line25\"\n"
3258 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3259 "     fill=\"none\"\n"
3260 "     stroke=\"#a45c94\"\n"
3261 "     stroke-width=\"1.5\"\n"
3262 "     stroke-linecap=\"round\"\n"
3263 "     stroke-miterlimit=\"10\"\n"
3264 "     x1=\"32.1\"\n"
3265 "     y1=\"40.9\"\n"
3266 "     x2=\"32.1\"\n"
3267 "     y2=\"47.4\"\n"
3268 "     id=\"line27\"\n"
3269 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3270 "     fill=\"none\"\n"
3271 "     stroke=\"#a45c94\"\n"
3272 "     stroke-width=\"1.5\"\n"
3273 "     stroke-linecap=\"round\"\n"
3274 "     stroke-miterlimit=\"10\"\n"
3275 "     x1=\"33.8\"\n"
3276 "     y1=\"42.7\"\n"
3277 "     x2=\"33.8\"\n"
3278 "     y2=\"45.6\"\n"
3279 "     id=\"line29\"\n"
3280 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3281 "     fill=\"none\"\n"
3282 "     stroke=\"#a45c94\"\n"
3283 "     stroke-width=\"1.5\"\n"
3284 "     stroke-linecap=\"round\"\n"
3285 "     stroke-miterlimit=\"10\"\n"
3286 "     x1=\"35.4\"\n"
3287 "     y1=\"36.6\"\n"
3288 "     x2=\"35.4\"\n"
3289 "     y2=\"51.7\"\n"
3290 "     id=\"line31\"\n"
3291 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3292 "     fill=\"none\"\n"
3293 "     stroke=\"#a45c94\"\n"
3294 "     stroke-width=\"1.5\"\n"
3295 "     stroke-linecap=\"round\"\n"
3296 "     stroke-miterlimit=\"10\"\n"
3297 "     x1=\"37.1\"\n"
3298 "     y1=\"33.3\"\n"
3299 "     x2=\"37.1\"\n"
3300 "     y2=\"55.1\"\n"
3301 "     id=\"line33\"\n"
3302 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3303 "     fill=\"none\"\n"
3304 "     stroke=\"#a45c94\"\n"
3305 "     stroke-width=\"1.5\"\n"
3306 "     stroke-linecap=\"round\"\n"
3307 "     stroke-miterlimit=\"10\"\n"
3308 "     x1=\"38.8\"\n"
3309 "     y1=\"42.6\"\n"
3310 "     x2=\"38.8\"\n"
3311 "     y2=\"45.7\"\n"
3312 "     id=\"line35\"\n"
3313 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3314 "     fill=\"none\"\n"
3315 "     stroke=\"#a45c94\"\n"
3316 "     stroke-width=\"1.5\"\n"
3317 "     stroke-linecap=\"round\"\n"
3318 "     stroke-miterlimit=\"10\"\n"
3319 "     x1=\"40.4\"\n"
3320 "     y1=\"37.4\"\n"
3321 "     x2=\"40.4\"\n"
3322 "     y2=\"50.9\"\n"
3323 "     id=\"line37\"\n"
3324 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3325 "     fill=\"none\"\n"
3326 "     stroke=\"#a45c94\"\n"
3327 "     stroke-width=\"1.5\"\n"
3328 "     stroke-linecap=\"round\"\n"
3329 "     stroke-miterlimit=\"10\"\n"
3330 "     x1=\"42.1\"\n"
3331 "     y1=\"27.4\"\n"
3332 "     x2=\"42.1\"\n"
3333 "     y2=\"60.9\"\n"
3334 "     id=\"line39\"\n"
3335 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3336 "     fill=\"none\"\n"
3337 "     stroke=\"#a45c94\"\n"
3338 "     stroke-width=\"1.5\"\n"
3339 "     stroke-linecap=\"round\"\n"
3340 "     stroke-miterlimit=\"10\"\n"
3341 "     x1=\"43.8\"\n"
3342 "     y1=\"39.3\"\n"
3343 "     x2=\"43.8\"\n"
3344 "     y2=\"49\"\n"
3345 "     id=\"line41\"\n"
3346 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3347 "     fill=\"none\"\n"
3348 "     stroke=\"#a45c94\"\n"
3349 "     stroke-width=\"1.5\"\n"
3350 "     stroke-linecap=\"round\"\n"
3351 "     stroke-miterlimit=\"10\"\n"
3352 "     x1=\"45.4\"\n"
3353 "     y1=\"41.1\"\n"
3354 "     x2=\"45.4\"\n"
3355 "     y2=\"47.2\"\n"
3356 "     id=\"line43\"\n"
3357 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3358 "     fill=\"none\"\n"
3359 "     stroke=\"#a45c94\"\n"
3360 "     stroke-width=\"1.5\"\n"
3361 "     stroke-linecap=\"round\"\n"
3362 "     stroke-miterlimit=\"10\"\n"
3363 "     x1=\"47.1\"\n"
3364 "     y1=\"42.6\"\n"
3365 "     x2=\"47.1\"\n"
3366 "     y2=\"45.7\"\n"
3367 "     id=\"line45\"\n"
3368 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3369 "     fill=\"none\"\n"
3370 "     stroke=\"#a45c94\"\n"
3371 "     stroke-width=\"1.5\"\n"
3372 "     stroke-linecap=\"round\"\n"
3373 "     stroke-miterlimit=\"10\"\n"
3374 "     x1=\"48.8\"\n"
3375 "     y1=\"36.2\"\n"
3376 "     x2=\"48.8\"\n"
3377 "     y2=\"52.1\"\n"
3378 "     id=\"line47\"\n"
3379 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3380 "     fill=\"none\"\n"
3381 "     stroke=\"#a45c94\"\n"
3382 "     stroke-width=\"1.5\"\n"
3383 "     stroke-linecap=\"round\"\n"
3384 "     stroke-miterlimit=\"10\"\n"
3385 "     x1=\"50.4\"\n"
3386 "     y1=\"42.5\"\n"
3387 "     x2=\"50.4\"\n"
3388 "     y2=\"45.9\"\n"
3389 "     id=\"line49\"\n"
3390 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3391 "     fill=\"none\"\n"
3392 "     stroke=\"#a45c94\"\n"
3393 "     stroke-width=\"1.5\"\n"
3394 "     stroke-linecap=\"round\"\n"
3395 "     stroke-miterlimit=\"10\"\n"
3396 "     x1=\"52.1\"\n"
3397 "     y1=\"39.3\"\n"
3398 "     x2=\"52.1\"\n"
3399 "     y2=\"49\"\n"
3400 "     id=\"line51\"\n"
3401 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3402 "     fill=\"none\"\n"
3403 "     stroke=\"#a45c94\"\n"
3404 "     stroke-width=\"1.5\"\n"
3405 "     stroke-linecap=\"round\"\n"
3406 "     stroke-miterlimit=\"10\"\n"
3407 "     x1=\"53.8\"\n"
3408 "     y1=\"34.8\"\n"
3409 "     x2=\"53.8\"\n"
3410 "     y2=\"53.5\"\n"
3411 "     id=\"line53\"\n"
3412 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3413 "     fill=\"none\"\n"
3414 "     stroke=\"#a45c94\"\n"
3415 "     stroke-width=\"1.5\"\n"
3416 "     stroke-linecap=\"round\"\n"
3417 "     stroke-miterlimit=\"10\"\n"
3418 "     x1=\"55.4\"\n"
3419 "     y1=\"42.2\"\n"
3420 "     x2=\"55.4\"\n"
3421 "     y2=\"46.1\"\n"
3422 "     id=\"line55\"\n"
3423 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3424 "     fill=\"none\"\n"
3425 "     stroke=\"#a45c94\"\n"
3426 "     stroke-width=\"1.5\"\n"
3427 "     stroke-linecap=\"round\"\n"
3428 "     stroke-miterlimit=\"10\"\n"
3429 "     x1=\"57.1\"\n"
3430 "     y1=\"41\"\n"
3431 "     x2=\"57.1\"\n"
3432 "     y2=\"47.3\"\n"
3433 "     id=\"line57\"\n"
3434 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3435 "     fill=\"none\"\n"
3436 "     stroke=\"#a45c94\"\n"
3437 "     stroke-width=\"1.5\"\n"
3438 "     stroke-linecap=\"round\"\n"
3439 "     stroke-miterlimit=\"10\"\n"
3440 "     x1=\"58.8\"\n"
3441 "     y1=\"35.4\"\n"
3442 "     x2=\"58.8\"\n"
3443 "     y2=\"53\"\n"
3444 "     id=\"line59\"\n"
3445 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3446 "     fill=\"none\"\n"
3447 "     stroke=\"#a45c94\"\n"
3448 "     stroke-width=\"1.5\"\n"
3449 "     stroke-linecap=\"round\"\n"
3450 "     stroke-miterlimit=\"10\"\n"
3451 "     x1=\"60.4\"\n"
3452 "     y1=\"32.6\"\n"
3453 "     x2=\"60.4\"\n"
3454 "     y2=\"55.8\"\n"
3455 "     id=\"line61\"\n"
3456 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3457 "     fill=\"none\"\n"
3458 "     stroke=\"#a45c94\"\n"
3459 "     stroke-width=\"1.5\"\n"
3460 "     stroke-linecap=\"round\"\n"
3461 "     stroke-miterlimit=\"10\"\n"
3462 "     x1=\"62.1\"\n"
3463 "     y1=\"37.4\"\n"
3464 "     x2=\"62.1\"\n"
3465 "     y2=\"50.9\"\n"
3466 "     id=\"line63\"\n"
3467 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3468 "     fill=\"none\"\n"
3469 "     stroke=\"#a45c94\"\n"
3470 "     stroke-width=\"1.5\"\n"
3471 "     stroke-linecap=\"round\"\n"
3472 "     stroke-miterlimit=\"10\"\n"
3473 "     x1=\"63.8\"\n"
3474 "     y1=\"38.1\"\n"
3475 "     x2=\"63.8\"\n"
3476 "     y2=\"50.2\"\n"
3477 "     id=\"line65\"\n"
3478 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3479 "     fill=\"none\"\n"
3480 "     stroke=\"#a45c94\"\n"
3481 "     stroke-width=\"1.5\"\n"
3482 "     stroke-linecap=\"round\"\n"
3483 "     stroke-miterlimit=\"10\"\n"
3484 "     x1=\"65.4\"\n"
3485 "     y1=\"42.2\"\n"
3486 "     x2=\"65.4\"\n"
3487 "     y2=\"46.1\"\n"
3488 "     id=\"line67\"\n"
3489 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3490 "     fill=\"none\"\n"
3491 "     stroke=\"#a45c94\"\n"
3492 "     stroke-width=\"1.5\"\n"
3493 "     stroke-linecap=\"round\"\n"
3494 "     stroke-miterlimit=\"10\"\n"
3495 "     x1=\"67.1\"\n"
3496 "     y1=\"38.9\"\n"
3497 "     x2=\"67.1\"\n"
3498 "     y2=\"49.4\"\n"
3499 "     id=\"line69\"\n"
3500 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3501 "     fill=\"none\"\n"
3502 "     stroke=\"#a45c94\"\n"
3503 "     stroke-width=\"1.5\"\n"
3504 "     stroke-linecap=\"round\"\n"
3505 "     stroke-miterlimit=\"10\"\n"
3506 "     x1=\"68.8\"\n"
3507 "     y1=\"43.6\"\n"
3508 "     x2=\"68.8\"\n"
3509 "     y2=\"44.7\"\n"
3510 "     id=\"line71\"\n"
3511 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3512 "     fill=\"none\"\n"
3513 "     stroke=\"#a45c94\"\n"
3514 "     stroke-width=\"1.5\"\n"
3515 "     stroke-linecap=\"round\"\n"
3516 "     stroke-miterlimit=\"10\"\n"
3517 "     x1=\"70.4\"\n"
3518 "     y1=\"41.4\"\n"
3519 "     x2=\"70.4\"\n"
3520 "     y2=\"47\"\n"
3521 "     id=\"line73\"\n"
3522 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3523 "     fill=\"none\"\n"
3524 "     stroke=\"#a45c94\"\n"
3525 "     stroke-width=\"1.5\"\n"
3526 "     stroke-linecap=\"round\"\n"
3527 "     stroke-miterlimit=\"10\"\n"
3528 "     x1=\"72.1\"\n"
3529 "     y1=\"39\"\n"
3530 "     x2=\"72.1\"\n"
3531 "     y2=\"49.3\"\n"
3532 "     id=\"line75\"\n"
3533 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3534 "     fill=\"none\"\n"
3535 "     stroke=\"#a45c94\"\n"
3536 "     stroke-width=\"1.5\"\n"
3537 "     stroke-linecap=\"round\"\n"
3538 "     stroke-miterlimit=\"10\"\n"
3539 "     x1=\"73.8\"\n"
3540 "     y1=\"40.9\"\n"
3541 "     x2=\"73.8\"\n"
3542 "     y2=\"47.5\"\n"
3543 "     id=\"line77\"\n"
3544 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3545 "     fill=\"none\"\n"
3546 "     stroke=\"#a45c94\"\n"
3547 "     stroke-width=\"1.5\"\n"
3548 "     stroke-linecap=\"round\"\n"
3549 "     stroke-miterlimit=\"10\"\n"
3550 "     x1=\"75.4\"\n"
3551 "     y1=\"40.6\"\n"
3552 "     x2=\"75.4\"\n"
3553 "     y2=\"47.8\"\n"
3554 "     id=\"line79\"\n"
3555 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3556 "     fill=\"none\"\n"
3557 "     stroke=\"#a45c94\"\n"
3558 "     stroke-width=\"1.5\"\n"
3559 "     stroke-linecap=\"round\"\n"
3560 "     stroke-miterlimit=\"10\"\n"
3561 "     x1=\"77.1\"\n"
3562 "     y1=\"38.4\"\n"
3563 "     x2=\"77.1\"\n"
3564 "     y2=\"49.9\"\n"
3565 "     id=\"line81\"\n"
3566 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3567 "     fill=\"none\"\n"
3568 "     stroke=\"#a45c94\"\n"
3569 "     stroke-width=\"1.5\"\n"
3570 "     stroke-linecap=\"round\"\n"
3571 "     stroke-miterlimit=\"10\"\n"
3572 "     x1=\"78.8\"\n"
3573 "     y1=\"42\"\n"
3574 "     x2=\"78.8\"\n"
3575 "     y2=\"46.3\"\n"
3576 "     id=\"line83\"\n"
3577 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3578 "     fill=\"none\"\n"
3579 "     stroke=\"#a45c94\"\n"
3580 "     stroke-width=\"1.5\"\n"
3581 "     stroke-linecap=\"round\"\n"
3582 "     stroke-miterlimit=\"10\"\n"
3583 "     x1=\"80.4\"\n"
3584 "     y1=\"42.2\"\n"
3585 "     x2=\"80.4\"\n"
3586 "     y2=\"46.1\"\n"
3587 "     id=\"line85\"\n"
3588 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3589 "     fill=\"none\"\n"
3590 "     stroke=\"#a45c94\"\n"
3591 "     stroke-width=\"1.5\"\n"
3592 "     stroke-linecap=\"round\"\n"
3593 "     stroke-miterlimit=\"10\"\n"
3594 "     x1=\"82.1\"\n"
3595 "     y1=\"43.6\"\n"
3596 "     x2=\"82.1\"\n"
3597 "     y2=\"44.7\"\n"
3598 "     id=\"line87\"\n"
3599 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3600 "     fill=\"none\"\n"
3601 "     stroke=\"#a45c94\"\n"
3602 "     stroke-width=\"1.5\"\n"
3603 "     stroke-linecap=\"round\"\n"
3604 "     stroke-miterlimit=\"10\"\n"
3605 "     x1=\"83.8\"\n"
3606 "     y1=\"42.6\"\n"
3607 "     x2=\"83.8\"\n"
3608 "     y2=\"45.7\"\n"
3609 "     id=\"line89\"\n"
3610 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3611 "     fill=\"none\"\n"
3612 "     stroke=\"#a45c94\"\n"
3613 "     stroke-width=\"1.5\"\n"
3614 "     stroke-linecap=\"round\"\n"
3615 "     stroke-miterlimit=\"10\"\n"
3616 "     x1=\"85.4\"\n"
3617 "     y1=\"43.3\"\n"
3618 "     x2=\"85.4\"\n"
3619 "     y2=\"45\"\n"
3620 "     id=\"line91\"\n"
3621 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3622 "     fill=\"none\"\n"
3623 "     stroke=\"#a45c94\"\n"
3624 "     stroke-width=\"1.5\"\n"
3625 "     stroke-linecap=\"round\"\n"
3626 "     stroke-miterlimit=\"10\"\n"
3627 "     x1=\"87.1\"\n"
3628 "     y1=\"39.9\"\n"
3629 "     x2=\"87.1\"\n"
3630 "     y2=\"48.4\"\n"
3631 "     id=\"line93\"\n"
3632 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3633 "     fill=\"none\"\n"
3634 "     stroke=\"#a45c94\"\n"
3635 "     stroke-width=\"1.5\"\n"
3636 "     stroke-linecap=\"round\"\n"
3637 "     stroke-miterlimit=\"10\"\n"
3638 "     x1=\"88.8\"\n"
3639 "     y1=\"42.9\"\n"
3640 "     x2=\"88.8\"\n"
3641 "     y2=\"45.4\"\n"
3642 "     id=\"line95\"\n"
3643 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3644 "     fill=\"none\"\n"
3645 "     stroke=\"#a45c94\"\n"
3646 "     stroke-width=\"1.5\"\n"
3647 "     stroke-linecap=\"round\"\n"
3648 "     stroke-miterlimit=\"10\"\n"
3649 "     x1=\"90.4\"\n"
3650 "     y1=\"43.6\"\n"
3651 "     x2=\"90.4\"\n"
3652 "     y2=\"44.7\"\n"
3653 "     id=\"line97\"\n"
3654 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3655 "     fill=\"none\"\n"
3656 "     stroke=\"#a45c94\"\n"
3657 "     stroke-width=\"1.5\"\n"
3658 "     stroke-linecap=\"round\"\n"
3659 "     stroke-miterlimit=\"10\"\n"
3660 "     x1=\"92.1\"\n"
3661 "     y1=\"43.6\"\n"
3662 "     x2=\"92.1\"\n"
3663 "     y2=\"44.7\"\n"
3664 "     id=\"line99\"\n"
3665 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3666 "     fill=\"none\"\n"
3667 "     stroke=\"#a45c94\"\n"
3668 "     stroke-width=\"1.5\"\n"
3669 "     stroke-linecap=\"round\"\n"
3670 "     stroke-miterlimit=\"10\"\n"
3671 "     x1=\"93.8\"\n"
3672 "     y1=\"42.7\"\n"
3673 "     x2=\"93.8\"\n"
3674 "     y2=\"45.6\"\n"
3675 "     id=\"line101\"\n"
3676 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3677 "     fill=\"none\"\n"
3678 "     stroke=\"#a45c94\"\n"
3679 "     stroke-width=\"1.5\"\n"
3680 "     stroke-linecap=\"round\"\n"
3681 "     stroke-miterlimit=\"10\"\n"
3682 "     x1=\"95.4\"\n"
3683 "     y1=\"41.1\"\n"
3684 "     x2=\"95.4\"\n"
3685 "     y2=\"47.2\"\n"
3686 "     id=\"line103\"\n"
3687 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3688 "     fill=\"none\"\n"
3689 "     stroke=\"#a45c94\"\n"
3690 "     stroke-width=\"1.5\"\n"
3691 "     stroke-linecap=\"round\"\n"
3692 "     stroke-miterlimit=\"10\"\n"
3693 "     x1=\"97.1\"\n"
3694 "     y1=\"42.7\"\n"
3695 "     x2=\"97.1\"\n"
3696 "     y2=\"45.6\"\n"
3697 "     id=\"line105\"\n"
3698 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3699 "     fill=\"none\"\n"
3700 "     stroke=\"#a45c94\"\n"
3701 "     stroke-width=\"1.5\"\n"
3702 "     stroke-linecap=\"round\"\n"
3703 "     stroke-miterlimit=\"10\"\n"
3704 "     x1=\"98.8\"\n"
3705 "     y1=\"43.6\"\n"
3706 "     x2=\"98.8\"\n"
3707 "     y2=\"44.7\"\n"
3708 "     id=\"line107\"\n"
3709 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3710 "     fill=\"none\"\n"
3711 "     stroke=\"#a45c94\"\n"
3712 "     stroke-width=\"1.5\"\n"
3713 "     stroke-linecap=\"round\"\n"
3714 "     stroke-miterlimit=\"10\"\n"
3715 "     x1=\"100.4\"\n"
3716 "     y1=\"43.1\"\n"
3717 "     x2=\"100.4\"\n"
3718 "     y2=\"45.2\"\n"
3719 "     id=\"line109\"\n"
3720 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3721 "     fill=\"none\"\n"
3722 "     stroke=\"#a45c94\"\n"
3723 "     stroke-width=\"1.5\"\n"
3724 "     stroke-linecap=\"round\"\n"
3725 "     stroke-miterlimit=\"10\"\n"
3726 "     x1=\"102.1\"\n"
3727 "     y1=\"43.6\"\n"
3728 "     x2=\"102.1\"\n"
3729 "     y2=\"44.7\"\n"
3730 "     id=\"line111\"\n"
3731 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3732 "     fill=\"none\"\n"
3733 "     stroke=\"#a45c94\"\n"
3734 "     stroke-width=\"1.5\"\n"
3735 "     stroke-linecap=\"round\"\n"
3736 "     stroke-miterlimit=\"10\"\n"
3737 "     x1=\"103.8\"\n"
3738 "     y1=\"42\"\n"
3739 "     x2=\"103.8\"\n"
3740 "     y2=\"46.3\"\n"
3741 "     id=\"line113\"\n"
3742 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3743 "     fill=\"none\"\n"
3744 "     stroke=\"#a45c94\"\n"
3745 "     stroke-width=\"1.5\"\n"
3746 "     stroke-linecap=\"round\"\n"
3747 "     stroke-miterlimit=\"10\"\n"
3748 "     x1=\"105.4\"\n"
3749 "     y1=\"43.6\"\n"
3750 "     x2=\"105.4\"\n"
3751 "     y2=\"44.7\"\n"
3752 "     id=\"line115\"\n"
3753 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3754 "     fill=\"none\"\n"
3755 "     stroke=\"#a45c94\"\n"
3756 "     stroke-width=\"1.5\"\n"
3757 "     stroke-linecap=\"round\"\n"
3758 "     stroke-miterlimit=\"10\"\n"
3759 "     x1=\"107.1\"\n"
3760 "     y1=\"43.8\"\n"
3761 "     x2=\"107.1\"\n"
3762 "     y2=\"44.5\"\n"
3763 "     id=\"line117\"\n"
3764 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3765 "     fill=\"none\"\n"
3766 "     stroke=\"#a45c94\"\n"
3767 "     stroke-width=\"1.5\"\n"
3768 "     stroke-linecap=\"round\"\n"
3769 "     stroke-miterlimit=\"10\"\n"
3770 "     x1=\"108.8\"\n"
3771 "     y1=\"43.6\"\n"
3772 "     x2=\"108.8\"\n"
3773 "     y2=\"44.7\"\n"
3774 "     id=\"line119\"\n"
3775 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3776 "     fill=\"none\"\n"
3777 "     stroke=\"#a45c94\"\n"
3778 "     stroke-width=\"1.5\"\n"
3779 "     stroke-linecap=\"round\"\n"
3780 "     stroke-miterlimit=\"10\"\n"
3781 "     x1=\"110.4\"\n"
3782 "     y1=\"43.6\"\n"
3783 "     x2=\"110.4\"\n"
3784 "     y2=\"44.7\"\n"
3785 "     id=\"line121\"\n"
3786 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3787 "     fill=\"none\"\n"
3788 "     stroke=\"#a45c94\"\n"
3789 "     stroke-width=\"1.5\"\n"
3790 "     stroke-linecap=\"round\"\n"
3791 "     stroke-miterlimit=\"10\"\n"
3792 "     x1=\"112.1\"\n"
3793 "     y1=\"42.6\"\n"
3794 "     x2=\"112.1\"\n"
3795 "     y2=\"45.7\"\n"
3796 "     id=\"line123\"\n"
3797 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3798 "     fill=\"none\"\n"
3799 "     stroke=\"#a45c94\"\n"
3800 "     stroke-width=\"1.5\"\n"
3801 "     stroke-linecap=\"round\"\n"
3802 "     stroke-miterlimit=\"10\"\n"
3803 "     x1=\"113.8\"\n"
3804 "     y1=\"43.1\"\n"
3805 "     x2=\"113.8\"\n"
3806 "     y2=\"45.2\"\n"
3807 "     id=\"line125\"\n"
3808 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3809 "     fill=\"none\"\n"
3810 "     stroke=\"#a45c94\"\n"
3811 "     stroke-width=\"1.5\"\n"
3812 "     stroke-linecap=\"round\"\n"
3813 "     stroke-miterlimit=\"10\"\n"
3814 "     x1=\"115.4\"\n"
3815 "     y1=\"43.6\"\n"
3816 "     x2=\"115.4\"\n"
3817 "     y2=\"44.7\"\n"
3818 "     id=\"line127\"\n"
3819 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3820 "     fill=\"none\"\n"
3821 "     stroke=\"#a45c94\"\n"
3822 "     stroke-width=\"1.5\"\n"
3823 "     stroke-linecap=\"round\"\n"
3824 "     stroke-miterlimit=\"10\"\n"
3825 "     x1=\"117.1\"\n"
3826 "     y1=\"43.8\"\n"
3827 "     x2=\"117.1\"\n"
3828 "     y2=\"44.5\"\n"
3829 "     id=\"line129\"\n"
3830 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3831 "     fill=\"none\"\n"
3832 "     stroke=\"#a45c94\"\n"
3833 "     stroke-width=\"1.5\"\n"
3834 "     stroke-linecap=\"round\"\n"
3835 "     stroke-miterlimit=\"10\"\n"
3836 "     x1=\"118.8\"\n"
3837 "     y1=\"43.8\"\n"
3838 "     x2=\"118.8\"\n"
3839 "     y2=\"44.5\"\n"
3840 "     id=\"line131\"\n"
3841 "     style=\"stroke:#a45c94;stroke-opacity:1\" /></svg>";
3842 
3843 const char* wizard_AudioApp_svg = (const char*) temp_binary_data_21;
3844 
3845 //================== wizard_AudioPlugin.svg ==================
3846 static const unsigned char temp_binary_data_22[] =
3847 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
3848 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
3849 "\n"
3850 "<svg\n"
3851 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
3852 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
3853 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
3854 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
3855 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
3856 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
3857 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
3858 "   version=\"1.1\"\n"
3859 "   id=\"Layer_1\"\n"
3860 "   x=\"0px\"\n"
3861 "   y=\"0px\"\n"
3862 "   viewBox=\"0 0 136.9 114.8\"\n"
3863 "   enable-background=\"new 0 0 136.9 114.8\"\n"
3864 "   xml:space=\"preserve\"\n"
3865 "   inkscape:version=\"0.91 r13725\"\n"
3866 "   sodipodi:docname=\"wizard_AudioPlugin.svg\"><metadata\n"
3867 "     id=\"metadata181\"><rdf:RDF><cc:Work\n"
3868 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
3869 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
3870 "     id=\"defs179\" /><sodipodi:namedview\n"
3871 "     pagecolor=\"#ffffff\"\n"
3872 "     bordercolor=\"#666666\"\n"
3873 "     borderopacity=\"1\"\n"
3874 "     objecttolerance=\"10\"\n"
3875 "     gridtolerance=\"10\"\n"
3876 "     guidetolerance=\"10\"\n"
3877 "     inkscape:pageopacity=\"0\"\n"
3878 "     inkscape:pageshadow=\"2\"\n"
3879 "     inkscape:window-width=\"1680\"\n"
3880 "     inkscape:window-height=\"1001\"\n"
3881 "     id=\"namedview177\"\n"
3882 "     showgrid=\"false\"\n"
3883 "     inkscape:zoom=\"8.2229963\"\n"
3884 "     inkscape:cx=\"67.455426\"\n"
3885 "     inkscape:cy=\"64.924074\"\n"
3886 "     inkscape:window-x=\"0\"\n"
3887 "     inkscape:window-y=\"1\"\n"
3888 "     inkscape:window-maximized=\"1\"\n"
3889 "     inkscape:current-layer=\"Layer_1\" /><g\n"
3890 "     id=\"Layer_1_23_\"\n"
3891 "     style=\"stroke:#a45c94;stroke-opacity:1\"><rect\n"
3892 "       x=\"16.3\"\n"
3893 "       y=\"10.9\"\n"
3894 "       fill=\"none\"\n"
3895 "       stroke=\"#a45c94\"\n"
3896 "       stroke-width=\"1.3469\"\n"
3897 "       stroke-miterlimit=\"10\"\n"
3898 "       width=\"103.6\"\n"
3899 "       height=\"67.5\"\n"
3900 "       id=\"rect4\"\n"
3901 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><rect\n"
3902 "     x=\"16.3\"\n"
3903 "     y=\"10.9\"\n"
3904 "     fill=\"none\"\n"
3905 "     stroke=\"#a45c94\"\n"
3906 "     stroke-width=\"1.3469\"\n"
3907 "     stroke-miterlimit=\"10\"\n"
3908 "     width=\"103.6\"\n"
3909 "     height=\"2.4\"\n"
3910 "     id=\"rect6\"\n"
3911 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
3912 "     fill=\"none\"\n"
3913 "     stroke=\"#a45c94\"\n"
3914 "     stroke-width=\"1.3469\"\n"
3915 "     stroke-miterlimit=\"10\"\n"
3916 "     d=\"M130,114.8H6.9c-3.8,0-6.9-3.1-6.9-6.9V6.9  C0,3.1,3.1,0,6.9,0H130c3.8,0,6.9,3.1,6.9,6.9v101.1C136.9,111.7,133.9,114.8,130,114.8z\"\n"
3917 "     id=\"path8\"\n"
3918 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
3919 "     id=\"Layer_1_8_\"\n"
3920 "     style=\"stroke:#a45c94;stroke-opacity:1\"><rect\n"
3921 "       x=\"35.7\"\n"
3922 "       y=\"23.6\"\n"
3923 "       fill=\"none\"\n"
3924 "       stroke=\"#a45c94\"\n"
3925 "       stroke-width=\"1.3469\"\n"
3926 "       stroke-miterlimit=\"10\"\n"
3927 "       width=\"64.4\"\n"
3928 "       height=\"42.3\"\n"
3929 "       id=\"rect11\"\n"
3930 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><line\n"
3931 "     fill=\"none\"\n"
3932 "     stroke=\"#a45c94\"\n"
3933 "     stroke-width=\"1.5\"\n"
3934 "     stroke-linecap=\"round\"\n"
3935 "     stroke-miterlimit=\"10\"\n"
3936 "     x1=\"36\"\n"
3937 "     y1=\"44.1\"\n"
3938 "     x2=\"36\"\n"
3939 "     y2=\"44.6\"\n"
3940 "     id=\"line13\"\n"
3941 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3942 "     fill=\"none\"\n"
3943 "     stroke=\"#a45c94\"\n"
3944 "     stroke-width=\"1.5\"\n"
3945 "     stroke-linecap=\"round\"\n"
3946 "     stroke-miterlimit=\"10\"\n"
3947 "     x1=\"37.1\"\n"
3948 "     y1=\"44\"\n"
3949 "     x2=\"37.1\"\n"
3950 "     y2=\"44.7\"\n"
3951 "     id=\"line15\"\n"
3952 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3953 "     fill=\"none\"\n"
3954 "     stroke=\"#a45c94\"\n"
3955 "     stroke-width=\"1.5\"\n"
3956 "     stroke-linecap=\"round\"\n"
3957 "     stroke-miterlimit=\"10\"\n"
3958 "     x1=\"38.1\"\n"
3959 "     y1=\"44.1\"\n"
3960 "     x2=\"38.1\"\n"
3961 "     y2=\"44.6\"\n"
3962 "     id=\"line17\"\n"
3963 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3964 "     fill=\"none\"\n"
3965 "     stroke=\"#a45c94\"\n"
3966 "     stroke-width=\"1.5\"\n"
3967 "     stroke-linecap=\"round\"\n"
3968 "     stroke-miterlimit=\"10\"\n"
3969 "     x1=\"39.2\"\n"
3970 "     y1=\"44\"\n"
3971 "     x2=\"39.2\"\n"
3972 "     y2=\"44.7\"\n"
3973 "     id=\"line19\"\n"
3974 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3975 "     fill=\"none\"\n"
3976 "     stroke=\"#a45c94\"\n"
3977 "     stroke-width=\"1.5\"\n"
3978 "     stroke-linecap=\"round\"\n"
3979 "     stroke-miterlimit=\"10\"\n"
3980 "     x1=\"40.2\"\n"
3981 "     y1=\"43.7\"\n"
3982 "     x2=\"40.2\"\n"
3983 "     y2=\"45\"\n"
3984 "     id=\"line21\"\n"
3985 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3986 "     fill=\"none\"\n"
3987 "     stroke=\"#a45c94\"\n"
3988 "     stroke-width=\"1.5\"\n"
3989 "     stroke-linecap=\"round\"\n"
3990 "     stroke-miterlimit=\"10\"\n"
3991 "     x1=\"41.3\"\n"
3992 "     y1=\"43.2\"\n"
3993 "     x2=\"41.3\"\n"
3994 "     y2=\"45.5\"\n"
3995 "     id=\"line23\"\n"
3996 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
3997 "     fill=\"none\"\n"
3998 "     stroke=\"#a45c94\"\n"
3999 "     stroke-width=\"1.5\"\n"
4000 "     stroke-linecap=\"round\"\n"
4001 "     stroke-miterlimit=\"10\"\n"
4002 "     x1=\"42.3\"\n"
4003 "     y1=\"44.2\"\n"
4004 "     x2=\"42.3\"\n"
4005 "     y2=\"44.5\"\n"
4006 "     id=\"line25\"\n"
4007 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4008 "     fill=\"none\"\n"
4009 "     stroke=\"#a45c94\"\n"
4010 "     stroke-width=\"1.5\"\n"
4011 "     stroke-linecap=\"round\"\n"
4012 "     stroke-miterlimit=\"10\"\n"
4013 "     x1=\"43.3\"\n"
4014 "     y1=\"43.8\"\n"
4015 "     x2=\"43.3\"\n"
4016 "     y2=\"44.9\"\n"
4017 "     id=\"line27\"\n"
4018 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4019 "     fill=\"none\"\n"
4020 "     stroke=\"#a45c94\"\n"
4021 "     stroke-width=\"1.5\"\n"
4022 "     stroke-linecap=\"round\"\n"
4023 "     stroke-miterlimit=\"10\"\n"
4024 "     x1=\"44.4\"\n"
4025 "     y1=\"35.1\"\n"
4026 "     x2=\"44.4\"\n"
4027 "     y2=\"53.6\"\n"
4028 "     id=\"line29\"\n"
4029 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4030 "     fill=\"none\"\n"
4031 "     stroke=\"#a45c94\"\n"
4032 "     stroke-width=\"1.5\"\n"
4033 "     stroke-linecap=\"round\"\n"
4034 "     stroke-miterlimit=\"10\"\n"
4035 "     x1=\"45.4\"\n"
4036 "     y1=\"42.3\"\n"
4037 "     x2=\"45.4\"\n"
4038 "     y2=\"46.4\"\n"
4039 "     id=\"line31\"\n"
4040 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4041 "     fill=\"none\"\n"
4042 "     stroke=\"#a45c94\"\n"
4043 "     stroke-width=\"1.5\"\n"
4044 "     stroke-linecap=\"round\"\n"
4045 "     stroke-miterlimit=\"10\"\n"
4046 "     x1=\"46.5\"\n"
4047 "     y1=\"43.4\"\n"
4048 "     x2=\"46.5\"\n"
4049 "     y2=\"45.3\"\n"
4050 "     id=\"line33\"\n"
4051 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4052 "     fill=\"none\"\n"
4053 "     stroke=\"#a45c94\"\n"
4054 "     stroke-width=\"1.5\"\n"
4055 "     stroke-linecap=\"round\"\n"
4056 "     stroke-miterlimit=\"10\"\n"
4057 "     x1=\"47.5\"\n"
4058 "     y1=\"39.6\"\n"
4059 "     x2=\"47.5\"\n"
4060 "     y2=\"49.1\"\n"
4061 "     id=\"line35\"\n"
4062 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4063 "     fill=\"none\"\n"
4064 "     stroke=\"#a45c94\"\n"
4065 "     stroke-width=\"1.5\"\n"
4066 "     stroke-linecap=\"round\"\n"
4067 "     stroke-miterlimit=\"10\"\n"
4068 "     x1=\"48.6\"\n"
4069 "     y1=\"37.5\"\n"
4070 "     x2=\"48.6\"\n"
4071 "     y2=\"51.2\"\n"
4072 "     id=\"line37\"\n"
4073 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4074 "     fill=\"none\"\n"
4075 "     stroke=\"#a45c94\"\n"
4076 "     stroke-width=\"1.5\"\n"
4077 "     stroke-linecap=\"round\"\n"
4078 "     stroke-miterlimit=\"10\"\n"
4079 "     x1=\"49.6\"\n"
4080 "     y1=\"43.4\"\n"
4081 "     x2=\"49.6\"\n"
4082 "     y2=\"45.3\"\n"
4083 "     id=\"line39\"\n"
4084 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4085 "     fill=\"none\"\n"
4086 "     stroke=\"#a45c94\"\n"
4087 "     stroke-width=\"1.5\"\n"
4088 "     stroke-linecap=\"round\"\n"
4089 "     stroke-miterlimit=\"10\"\n"
4090 "     x1=\"50.6\"\n"
4091 "     y1=\"40.1\"\n"
4092 "     x2=\"50.6\"\n"
4093 "     y2=\"48.6\"\n"
4094 "     id=\"line41\"\n"
4095 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4096 "     fill=\"none\"\n"
4097 "     stroke=\"#a45c94\"\n"
4098 "     stroke-width=\"1.5\"\n"
4099 "     stroke-linecap=\"round\"\n"
4100 "     stroke-miterlimit=\"10\"\n"
4101 "     x1=\"51.7\"\n"
4102 "     y1=\"33.9\"\n"
4103 "     x2=\"51.7\"\n"
4104 "     y2=\"54.9\"\n"
4105 "     id=\"line43\"\n"
4106 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4107 "     fill=\"none\"\n"
4108 "     stroke=\"#a45c94\"\n"
4109 "     stroke-width=\"1.5\"\n"
4110 "     stroke-linecap=\"round\"\n"
4111 "     stroke-miterlimit=\"10\"\n"
4112 "     x1=\"52.7\"\n"
4113 "     y1=\"41.3\"\n"
4114 "     x2=\"52.7\"\n"
4115 "     y2=\"47.4\"\n"
4116 "     id=\"line45\"\n"
4117 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4118 "     fill=\"none\"\n"
4119 "     stroke=\"#a45c94\"\n"
4120 "     stroke-width=\"1.5\"\n"
4121 "     stroke-linecap=\"round\"\n"
4122 "     stroke-miterlimit=\"10\"\n"
4123 "     x1=\"53.8\"\n"
4124 "     y1=\"42.5\"\n"
4125 "     x2=\"53.8\"\n"
4126 "     y2=\"46.3\"\n"
4127 "     id=\"line47\"\n"
4128 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4129 "     fill=\"none\"\n"
4130 "     stroke=\"#a45c94\"\n"
4131 "     stroke-width=\"1.5\"\n"
4132 "     stroke-linecap=\"round\"\n"
4133 "     stroke-miterlimit=\"10\"\n"
4134 "     x1=\"54.8\"\n"
4135 "     y1=\"43.4\"\n"
4136 "     x2=\"54.8\"\n"
4137 "     y2=\"45.3\"\n"
4138 "     id=\"line49\"\n"
4139 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4140 "     fill=\"none\"\n"
4141 "     stroke=\"#a45c94\"\n"
4142 "     stroke-width=\"1.5\"\n"
4143 "     stroke-linecap=\"round\"\n"
4144 "     stroke-miterlimit=\"10\"\n"
4145 "     x1=\"55.9\"\n"
4146 "     y1=\"39.4\"\n"
4147 "     x2=\"55.9\"\n"
4148 "     y2=\"49.3\"\n"
4149 "     id=\"line51\"\n"
4150 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4151 "     fill=\"none\"\n"
4152 "     stroke=\"#a45c94\"\n"
4153 "     stroke-width=\"1.5\"\n"
4154 "     stroke-linecap=\"round\"\n"
4155 "     stroke-miterlimit=\"10\"\n"
4156 "     x1=\"56.9\"\n"
4157 "     y1=\"43.3\"\n"
4158 "     x2=\"56.9\"\n"
4159 "     y2=\"45.4\"\n"
4160 "     id=\"line53\"\n"
4161 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4162 "     fill=\"none\"\n"
4163 "     stroke=\"#a45c94\"\n"
4164 "     stroke-width=\"1.5\"\n"
4165 "     stroke-linecap=\"round\"\n"
4166 "     stroke-miterlimit=\"10\"\n"
4167 "     x1=\"57.9\"\n"
4168 "     y1=\"41.3\"\n"
4169 "     x2=\"57.9\"\n"
4170 "     y2=\"47.4\"\n"
4171 "     id=\"line55\"\n"
4172 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4173 "     fill=\"none\"\n"
4174 "     stroke=\"#a45c94\"\n"
4175 "     stroke-width=\"1.5\"\n"
4176 "     stroke-linecap=\"round\"\n"
4177 "     stroke-miterlimit=\"10\"\n"
4178 "     x1=\"59\"\n"
4179 "     y1=\"38.5\"\n"
4180 "     x2=\"59\"\n"
4181 "     y2=\"50.2\"\n"
4182 "     id=\"line57\"\n"
4183 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4184 "     fill=\"none\"\n"
4185 "     stroke=\"#a45c94\"\n"
4186 "     stroke-width=\"1.5\"\n"
4187 "     stroke-linecap=\"round\"\n"
4188 "     stroke-miterlimit=\"10\"\n"
4189 "     x1=\"60\"\n"
4190 "     y1=\"43.1\"\n"
4191 "     x2=\"60\"\n"
4192 "     y2=\"45.6\"\n"
4193 "     id=\"line59\"\n"
4194 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4195 "     fill=\"none\"\n"
4196 "     stroke=\"#a45c94\"\n"
4197 "     stroke-width=\"1.5\"\n"
4198 "     stroke-linecap=\"round\"\n"
4199 "     stroke-miterlimit=\"10\"\n"
4200 "     x1=\"61.1\"\n"
4201 "     y1=\"42.4\"\n"
4202 "     x2=\"61.1\"\n"
4203 "     y2=\"46.3\"\n"
4204 "     id=\"line61\"\n"
4205 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4206 "     fill=\"none\"\n"
4207 "     stroke=\"#a45c94\"\n"
4208 "     stroke-width=\"1.5\"\n"
4209 "     stroke-linecap=\"round\"\n"
4210 "     stroke-miterlimit=\"10\"\n"
4211 "     x1=\"62.1\"\n"
4212 "     y1=\"38.8\"\n"
4213 "     x2=\"62.1\"\n"
4214 "     y2=\"49.9\"\n"
4215 "     id=\"line63\"\n"
4216 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4217 "     fill=\"none\"\n"
4218 "     stroke=\"#a45c94\"\n"
4219 "     stroke-width=\"1.5\"\n"
4220 "     stroke-linecap=\"round\"\n"
4221 "     stroke-miterlimit=\"10\"\n"
4222 "     x1=\"63.2\"\n"
4223 "     y1=\"37.1\"\n"
4224 "     x2=\"63.2\"\n"
4225 "     y2=\"51.6\"\n"
4226 "     id=\"line65\"\n"
4227 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4228 "     fill=\"none\"\n"
4229 "     stroke=\"#a45c94\"\n"
4230 "     stroke-width=\"1.5\"\n"
4231 "     stroke-linecap=\"round\"\n"
4232 "     stroke-miterlimit=\"10\"\n"
4233 "     x1=\"64.2\"\n"
4234 "     y1=\"40.1\"\n"
4235 "     x2=\"64.2\"\n"
4236 "     y2=\"48.6\"\n"
4237 "     id=\"line67\"\n"
4238 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4239 "     fill=\"none\"\n"
4240 "     stroke=\"#a45c94\"\n"
4241 "     stroke-width=\"1.5\"\n"
4242 "     stroke-linecap=\"round\"\n"
4243 "     stroke-miterlimit=\"10\"\n"
4244 "     x1=\"65.2\"\n"
4245 "     y1=\"40.6\"\n"
4246 "     x2=\"65.2\"\n"
4247 "     y2=\"48.1\"\n"
4248 "     id=\"line69\"\n"
4249 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4250 "     fill=\"none\"\n"
4251 "     stroke=\"#a45c94\"\n"
4252 "     stroke-width=\"1.5\"\n"
4253 "     stroke-linecap=\"round\"\n"
4254 "     stroke-miterlimit=\"10\"\n"
4255 "     x1=\"66.3\"\n"
4256 "     y1=\"43.1\"\n"
4257 "     x2=\"66.3\"\n"
4258 "     y2=\"45.6\"\n"
4259 "     id=\"line71\"\n"
4260 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4261 "     fill=\"none\"\n"
4262 "     stroke=\"#a45c94\"\n"
4263 "     stroke-width=\"1.5\"\n"
4264 "     stroke-linecap=\"round\"\n"
4265 "     stroke-miterlimit=\"10\"\n"
4266 "     x1=\"67.3\"\n"
4267 "     y1=\"41.1\"\n"
4268 "     x2=\"67.3\"\n"
4269 "     y2=\"47.6\"\n"
4270 "     id=\"line73\"\n"
4271 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4272 "     fill=\"none\"\n"
4273 "     stroke=\"#a45c94\"\n"
4274 "     stroke-width=\"1.5\"\n"
4275 "     stroke-linecap=\"round\"\n"
4276 "     stroke-miterlimit=\"10\"\n"
4277 "     x1=\"68.4\"\n"
4278 "     y1=\"44\"\n"
4279 "     x2=\"68.4\"\n"
4280 "     y2=\"44.7\"\n"
4281 "     id=\"line75\"\n"
4282 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4283 "     fill=\"none\"\n"
4284 "     stroke=\"#a45c94\"\n"
4285 "     stroke-width=\"1.5\"\n"
4286 "     stroke-linecap=\"round\"\n"
4287 "     stroke-miterlimit=\"10\"\n"
4288 "     x1=\"69.4\"\n"
4289 "     y1=\"42.6\"\n"
4290 "     x2=\"69.4\"\n"
4291 "     y2=\"46.1\"\n"
4292 "     id=\"line77\"\n"
4293 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4294 "     fill=\"none\"\n"
4295 "     stroke=\"#a45c94\"\n"
4296 "     stroke-width=\"1.5\"\n"
4297 "     stroke-linecap=\"round\"\n"
4298 "     stroke-miterlimit=\"10\"\n"
4299 "     x1=\"70.5\"\n"
4300 "     y1=\"41.1\"\n"
4301 "     x2=\"70.5\"\n"
4302 "     y2=\"47.6\"\n"
4303 "     id=\"line79\"\n"
4304 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4305 "     fill=\"none\"\n"
4306 "     stroke=\"#a45c94\"\n"
4307 "     stroke-width=\"1.5\"\n"
4308 "     stroke-linecap=\"round\"\n"
4309 "     stroke-miterlimit=\"10\"\n"
4310 "     x1=\"71.5\"\n"
4311 "     y1=\"42.3\"\n"
4312 "     x2=\"71.5\"\n"
4313 "     y2=\"46.4\"\n"
4314 "     id=\"line81\"\n"
4315 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4316 "     fill=\"none\"\n"
4317 "     stroke=\"#a45c94\"\n"
4318 "     stroke-width=\"1.5\"\n"
4319 "     stroke-linecap=\"round\"\n"
4320 "     stroke-miterlimit=\"10\"\n"
4321 "     x1=\"72.5\"\n"
4322 "     y1=\"42.1\"\n"
4323 "     x2=\"72.5\"\n"
4324 "     y2=\"46.6\"\n"
4325 "     id=\"line83\"\n"
4326 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4327 "     fill=\"none\"\n"
4328 "     stroke=\"#a45c94\"\n"
4329 "     stroke-width=\"1.5\"\n"
4330 "     stroke-linecap=\"round\"\n"
4331 "     stroke-miterlimit=\"10\"\n"
4332 "     x1=\"73.6\"\n"
4333 "     y1=\"40.8\"\n"
4334 "     x2=\"73.6\"\n"
4335 "     y2=\"47.9\"\n"
4336 "     id=\"line85\"\n"
4337 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4338 "     fill=\"none\"\n"
4339 "     stroke=\"#a45c94\"\n"
4340 "     stroke-width=\"1.5\"\n"
4341 "     stroke-linecap=\"round\"\n"
4342 "     stroke-miterlimit=\"10\"\n"
4343 "     x1=\"74.6\"\n"
4344 "     y1=\"43\"\n"
4345 "     x2=\"74.6\"\n"
4346 "     y2=\"45.7\"\n"
4347 "     id=\"line87\"\n"
4348 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4349 "     fill=\"none\"\n"
4350 "     stroke=\"#a45c94\"\n"
4351 "     stroke-width=\"1.5\"\n"
4352 "     stroke-linecap=\"round\"\n"
4353 "     stroke-miterlimit=\"10\"\n"
4354 "     x1=\"75.7\"\n"
4355 "     y1=\"43.1\"\n"
4356 "     x2=\"75.7\"\n"
4357 "     y2=\"45.6\"\n"
4358 "     id=\"line89\"\n"
4359 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4360 "     fill=\"none\"\n"
4361 "     stroke=\"#a45c94\"\n"
4362 "     stroke-width=\"1.5\"\n"
4363 "     stroke-linecap=\"round\"\n"
4364 "     stroke-miterlimit=\"10\"\n"
4365 "     x1=\"76.7\"\n"
4366 "     y1=\"44\"\n"
4367 "     x2=\"76.7\"\n"
4368 "     y2=\"44.7\"\n"
4369 "     id=\"line91\"\n"
4370 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4371 "     fill=\"none\"\n"
4372 "     stroke=\"#a45c94\"\n"
4373 "     stroke-width=\"1.5\"\n"
4374 "     stroke-linecap=\"round\"\n"
4375 "     stroke-miterlimit=\"10\"\n"
4376 "     x1=\"77.8\"\n"
4377 "     y1=\"43.4\"\n"
4378 "     x2=\"77.8\"\n"
4379 "     y2=\"45.3\"\n"
4380 "     id=\"line93\"\n"
4381 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4382 "     fill=\"none\"\n"
4383 "     stroke=\"#a45c94\"\n"
4384 "     stroke-width=\"1.5\"\n"
4385 "     stroke-linecap=\"round\"\n"
4386 "     stroke-miterlimit=\"10\"\n"
4387 "     x1=\"78.8\"\n"
4388 "     y1=\"43.8\"\n"
4389 "     x2=\"78.8\"\n"
4390 "     y2=\"44.9\"\n"
4391 "     id=\"line95\"\n"
4392 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4393 "     fill=\"none\"\n"
4394 "     stroke=\"#a45c94\"\n"
4395 "     stroke-width=\"1.5\"\n"
4396 "     stroke-linecap=\"round\"\n"
4397 "     stroke-miterlimit=\"10\"\n"
4398 "     x1=\"79.9\"\n"
4399 "     y1=\"41.7\"\n"
4400 "     x2=\"79.9\"\n"
4401 "     y2=\"47\"\n"
4402 "     id=\"line97\"\n"
4403 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4404 "     fill=\"none\"\n"
4405 "     stroke=\"#a45c94\"\n"
4406 "     stroke-width=\"1.5\"\n"
4407 "     stroke-linecap=\"round\"\n"
4408 "     stroke-miterlimit=\"10\"\n"
4409 "     x1=\"80.9\"\n"
4410 "     y1=\"43.6\"\n"
4411 "     x2=\"80.9\"\n"
4412 "     y2=\"45.2\"\n"
4413 "     id=\"line99\"\n"
4414 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4415 "     fill=\"none\"\n"
4416 "     stroke=\"#a45c94\"\n"
4417 "     stroke-width=\"1.5\"\n"
4418 "     stroke-linecap=\"round\"\n"
4419 "     stroke-miterlimit=\"10\"\n"
4420 "     x1=\"81.9\"\n"
4421 "     y1=\"44\"\n"
4422 "     x2=\"81.9\"\n"
4423 "     y2=\"44.7\"\n"
4424 "     id=\"line101\"\n"
4425 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4426 "     fill=\"none\"\n"
4427 "     stroke=\"#a45c94\"\n"
4428 "     stroke-width=\"1.5\"\n"
4429 "     stroke-linecap=\"round\"\n"
4430 "     stroke-miterlimit=\"10\"\n"
4431 "     x1=\"83\"\n"
4432 "     y1=\"44\"\n"
4433 "     x2=\"83\"\n"
4434 "     y2=\"44.7\"\n"
4435 "     id=\"line103\"\n"
4436 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4437 "     fill=\"none\"\n"
4438 "     stroke=\"#a45c94\"\n"
4439 "     stroke-width=\"1.5\"\n"
4440 "     stroke-linecap=\"round\"\n"
4441 "     stroke-miterlimit=\"10\"\n"
4442 "     x1=\"84\"\n"
4443 "     y1=\"43.4\"\n"
4444 "     x2=\"84\"\n"
4445 "     y2=\"45.3\"\n"
4446 "     id=\"line105\"\n"
4447 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4448 "     fill=\"none\"\n"
4449 "     stroke=\"#a45c94\"\n"
4450 "     stroke-width=\"1.5\"\n"
4451 "     stroke-linecap=\"round\"\n"
4452 "     stroke-miterlimit=\"10\"\n"
4453 "     x1=\"85.1\"\n"
4454 "     y1=\"42.5\"\n"
4455 "     x2=\"85.1\"\n"
4456 "     y2=\"46.3\"\n"
4457 "     id=\"line107\"\n"
4458 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4459 "     fill=\"none\"\n"
4460 "     stroke=\"#a45c94\"\n"
4461 "     stroke-width=\"1.5\"\n"
4462 "     stroke-linecap=\"round\"\n"
4463 "     stroke-miterlimit=\"10\"\n"
4464 "     x1=\"86.1\"\n"
4465 "     y1=\"43.5\"\n"
4466 "     x2=\"86.1\"\n"
4467 "     y2=\"45.2\"\n"
4468 "     id=\"line109\"\n"
4469 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4470 "     fill=\"none\"\n"
4471 "     stroke=\"#a45c94\"\n"
4472 "     stroke-width=\"1.5\"\n"
4473 "     stroke-linecap=\"round\"\n"
4474 "     stroke-miterlimit=\"10\"\n"
4475 "     x1=\"87.2\"\n"
4476 "     y1=\"44\"\n"
4477 "     x2=\"87.2\"\n"
4478 "     y2=\"44.7\"\n"
4479 "     id=\"line111\"\n"
4480 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4481 "     fill=\"none\"\n"
4482 "     stroke=\"#a45c94\"\n"
4483 "     stroke-width=\"1.5\"\n"
4484 "     stroke-linecap=\"round\"\n"
4485 "     stroke-miterlimit=\"10\"\n"
4486 "     x1=\"88.2\"\n"
4487 "     y1=\"43.7\"\n"
4488 "     x2=\"88.2\"\n"
4489 "     y2=\"45\"\n"
4490 "     id=\"line113\"\n"
4491 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4492 "     fill=\"none\"\n"
4493 "     stroke=\"#a45c94\"\n"
4494 "     stroke-width=\"1.5\"\n"
4495 "     stroke-linecap=\"round\"\n"
4496 "     stroke-miterlimit=\"10\"\n"
4497 "     x1=\"89.2\"\n"
4498 "     y1=\"44\"\n"
4499 "     x2=\"89.2\"\n"
4500 "     y2=\"44.7\"\n"
4501 "     id=\"line115\"\n"
4502 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4503 "     fill=\"none\"\n"
4504 "     stroke=\"#a45c94\"\n"
4505 "     stroke-width=\"1.5\"\n"
4506 "     stroke-linecap=\"round\"\n"
4507 "     stroke-miterlimit=\"10\"\n"
4508 "     x1=\"90.3\"\n"
4509 "     y1=\"43\"\n"
4510 "     x2=\"90.3\"\n"
4511 "     y2=\"45.7\"\n"
4512 "     id=\"line117\"\n"
4513 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4514 "     fill=\"none\"\n"
4515 "     stroke=\"#a45c94\"\n"
4516 "     stroke-width=\"1.5\"\n"
4517 "     stroke-linecap=\"round\"\n"
4518 "     stroke-miterlimit=\"10\"\n"
4519 "     x1=\"91.3\"\n"
4520 "     y1=\"44\"\n"
4521 "     x2=\"91.3\"\n"
4522 "     y2=\"44.7\"\n"
4523 "     id=\"line119\"\n"
4524 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4525 "     fill=\"none\"\n"
4526 "     stroke=\"#a45c94\"\n"
4527 "     stroke-width=\"1.5\"\n"
4528 "     stroke-linecap=\"round\"\n"
4529 "     stroke-miterlimit=\"10\"\n"
4530 "     x1=\"92.4\"\n"
4531 "     y1=\"44.2\"\n"
4532 "     x2=\"92.4\"\n"
4533 "     y2=\"44.6\"\n"
4534 "     id=\"line121\"\n"
4535 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4536 "     fill=\"none\"\n"
4537 "     stroke=\"#a45c94\"\n"
4538 "     stroke-width=\"1.5\"\n"
4539 "     stroke-linecap=\"round\"\n"
4540 "     stroke-miterlimit=\"10\"\n"
4541 "     x1=\"93.4\"\n"
4542 "     y1=\"44\"\n"
4543 "     x2=\"93.4\"\n"
4544 "     y2=\"44.7\"\n"
4545 "     id=\"line123\"\n"
4546 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4547 "     fill=\"none\"\n"
4548 "     stroke=\"#a45c94\"\n"
4549 "     stroke-width=\"1.5\"\n"
4550 "     stroke-linecap=\"round\"\n"
4551 "     stroke-miterlimit=\"10\"\n"
4552 "     x1=\"94.5\"\n"
4553 "     y1=\"44\"\n"
4554 "     x2=\"94.5\"\n"
4555 "     y2=\"44.7\"\n"
4556 "     id=\"line125\"\n"
4557 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4558 "     fill=\"none\"\n"
4559 "     stroke=\"#a45c94\"\n"
4560 "     stroke-width=\"1.5\"\n"
4561 "     stroke-linecap=\"round\"\n"
4562 "     stroke-miterlimit=\"10\"\n"
4563 "     x1=\"95.5\"\n"
4564 "     y1=\"43.4\"\n"
4565 "     x2=\"95.5\"\n"
4566 "     y2=\"45.3\"\n"
4567 "     id=\"line127\"\n"
4568 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4569 "     fill=\"none\"\n"
4570 "     stroke=\"#a45c94\"\n"
4571 "     stroke-width=\"1.5\"\n"
4572 "     stroke-linecap=\"round\"\n"
4573 "     stroke-miterlimit=\"10\"\n"
4574 "     x1=\"96.5\"\n"
4575 "     y1=\"43.7\"\n"
4576 "     x2=\"96.5\"\n"
4577 "     y2=\"45\"\n"
4578 "     id=\"line129\"\n"
4579 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4580 "     fill=\"none\"\n"
4581 "     stroke=\"#a45c94\"\n"
4582 "     stroke-width=\"1.5\"\n"
4583 "     stroke-linecap=\"round\"\n"
4584 "     stroke-miterlimit=\"10\"\n"
4585 "     x1=\"97.6\"\n"
4586 "     y1=\"44\"\n"
4587 "     x2=\"97.6\"\n"
4588 "     y2=\"44.7\"\n"
4589 "     id=\"line131\"\n"
4590 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4591 "     fill=\"none\"\n"
4592 "     stroke=\"#a45c94\"\n"
4593 "     stroke-width=\"1.5\"\n"
4594 "     stroke-linecap=\"round\"\n"
4595 "     stroke-miterlimit=\"10\"\n"
4596 "     x1=\"98.6\"\n"
4597 "     y1=\"44.2\"\n"
4598 "     x2=\"98.6\"\n"
4599 "     y2=\"44.6\"\n"
4600 "     id=\"line133\"\n"
4601 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4602 "     fill=\"none\"\n"
4603 "     stroke=\"#a45c94\"\n"
4604 "     stroke-width=\"1.5\"\n"
4605 "     stroke-linecap=\"round\"\n"
4606 "     stroke-miterlimit=\"10\"\n"
4607 "     x1=\"99.7\"\n"
4608 "     y1=\"44.2\"\n"
4609 "     x2=\"99.7\"\n"
4610 "     y2=\"44.6\"\n"
4611 "     id=\"line135\"\n"
4612 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
4613 "     id=\"g137\"\n"
4614 "     style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><g\n"
4615 "       id=\"g139\"\n"
4616 "       style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><line\n"
4617 "         fill=\"none\"\n"
4618 "         stroke=\"#a45c94\"\n"
4619 "         stroke-width=\"1.5\"\n"
4620 "         stroke-miterlimit=\"10\"\n"
4621 "         x1=\"16.3\"\n"
4622 "         y1=\"35.1\"\n"
4623 "         x2=\"35.8\"\n"
4624 "         y2=\"35.1\"\n"
4625 "         id=\"line141\"\n"
4626 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><g\n"
4627 "         id=\"g143\"\n"
4628 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><circle\n"
4629 "           fill=\"#a45c94\"\n"
4630 "           cx=\"35.7\"\n"
4631 "           cy=\"35.1\"\n"
4632 "           r=\"1.7\"\n"
4633 "           id=\"circle145\"\n"
4634 "           style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /></g></g></g><g\n"
4635 "     id=\"g147\"\n"
4636 "     style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><g\n"
4637 "       id=\"g149\"\n"
4638 "       style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><line\n"
4639 "         fill=\"none\"\n"
4640 "         stroke=\"#a45c94\"\n"
4641 "         stroke-width=\"1.5\"\n"
4642 "         stroke-miterlimit=\"10\"\n"
4643 "         x1=\"16.3\"\n"
4644 "         y1=\"54.4\"\n"
4645 "         x2=\"35.8\"\n"
4646 "         y2=\"54.4\"\n"
4647 "         id=\"line151\"\n"
4648 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><g\n"
4649 "         id=\"g153\"\n"
4650 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><circle\n"
4651 "           fill=\"#a45c94\"\n"
4652 "           cx=\"35.7\"\n"
4653 "           cy=\"54.4\"\n"
4654 "           r=\"1.7\"\n"
4655 "           id=\"circle155\"\n"
4656 "           style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /></g></g></g><g\n"
4657 "     id=\"g157\"\n"
4658 "     style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><g\n"
4659 "       id=\"g159\"\n"
4660 "       style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><line\n"
4661 "         fill=\"none\"\n"
4662 "         stroke=\"#a45c94\"\n"
4663 "         stroke-width=\"1.5\"\n"
4664 "         stroke-miterlimit=\"10\"\n"
4665 "         x1=\"119.7\"\n"
4666 "         y1=\"54.4\"\n"
4667 "         x2=\"100.2\"\n"
4668 "         y2=\"54.4\"\n"
4669 "         id=\"line161\"\n"
4670 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><g\n"
4671 "         id=\"g163\"\n"
4672 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><circle\n"
4673 "           fill=\"#a45c94\"\n"
4674 "           cx=\"100.3\"\n"
4675 "           cy=\"54.4\"\n"
4676 "           r=\"1.7\"\n"
4677 "           id=\"circle165\"\n"
4678 "           style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /></g></g></g><g\n"
4679 "     id=\"g167\"\n"
4680 "     style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><g\n"
4681 "       id=\"g169\"\n"
4682 "       style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><line\n"
4683 "         fill=\"none\"\n"
4684 "         stroke=\"#a45c94\"\n"
4685 "         stroke-width=\"1.5\"\n"
4686 "         stroke-miterlimit=\"10\"\n"
4687 "         x1=\"119.7\"\n"
4688 "         y1=\"35.1\"\n"
4689 "         x2=\"100.2\"\n"
4690 "         y2=\"35.1\"\n"
4691 "         id=\"line171\"\n"
4692 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><g\n"
4693 "         id=\"g173\"\n"
4694 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><circle\n"
4695 "           fill=\"#a45c94\"\n"
4696 "           cx=\"100.3\"\n"
4697 "           cy=\"35.1\"\n"
4698 "           r=\"1.7\"\n"
4699 "           id=\"circle175\"\n"
4700 "           style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /></g></g></g></svg>";
4701 
4702 const char* wizard_AudioPlugin_svg = (const char*) temp_binary_data_22;
4703 
4704 //================== wizard_ConsoleApp.svg ==================
4705 static const unsigned char temp_binary_data_23[] =
4706 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
4707 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
4708 "\n"
4709 "<svg\n"
4710 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
4711 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
4712 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
4713 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
4714 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
4715 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
4716 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
4717 "   version=\"1.1\"\n"
4718 "   id=\"Layer_1\"\n"
4719 "   x=\"0px\"\n"
4720 "   y=\"0px\"\n"
4721 "   viewBox=\"0 0 136.9 114.8\"\n"
4722 "   enable-background=\"new 0 0 136.9 114.8\"\n"
4723 "   xml:space=\"preserve\"\n"
4724 "   inkscape:version=\"0.91 r13725\"\n"
4725 "   sodipodi:docname=\"wizard_ConsoleApp.svg\"><metadata\n"
4726 "     id=\"metadata25\"><rdf:RDF><cc:Work\n"
4727 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
4728 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
4729 "     id=\"defs23\" /><sodipodi:namedview\n"
4730 "     pagecolor=\"#ffffff\"\n"
4731 "     bordercolor=\"#666666\"\n"
4732 "     borderopacity=\"1\"\n"
4733 "     objecttolerance=\"10\"\n"
4734 "     gridtolerance=\"10\"\n"
4735 "     guidetolerance=\"10\"\n"
4736 "     inkscape:pageopacity=\"0\"\n"
4737 "     inkscape:pageshadow=\"2\"\n"
4738 "     inkscape:window-width=\"1680\"\n"
4739 "     inkscape:window-height=\"1001\"\n"
4740 "     id=\"namedview21\"\n"
4741 "     showgrid=\"false\"\n"
4742 "     inkscape:zoom=\"2.0557491\"\n"
4743 "     inkscape:cx=\"68.449997\"\n"
4744 "     inkscape:cy=\"57.400002\"\n"
4745 "     inkscape:window-x=\"0\"\n"
4746 "     inkscape:window-y=\"1\"\n"
4747 "     inkscape:window-maximized=\"1\"\n"
4748 "     inkscape:current-layer=\"Layer_1\" /><path\n"
4749 "     fill=\"none\"\n"
4750 "     stroke=\"#a45c94\"\n"
4751 "     stroke-width=\"1.3469\"\n"
4752 "     stroke-miterlimit=\"10\"\n"
4753 "     d=\"M130,114.8H6.9c-3.8,0-6.9-3.1-6.9-6.9V6.9  C0,3.1,3.1,0,6.9,0H130c3.8,0,6.9,3.1,6.9,6.9v101.1C136.9,111.7,133.9,114.8,130,114.8z\"\n"
4754 "     id=\"path3\"\n"
4755 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
4756 "     id=\"Layer_1_22_\"\n"
4757 "     style=\"stroke:#a45c94;stroke-opacity:1\"><rect\n"
4758 "       x=\"16.3\"\n"
4759 "       y=\"10.9\"\n"
4760 "       fill=\"none\"\n"
4761 "       stroke=\"#a45c94\"\n"
4762 "       stroke-width=\"1.3469\"\n"
4763 "       stroke-miterlimit=\"10\"\n"
4764 "       width=\"102.9\"\n"
4765 "       height=\"67.5\"\n"
4766 "       id=\"rect6\"\n"
4767 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
4768 "     id=\"Layer_3_3_\"\n"
4769 "     style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><g\n"
4770 "       opacity=\"0.8\"\n"
4771 "       id=\"g9\"\n"
4772 "       style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><path\n"
4773 "         fill=\"#a45c94\"\n"
4774 "         d=\"M40.6,28.3l-14.4-6.6v-2.3l17.3,7.8v2.1l-17.3,7.8v-2.3L40.6,28.3z\"\n"
4775 "         id=\"path11\"\n"
4776 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><path\n"
4777 "         fill=\"#a45c94\"\n"
4778 "         d=\"M62,39.5v1.7H45v-1.7H62z\"\n"
4779 "         id=\"path13\"\n"
4780 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /></g><g\n"
4781 "       id=\"g15\"\n"
4782 "       style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\"><path\n"
4783 "         fill=\"#a45c94\"\n"
4784 "         d=\"M40.6,28.3l-14.4-6.6v-2.3l17.3,7.8v2.1l-17.3,7.8v-2.3L40.6,28.3z\"\n"
4785 "         id=\"path17\"\n"
4786 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><path\n"
4787 "         fill=\"#a45c94\"\n"
4788 "         d=\"M62,39.5v1.7H45v-1.7H62z\"\n"
4789 "         id=\"path19\"\n"
4790 "         style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /></g></g></svg>";
4791 
4792 const char* wizard_ConsoleApp_svg = (const char*) temp_binary_data_23;
4793 
4794 //================== wizard_DLL.svg ==================
4795 static const unsigned char temp_binary_data_24[] =
4796 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
4797 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
4798 "\n"
4799 "<svg\n"
4800 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
4801 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
4802 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
4803 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
4804 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
4805 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
4806 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
4807 "   version=\"1.1\"\n"
4808 "   id=\"Layer_1\"\n"
4809 "   x=\"0px\"\n"
4810 "   y=\"0px\"\n"
4811 "   viewBox=\"0 0 136.9 114.8\"\n"
4812 "   enable-background=\"new 0 0 136.9 114.8\"\n"
4813 "   xml:space=\"preserve\"\n"
4814 "   inkscape:version=\"0.91 r13725\"\n"
4815 "   sodipodi:docname=\"wizard_DLL.svg\"><metadata\n"
4816 "     id=\"metadata60\"><rdf:RDF><cc:Work\n"
4817 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
4818 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
4819 "     id=\"defs58\" /><sodipodi:namedview\n"
4820 "     pagecolor=\"#ffffff\"\n"
4821 "     bordercolor=\"#666666\"\n"
4822 "     borderopacity=\"1\"\n"
4823 "     objecttolerance=\"10\"\n"
4824 "     gridtolerance=\"10\"\n"
4825 "     guidetolerance=\"10\"\n"
4826 "     inkscape:pageopacity=\"0\"\n"
4827 "     inkscape:pageshadow=\"2\"\n"
4828 "     inkscape:window-width=\"1680\"\n"
4829 "     inkscape:window-height=\"1001\"\n"
4830 "     id=\"namedview56\"\n"
4831 "     showgrid=\"false\"\n"
4832 "     inkscape:zoom=\"2.0557491\"\n"
4833 "     inkscape:cx=\"68.449997\"\n"
4834 "     inkscape:cy=\"57.400002\"\n"
4835 "     inkscape:window-x=\"0\"\n"
4836 "     inkscape:window-y=\"1\"\n"
4837 "     inkscape:window-maximized=\"1\"\n"
4838 "     inkscape:current-layer=\"Layer_1\" /><path\n"
4839 "     fill=\"none\"\n"
4840 "     stroke=\"#a45c94\"\n"
4841 "     stroke-width=\"1.3469\"\n"
4842 "     stroke-miterlimit=\"10\"\n"
4843 "     d=\"M130,114.9H6.9c-3.8,0-6.9-3.1-6.9-6.9V7  c0-3.8,3.1-6.9,6.9-6.9H130c3.8,0,6.9,3.1,6.9,6.9V108C136.9,111.8,133.9,114.9,130,114.9z\"\n"
4844 "     id=\"path3\"\n"
4845 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
4846 "     id=\"Layer_1_19_\"\n"
4847 "     style=\"stroke:#a45c94;stroke-opacity:1\"><rect\n"
4848 "       x=\"16.3\"\n"
4849 "       y=\"11\"\n"
4850 "       fill=\"none\"\n"
4851 "       stroke=\"#a45c94\"\n"
4852 "       stroke-width=\"1.3469\"\n"
4853 "       stroke-miterlimit=\"10\"\n"
4854 "       width=\"102.9\"\n"
4855 "       height=\"67.5\"\n"
4856 "       id=\"rect6\"\n"
4857 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
4858 "     id=\"g8\"\n"
4859 "     style=\"stroke:#a45c94;stroke-opacity:1\"><line\n"
4860 "       fill=\"none\"\n"
4861 "       stroke=\"#a45c94\"\n"
4862 "       stroke-width=\"0.4307\"\n"
4863 "       stroke-miterlimit=\"10\"\n"
4864 "       x1=\"39.6\"\n"
4865 "       y1=\"25\"\n"
4866 "       x2=\"39.6\"\n"
4867 "       y2=\"62.3\"\n"
4868 "       id=\"line10\"\n"
4869 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4870 "       fill=\"none\"\n"
4871 "       stroke=\"#a45c94\"\n"
4872 "       stroke-width=\"0.4307\"\n"
4873 "       stroke-miterlimit=\"10\"\n"
4874 "       x1=\"41.2\"\n"
4875 "       y1=\"25\"\n"
4876 "       x2=\"41.2\"\n"
4877 "       y2=\"62.3\"\n"
4878 "       id=\"line12\"\n"
4879 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4880 "       fill=\"none\"\n"
4881 "       stroke=\"#a45c94\"\n"
4882 "       stroke-width=\"0.4307\"\n"
4883 "       stroke-miterlimit=\"10\"\n"
4884 "       x1=\"42.8\"\n"
4885 "       y1=\"25\"\n"
4886 "       x2=\"42.8\"\n"
4887 "       y2=\"62.3\"\n"
4888 "       id=\"line14\"\n"
4889 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4890 "       fill=\"none\"\n"
4891 "       stroke=\"#a45c94\"\n"
4892 "       stroke-width=\"0.4307\"\n"
4893 "       stroke-miterlimit=\"10\"\n"
4894 "       x1=\"44.5\"\n"
4895 "       y1=\"25\"\n"
4896 "       x2=\"44.5\"\n"
4897 "       y2=\"62.3\"\n"
4898 "       id=\"line16\"\n"
4899 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4900 "       fill=\"none\"\n"
4901 "       stroke=\"#a45c94\"\n"
4902 "       stroke-width=\"0.4307\"\n"
4903 "       stroke-miterlimit=\"10\"\n"
4904 "       x1=\"46.1\"\n"
4905 "       y1=\"25\"\n"
4906 "       x2=\"46.1\"\n"
4907 "       y2=\"62.3\"\n"
4908 "       id=\"line18\"\n"
4909 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4910 "       fill=\"none\"\n"
4911 "       stroke=\"#a45c94\"\n"
4912 "       stroke-width=\"0.4307\"\n"
4913 "       stroke-miterlimit=\"10\"\n"
4914 "       x1=\"47.7\"\n"
4915 "       y1=\"25\"\n"
4916 "       x2=\"47.7\"\n"
4917 "       y2=\"62.3\"\n"
4918 "       id=\"line20\"\n"
4919 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><path\n"
4920 "     fill=\"none\"\n"
4921 "     stroke=\"#a45c94\"\n"
4922 "     stroke-width=\"1.0853\"\n"
4923 "     stroke-miterlimit=\"10\"\n"
4924 "     d=\"M49.9,23.9v38.6c0,0.9-0.7,1.6-1.6,1.6H39  c-0.9,0-1.6-0.7-1.6-1.6V23.9\"\n"
4925 "     id=\"path22\"\n"
4926 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
4927 "     id=\"g24\"\n"
4928 "     style=\"stroke:#a45c94;stroke-opacity:1\"><line\n"
4929 "       fill=\"none\"\n"
4930 "       stroke=\"#a45c94\"\n"
4931 "       stroke-width=\"0.4307\"\n"
4932 "       stroke-miterlimit=\"10\"\n"
4933 "       x1=\"54.8\"\n"
4934 "       y1=\"27.5\"\n"
4935 "       x2=\"67.4\"\n"
4936 "       y2=\"62.6\"\n"
4937 "       id=\"line26\"\n"
4938 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4939 "       fill=\"none\"\n"
4940 "       stroke=\"#a45c94\"\n"
4941 "       stroke-width=\"0.4307\"\n"
4942 "       stroke-miterlimit=\"10\"\n"
4943 "       x1=\"56.3\"\n"
4944 "       y1=\"27\"\n"
4945 "       x2=\"69\"\n"
4946 "       y2=\"62\"\n"
4947 "       id=\"line28\"\n"
4948 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4949 "       fill=\"none\"\n"
4950 "       stroke=\"#a45c94\"\n"
4951 "       stroke-width=\"0.4307\"\n"
4952 "       stroke-miterlimit=\"10\"\n"
4953 "       x1=\"57.8\"\n"
4954 "       y1=\"26.4\"\n"
4955 "       x2=\"70.5\"\n"
4956 "       y2=\"61.5\"\n"
4957 "       id=\"line30\"\n"
4958 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4959 "       fill=\"none\"\n"
4960 "       stroke=\"#a45c94\"\n"
4961 "       stroke-width=\"0.4307\"\n"
4962 "       stroke-miterlimit=\"10\"\n"
4963 "       x1=\"59.4\"\n"
4964 "       y1=\"25.9\"\n"
4965 "       x2=\"72.1\"\n"
4966 "       y2=\"60.9\"\n"
4967 "       id=\"line32\"\n"
4968 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4969 "       fill=\"none\"\n"
4970 "       stroke=\"#a45c94\"\n"
4971 "       stroke-width=\"0.4307\"\n"
4972 "       stroke-miterlimit=\"10\"\n"
4973 "       x1=\"60.9\"\n"
4974 "       y1=\"25.3\"\n"
4975 "       x2=\"73.6\"\n"
4976 "       y2=\"60.4\"\n"
4977 "       id=\"line34\"\n"
4978 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
4979 "       fill=\"none\"\n"
4980 "       stroke=\"#a45c94\"\n"
4981 "       stroke-width=\"0.4307\"\n"
4982 "       stroke-miterlimit=\"10\"\n"
4983 "       x1=\"62.4\"\n"
4984 "       y1=\"24.8\"\n"
4985 "       x2=\"75.1\"\n"
4986 "       y2=\"59.8\"\n"
4987 "       id=\"line36\"\n"
4988 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><path\n"
4989 "     fill=\"none\"\n"
4990 "     stroke=\"#a45c94\"\n"
4991 "     stroke-width=\"1.0853\"\n"
4992 "     stroke-miterlimit=\"10\"\n"
4993 "     d=\"M64.1,23l13.1,36.3c0.3,0.8-0.1,1.7-0.9,2  l-8.8,3.2c-0.8,0.3-1.7-0.1-2-0.9L52.4,27.2\"\n"
4994 "     id=\"path38\"\n"
4995 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
4996 "     id=\"g40\"\n"
4997 "     style=\"stroke:#a45c94;stroke-opacity:1\"><line\n"
4998 "       fill=\"none\"\n"
4999 "       stroke=\"#a45c94\"\n"
5000 "       stroke-width=\"0.4307\"\n"
5001 "       stroke-miterlimit=\"10\"\n"
5002 "       x1=\"72.5\"\n"
5003 "       y1=\"30.6\"\n"
5004 "       x2=\"93.5\"\n"
5005 "       y2=\"61.4\"\n"
5006 "       id=\"line42\"\n"
5007 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5008 "       fill=\"none\"\n"
5009 "       stroke=\"#a45c94\"\n"
5010 "       stroke-width=\"0.4307\"\n"
5011 "       stroke-miterlimit=\"10\"\n"
5012 "       x1=\"73.8\"\n"
5013 "       y1=\"29.7\"\n"
5014 "       x2=\"94.9\"\n"
5015 "       y2=\"60.5\"\n"
5016 "       id=\"line44\"\n"
5017 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5018 "       fill=\"none\"\n"
5019 "       stroke=\"#a45c94\"\n"
5020 "       stroke-width=\"0.4307\"\n"
5021 "       stroke-miterlimit=\"10\"\n"
5022 "       x1=\"75.2\"\n"
5023 "       y1=\"28.8\"\n"
5024 "       x2=\"96.2\"\n"
5025 "       y2=\"59.6\"\n"
5026 "       id=\"line46\"\n"
5027 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5028 "       fill=\"none\"\n"
5029 "       stroke=\"#a45c94\"\n"
5030 "       stroke-width=\"0.4307\"\n"
5031 "       stroke-miterlimit=\"10\"\n"
5032 "       x1=\"76.5\"\n"
5033 "       y1=\"27.9\"\n"
5034 "       x2=\"97.6\"\n"
5035 "       y2=\"58.6\"\n"
5036 "       id=\"line48\"\n"
5037 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5038 "       fill=\"none\"\n"
5039 "       stroke=\"#a45c94\"\n"
5040 "       stroke-width=\"0.4307\"\n"
5041 "       stroke-miterlimit=\"10\"\n"
5042 "       x1=\"77.9\"\n"
5043 "       y1=\"27\"\n"
5044 "       x2=\"98.9\"\n"
5045 "       y2=\"57.7\"\n"
5046 "       id=\"line50\"\n"
5047 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5048 "       fill=\"none\"\n"
5049 "       stroke=\"#a45c94\"\n"
5050 "       stroke-width=\"0.4307\"\n"
5051 "       stroke-miterlimit=\"10\"\n"
5052 "       x1=\"79.2\"\n"
5053 "       y1=\"26\"\n"
5054 "       x2=\"100.3\"\n"
5055 "       y2=\"56.8\"\n"
5056 "       id=\"line52\"\n"
5057 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><path\n"
5058 "     fill=\"none\"\n"
5059 "     stroke=\"#a45c94\"\n"
5060 "     stroke-width=\"1.0853\"\n"
5061 "     stroke-miterlimit=\"10\"\n"
5062 "     d=\"M80.4,23.9l21.8,31.9c0.5,0.7,0.3,1.7-0.4,2.2  l-7.7,5.3c-0.7,0.5-1.7,0.3-2.2-0.4L70.1,31\"\n"
5063 "     id=\"path54\"\n"
5064 "     style=\"stroke:#a45c94;stroke-opacity:1\" /></svg>";
5065 
5066 const char* wizard_DLL_svg = (const char*) temp_binary_data_24;
5067 
5068 //================== wizard_GUI.svg ==================
5069 static const unsigned char temp_binary_data_25[] =
5070 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
5071 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
5072 "\n"
5073 "<svg\n"
5074 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
5075 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
5076 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
5077 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
5078 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
5079 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
5080 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
5081 "   version=\"1.1\"\n"
5082 "   id=\"Layer_1\"\n"
5083 "   x=\"0px\"\n"
5084 "   y=\"0px\"\n"
5085 "   viewBox=\"0 0 136.9 114.8\"\n"
5086 "   enable-background=\"new 0 0 136.9 114.8\"\n"
5087 "   xml:space=\"preserve\"\n"
5088 "   inkscape:version=\"0.91 r13725\"\n"
5089 "   sodipodi:docname=\"wizard_GUI.svg\"><metadata\n"
5090 "     id=\"metadata53\"><rdf:RDF><cc:Work\n"
5091 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
5092 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
5093 "     id=\"defs51\" /><sodipodi:namedview\n"
5094 "     pagecolor=\"#ffffff\"\n"
5095 "     bordercolor=\"#666666\"\n"
5096 "     borderopacity=\"1\"\n"
5097 "     objecttolerance=\"10\"\n"
5098 "     gridtolerance=\"10\"\n"
5099 "     guidetolerance=\"10\"\n"
5100 "     inkscape:pageopacity=\"0\"\n"
5101 "     inkscape:pageshadow=\"2\"\n"
5102 "     inkscape:window-width=\"1680\"\n"
5103 "     inkscape:window-height=\"1001\"\n"
5104 "     id=\"namedview49\"\n"
5105 "     showgrid=\"false\"\n"
5106 "     inkscape:zoom=\"2.0557491\"\n"
5107 "     inkscape:cx=\"68.449997\"\n"
5108 "     inkscape:cy=\"57.400002\"\n"
5109 "     inkscape:window-x=\"0\"\n"
5110 "     inkscape:window-y=\"1\"\n"
5111 "     inkscape:window-maximized=\"1\"\n"
5112 "     inkscape:current-layer=\"Layer_1\" /><rect\n"
5113 "     x=\"16.3\"\n"
5114 "     y=\"10.9\"\n"
5115 "     fill=\"none\"\n"
5116 "     stroke=\"#a45c94\"\n"
5117 "     stroke-width=\"1.3469\"\n"
5118 "     stroke-miterlimit=\"10\"\n"
5119 "     width=\"103.6\"\n"
5120 "     height=\"67.5\"\n"
5121 "     id=\"rect3\"\n"
5122 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5123 "     fill=\"none\"\n"
5124 "     stroke=\"#a45c94\"\n"
5125 "     stroke-width=\"0.7078\"\n"
5126 "     stroke-miterlimit=\"10\"\n"
5127 "     d=\"M55.2,62.5H23.4c-0.4,0-0.7-0.4-0.7-0.9l0,0  c0-0.5,0.3-0.9,0.7-0.9h31.8c0.4,0,0.7,0.4,0.7,0.9l0,0C55.9,62.1,55.5,62.5,55.2,62.5z\"\n"
5128 "     id=\"path5\"\n"
5129 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5130 "     fill=\"#a45c94\"\n"
5131 "     d=\"M38.1,62.5H23.4c-0.4,0-0.7-0.4-0.7-0.9l0,0c0-0.5,0.3-0.9,0.7-0.9h14.7c0.4,0,0.7,0.4,0.7,0.9l0,0  C38.7,62.1,38.4,62.5,38.1,62.5z\"\n"
5132 "     id=\"path7\"\n"
5133 "     style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><path\n"
5134 "     fill=\"none\"\n"
5135 "     stroke=\"#a45c94\"\n"
5136 "     stroke-width=\"0.7078\"\n"
5137 "     stroke-miterlimit=\"10\"\n"
5138 "     d=\"M55.2,67.8H23.4c-0.4,0-0.7-0.4-0.7-0.9l0,0  c0-0.5,0.3-0.9,0.7-0.9h31.8c0.4,0,0.7,0.4,0.7,0.9l0,0C55.9,67.4,55.5,67.8,55.2,67.8z\"\n"
5139 "     id=\"path9\"\n"
5140 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5141 "     fill=\"#a45c94\"\n"
5142 "     d=\"M44.2,67.8H23.4c-0.4,0-0.7-0.4-0.7-0.9l0,0c0-0.5,0.3-0.9,0.7-0.9h20.8c0.4,0,0.7,0.4,0.7,0.9l0,0  C44.8,67.4,44.6,67.8,44.2,67.8z\"\n"
5143 "     id=\"path11\"\n"
5144 "     style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><path\n"
5145 "     fill=\"none\"\n"
5146 "     stroke=\"#a45c94\"\n"
5147 "     stroke-width=\"0.7078\"\n"
5148 "     stroke-miterlimit=\"10\"\n"
5149 "     d=\"M55.2,73H23.4c-0.4,0-0.7-0.4-0.7-0.9l0,0  c0-0.5,0.3-0.9,0.7-0.9h31.8c0.4,0,0.7,0.4,0.7,0.9l0,0C55.9,72.6,55.5,73,55.2,73z\"\n"
5150 "     id=\"path13\"\n"
5151 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5152 "     fill=\"#a45c94\"\n"
5153 "     d=\"M49.4,73h-26c-0.4,0-0.7-0.4-0.7-0.9l0,0c0-0.5,0.3-0.9,0.7-0.9h26c0.4,0,0.7,0.4,0.7,0.9l0,0  C50.1,72.6,49.8,73,49.4,73z\"\n"
5154 "     id=\"path15\"\n"
5155 "     style=\"stroke:#a45c94;stroke-opacity:1;fill:#a45c94;fill-opacity:1\" /><rect\n"
5156 "     x=\"16.3\"\n"
5157 "     y=\"10.9\"\n"
5158 "     fill=\"none\"\n"
5159 "     stroke=\"#a45c94\"\n"
5160 "     stroke-width=\"1.3469\"\n"
5161 "     stroke-miterlimit=\"10\"\n"
5162 "     width=\"103.6\"\n"
5163 "     height=\"2.4\"\n"
5164 "     id=\"rect17\"\n"
5165 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><circle\n"
5166 "     fill=\"none\"\n"
5167 "     stroke=\"#a45c94\"\n"
5168 "     stroke-width=\"1.3469\"\n"
5169 "     stroke-miterlimit=\"10\"\n"
5170 "     cx=\"69.3\"\n"
5171 "     cy=\"39.6\"\n"
5172 "     r=\"13.9\"\n"
5173 "     id=\"circle19\"\n"
5174 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
5175 "     id=\"g21\"\n"
5176 "     style=\"stroke:#a45c94;stroke-opacity:1\"><g\n"
5177 "       id=\"g23\"\n"
5178 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
5179 "         fill=\"none\"\n"
5180 "         stroke=\"#a45c94\"\n"
5181 "         stroke-width=\"1.2523\"\n"
5182 "         stroke-miterlimit=\"10\"\n"
5183 "         d=\"M79.8,33.5c1.1,1.9,1.3,5.2,0,5.7    c-1.3,0.5-7.2,0.3-10.2,0.2c1.3-2.7,4.1-7.9,5.2-8.8C75.9,29.7,78.7,31.6,79.8,33.5z\"\n"
5184 "         id=\"path25\"\n"
5185 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
5186 "       id=\"g27\"\n"
5187 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
5188 "         fill=\"none\"\n"
5189 "         stroke=\"#a45c94\"\n"
5190 "         stroke-width=\"1.2523\"\n"
5191 "         stroke-miterlimit=\"10\"\n"
5192 "         d=\"M79.8,45.6c-1.1,1.9-3.8,3.7-4.9,2.9    c-1.1-0.9-3.9-6.1-5.2-8.8c3-0.2,8.9-0.4,10.2,0.1C81.2,40.4,80.9,43.7,79.8,45.6z\"\n"
5193 "         id=\"path29\"\n"
5194 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
5195 "       id=\"g31\"\n"
5196 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
5197 "         fill=\"none\"\n"
5198 "         stroke=\"#a45c94\"\n"
5199 "         stroke-width=\"1.2523\"\n"
5200 "         stroke-miterlimit=\"10\"\n"
5201 "         d=\"M69.3,51.7c-2.2,0-5.2-1.5-5-2.8    s3.3-6.4,5-8.9c1.7,2.5,4.8,7.5,5,8.9S71.5,51.7,69.3,51.7z\"\n"
5202 "         id=\"path33\"\n"
5203 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
5204 "       id=\"g35\"\n"
5205 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
5206 "         fill=\"none\"\n"
5207 "         stroke=\"#a45c94\"\n"
5208 "         stroke-width=\"1.2523\"\n"
5209 "         stroke-miterlimit=\"10\"\n"
5210 "         d=\"M58.9,45.6c-1.1-1.9-1.3-5.2,0-5.7    c1.3-0.5,7.2-0.3,10.2-0.2c-1.3,2.7-4.1,7.9-5.2,8.8C62.8,49.4,60,47.6,58.9,45.6z\"\n"
5211 "         id=\"path37\"\n"
5212 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
5213 "       id=\"g39\"\n"
5214 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
5215 "         fill=\"none\"\n"
5216 "         stroke=\"#a45c94\"\n"
5217 "         stroke-width=\"1.2523\"\n"
5218 "         stroke-miterlimit=\"10\"\n"
5219 "         d=\"M58.9,33.5c1.1-1.9,3.8-3.7,4.9-2.9    c1.1,0.9,3.9,6.1,5.2,8.8c-3,0.2-8.9,0.4-10.2-0.1C57.5,38.8,57.8,35.5,58.9,33.5z\"\n"
5220 "         id=\"path41\"\n"
5221 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
5222 "       id=\"g43\"\n"
5223 "       style=\"stroke:#a45c94;stroke-opacity:1\"><path\n"
5224 "         fill=\"none\"\n"
5225 "         stroke=\"#a45c94\"\n"
5226 "         stroke-width=\"1.2523\"\n"
5227 "         stroke-miterlimit=\"10\"\n"
5228 "         d=\"M69.3,27.5c2.2,0,5.2,1.5,5,2.8    s-3.3,6.4-5,8.9c-1.7-2.5-4.8-7.5-5-8.9S67.1,27.5,69.3,27.5z\"\n"
5229 "         id=\"path45\"\n"
5230 "         style=\"stroke:#a45c94;stroke-opacity:1\" /></g></g><path\n"
5231 "     fill=\"none\"\n"
5232 "     stroke=\"#a45c94\"\n"
5233 "     stroke-width=\"1.3469\"\n"
5234 "     stroke-miterlimit=\"10\"\n"
5235 "     d=\"M130,114.8H6.9c-3.8,0-6.9-3.1-6.9-6.9V6.9  C0,3.1,3.1,0,6.9,0H130c3.8,0,6.9,3.1,6.9,6.9v101.1C136.9,111.7,133.9,114.8,130,114.8z\"\n"
5236 "     id=\"path47\"\n"
5237 "     style=\"stroke:#a45c94;stroke-opacity:1\" /></svg>";
5238 
5239 const char* wizard_GUI_svg = (const char*) temp_binary_data_25;
5240 
5241 //================== wizard_Highlight.svg ==================
5242 static const unsigned char temp_binary_data_26[] =
5243 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
5244 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
5245 "\n"
5246 "<svg\n"
5247 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
5248 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
5249 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
5250 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
5251 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
5252 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
5253 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
5254 "   version=\"1.1\"\n"
5255 "   id=\"Layer_1\"\n"
5256 "   x=\"0px\"\n"
5257 "   y=\"0px\"\n"
5258 "   viewBox=\"0 0 136.9 114.8\"\n"
5259 "   enable-background=\"new 0 0 136.9 114.8\"\n"
5260 "   xml:space=\"preserve\"\n"
5261 "   inkscape:version=\"0.91 r13725\"\n"
5262 "   sodipodi:docname=\"wizard_Highlight.svg\"><metadata\n"
5263 "     id=\"metadata9\"><rdf:RDF><cc:Work\n"
5264 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
5265 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
5266 "     id=\"defs7\" /><sodipodi:namedview\n"
5267 "     pagecolor=\"#ffffff\"\n"
5268 "     bordercolor=\"#666666\"\n"
5269 "     borderopacity=\"1\"\n"
5270 "     objecttolerance=\"10\"\n"
5271 "     gridtolerance=\"10\"\n"
5272 "     guidetolerance=\"10\"\n"
5273 "     inkscape:pageopacity=\"0\"\n"
5274 "     inkscape:pageshadow=\"2\"\n"
5275 "     inkscape:window-width=\"1680\"\n"
5276 "     inkscape:window-height=\"1001\"\n"
5277 "     id=\"namedview5\"\n"
5278 "     showgrid=\"false\"\n"
5279 "     inkscape:zoom=\"2.0557491\"\n"
5280 "     inkscape:cx=\"68.449997\"\n"
5281 "     inkscape:cy=\"57.400002\"\n"
5282 "     inkscape:window-x=\"0\"\n"
5283 "     inkscape:window-y=\"1\"\n"
5284 "     inkscape:window-maximized=\"1\"\n"
5285 "     inkscape:current-layer=\"Layer_1\" /><path\n"
5286 "     opacity=\"0.2\"\n"
5287 "     fill=\"#a45c94\"\n"
5288 "     d=\"M130.1,114.8H6.9c-3.8,0-6.9-3.1-6.9-6.9V6.9C0,3.1,3.1,0,6.9,0h123.2c3.8,0,6.9,3.1,6.9,6.9  V108C136.9,111.8,133.9,114.8,130.1,114.8z\"\n"
5289 "     id=\"path3\"\n"
5290 "     style=\"fill:#a45c94;fill-opacity:1\" /></svg>";
5291 
5292 const char* wizard_Highlight_svg = (const char*) temp_binary_data_26;
5293 
5294 //================== wizard_Openfile.svg ==================
5295 static const unsigned char temp_binary_data_27[] =
5296 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
5297 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
5298 "\n"
5299 "<svg\n"
5300 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
5301 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
5302 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
5303 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
5304 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
5305 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
5306 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
5307 "   version=\"1.1\"\n"
5308 "   id=\"Layer_1\"\n"
5309 "   x=\"0px\"\n"
5310 "   y=\"0px\"\n"
5311 "   viewBox=\"0 0 177.9 114.8\"\n"
5312 "   enable-background=\"new 0 0 177.9 114.8\"\n"
5313 "   xml:space=\"preserve\"\n"
5314 "   inkscape:version=\"0.91 r13725\"\n"
5315 "   sodipodi:docname=\"wizard_Openfile.svg\"><metadata\n"
5316 "     id=\"metadata9\"><rdf:RDF><cc:Work\n"
5317 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
5318 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
5319 "     id=\"defs7\" /><sodipodi:namedview\n"
5320 "     pagecolor=\"#ffffff\"\n"
5321 "     bordercolor=\"#666666\"\n"
5322 "     borderopacity=\"1\"\n"
5323 "     objecttolerance=\"10\"\n"
5324 "     gridtolerance=\"10\"\n"
5325 "     guidetolerance=\"10\"\n"
5326 "     inkscape:pageopacity=\"0\"\n"
5327 "     inkscape:pageshadow=\"2\"\n"
5328 "     inkscape:window-width=\"1680\"\n"
5329 "     inkscape:window-height=\"1001\"\n"
5330 "     id=\"namedview5\"\n"
5331 "     showgrid=\"false\"\n"
5332 "     inkscape:zoom=\"1.7425521\"\n"
5333 "     inkscape:cx=\"88.949997\"\n"
5334 "     inkscape:cy=\"57.400002\"\n"
5335 "     inkscape:window-x=\"0\"\n"
5336 "     inkscape:window-y=\"1\"\n"
5337 "     inkscape:window-maximized=\"1\"\n"
5338 "     inkscape:current-layer=\"Layer_1\" /><path\n"
5339 "     fill=\"none\"\n"
5340 "     stroke=\"#a45c94\"\n"
5341 "     stroke-width=\"1.3469\"\n"
5342 "     stroke-miterlimit=\"10\"\n"
5343 "     d=\"M164.7,71.4H13.2c-3.8,0-6.9-3.1-6.9-6.9V43.6  c0-3.8,3.1-6.9,6.9-6.9h151.5c3.8,0,6.9,3.1,6.9,6.9v20.9C171.6,68.3,168.5,71.4,164.7,71.4z\"\n"
5344 "     id=\"path3\"\n"
5345 "     style=\"stroke:#a45c94;stroke-opacity:1\" /></svg>";
5346 
5347 const char* wizard_Openfile_svg = (const char*) temp_binary_data_27;
5348 
5349 //================== wizard_OpenGL.svg ==================
5350 static const unsigned char temp_binary_data_28[] =
5351 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
5352 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
5353 "\n"
5354 "<svg\n"
5355 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
5356 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
5357 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
5358 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
5359 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
5360 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
5361 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
5362 "   version=\"1.1\"\n"
5363 "   id=\"Layer_1\"\n"
5364 "   x=\"0px\"\n"
5365 "   y=\"0px\"\n"
5366 "   viewBox=\"0 0 136.9 114.8\"\n"
5367 "   enable-background=\"new 0 0 136.9 114.8\"\n"
5368 "   xml:space=\"preserve\"\n"
5369 "   inkscape:version=\"0.91 r13725\"\n"
5370 "   sodipodi:docname=\"wizard_OpenGL.svg\"><metadata\n"
5371 "     id=\"metadata29\"><rdf:RDF><cc:Work\n"
5372 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
5373 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
5374 "     id=\"defs27\" /><sodipodi:namedview\n"
5375 "     pagecolor=\"#ffffff\"\n"
5376 "     bordercolor=\"#666666\"\n"
5377 "     borderopacity=\"1\"\n"
5378 "     objecttolerance=\"10\"\n"
5379 "     gridtolerance=\"10\"\n"
5380 "     guidetolerance=\"10\"\n"
5381 "     inkscape:pageopacity=\"0\"\n"
5382 "     inkscape:pageshadow=\"2\"\n"
5383 "     inkscape:window-width=\"1680\"\n"
5384 "     inkscape:window-height=\"1001\"\n"
5385 "     id=\"namedview25\"\n"
5386 "     showgrid=\"false\"\n"
5387 "     inkscape:zoom=\"2.0557491\"\n"
5388 "     inkscape:cx=\"-16.190683\"\n"
5389 "     inkscape:cy=\"57.400002\"\n"
5390 "     inkscape:window-x=\"0\"\n"
5391 "     inkscape:window-y=\"1\"\n"
5392 "     inkscape:window-maximized=\"1\"\n"
5393 "     inkscape:current-layer=\"Layer_1\" /><rect\n"
5394 "     x=\"16.3\"\n"
5395 "     y=\"10.9\"\n"
5396 "     fill=\"none\"\n"
5397 "     stroke=\"#a45c94\"\n"
5398 "     stroke-width=\"1.3469\"\n"
5399 "     stroke-miterlimit=\"10\"\n"
5400 "     width=\"103.6\"\n"
5401 "     height=\"67.5\"\n"
5402 "     id=\"rect3\"\n"
5403 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><rect\n"
5404 "     x=\"16.3\"\n"
5405 "     y=\"10.9\"\n"
5406 "     fill=\"none\"\n"
5407 "     stroke=\"#a45c94\"\n"
5408 "     stroke-width=\"1.3469\"\n"
5409 "     stroke-miterlimit=\"10\"\n"
5410 "     width=\"103.6\"\n"
5411 "     height=\"2.4\"\n"
5412 "     id=\"rect5\"\n"
5413 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5414 "     fill=\"none\"\n"
5415 "     stroke=\"#a45c94\"\n"
5416 "     stroke-width=\"1.3469\"\n"
5417 "     stroke-miterlimit=\"10\"\n"
5418 "     d=\"M75.8,31.5c8.7,4.7,14.8,13.2,13.5,20  c-1.6,8.5-13.8,11.4-26.8,4.3S45.3,36.9,51.6,30.9C56.7,26.1,67.1,26.7,75.8,31.5z\"\n"
5419 "     id=\"path7\"\n"
5420 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5421 "     fill=\"none\"\n"
5422 "     stroke=\"#a45c94\"\n"
5423 "     stroke-width=\"1.3469\"\n"
5424 "     stroke-miterlimit=\"10\"\n"
5425 "     d=\"M86.1,43.6c1,2.4,0.5,5.5-1.3,5  c-1.9-0.5-9.8-5-13.8-7.4c2.9-1.2,8.2-3.2,9.8-3.2C82.2,38.2,85.2,41.4,86.1,43.6z\"\n"
5426 "     id=\"path9\"\n"
5427 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5428 "     fill=\"none\"\n"
5429 "     stroke=\"#a45c94\"\n"
5430 "     stroke-width=\"1.3469\"\n"
5431 "     stroke-miterlimit=\"10\"\n"
5432 "     d=\"M83,55.3c-2.3,1.3-7.3,1.2-8.6-0.7  c-1.2-1.9-2.9-9.5-3.5-12.9c4.2,2.1,12.2,6.3,13.8,7.7C86.3,50.7,85.2,54,83,55.3z\"\n"
5433 "     id=\"path11\"\n"
5434 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5435 "     fill=\"none\"\n"
5436 "     stroke=\"#a45c94\"\n"
5437 "     stroke-width=\"1.3469\"\n"
5438 "     stroke-miterlimit=\"10\"\n"
5439 "     d=\"M63.6,53.5c-3.6-2-7.3-6.3-5.9-7.6  c1.3-1.2,9-3.5,12.5-4.4c1.2,3.5,3.4,11.2,3.1,13C73,56.3,67.3,55.5,63.6,53.5z\"\n"
5440 "     id=\"path13\"\n"
5441 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5442 "     fill=\"none\"\n"
5443 "     stroke=\"#a45c94\"\n"
5444 "     stroke-width=\"1.3469\"\n"
5445 "     stroke-miterlimit=\"10\"\n"
5446 "     d=\"M51.9,38.3c-0.1-2.5,2-5.2,4.1-4.6  c2.1,0.6,9.9,5.1,13.9,7.5c-3.2,1.3-10.5,4.1-12.8,4.1C54.9,45.1,52,40.9,51.9,38.3z\"\n"
5447 "     id=\"path15\"\n"
5448 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5449 "     fill=\"none\"\n"
5450 "     stroke=\"#a45c94\"\n"
5451 "     stroke-width=\"1.3469\"\n"
5452 "     stroke-miterlimit=\"10\"\n"
5453 "     d=\"M60,29.3c2.4-0.4,6.6,0.3,7.5,1.5  c0.9,1.2,2.1,6.8,2.6,9.9c-4.2-2.1-12.3-6.3-13.7-7.6C55,31.8,57.4,29.8,60,29.3z\"\n"
5454 "     id=\"path17\"\n"
5455 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5456 "     fill=\"none\"\n"
5457 "     stroke=\"#a45c94\"\n"
5458 "     stroke-width=\"1.3469\"\n"
5459 "     stroke-miterlimit=\"10\"\n"
5460 "     d=\"M75.2,32.5c2.5,1.4,5.6,4.3,5,5  c-0.7,0.8-6.3,2.5-9.5,3.3c-1.1-3.2-2.7-8.9-2.4-9.9C68.6,30,72.6,31.1,75.2,32.5z\"\n"
5461 "     id=\"path19\"\n"
5462 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5463 "     fill=\"none\"\n"
5464 "     stroke=\"#a45c94\"\n"
5465 "     stroke-width=\"1.3469\"\n"
5466 "     stroke-miterlimit=\"10\"\n"
5467 "     d=\"M130,114.8H6.9c-3.8,0-6.9-3.1-6.9-6.9V6.9  C0,3.1,3.1,0,6.9,0H130c3.8,0,6.9,3.1,6.9,6.9v101.1C136.9,111.7,133.9,114.8,130,114.8z\"\n"
5468 "     id=\"path21\"\n"
5469 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><path\n"
5470 "     fill=\"none\"\n"
5471 "     stroke=\"#a45c94\"\n"
5472 "     stroke-width=\"1.3469\"\n"
5473 "     stroke-miterlimit=\"10\"\n"
5474 "     d=\"M87.4,55.5c-6.6,10.4-20.4,14.6-30.8,8  s-13.4-19.6-6.9-30\"\n"
5475 "     id=\"path23\"\n"
5476 "     style=\"stroke:#a45c94;stroke-opacity:1\" /></svg>";
5477 
5478 const char* wizard_OpenGL_svg = (const char*) temp_binary_data_28;
5479 
5480 //================== wizard_StaticLibrary.svg ==================
5481 static const unsigned char temp_binary_data_29[] =
5482 "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n"
5483 "<!-- Generator: Adobe Illustrator 18.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->\n"
5484 "\n"
5485 "<svg\n"
5486 "   xmlns:dc=\"http://purl.org/dc/elements/1.1/\"\n"
5487 "   xmlns:cc=\"http://creativecommons.org/ns#\"\n"
5488 "   xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n"
5489 "   xmlns:svg=\"http://www.w3.org/2000/svg\"\n"
5490 "   xmlns=\"http://www.w3.org/2000/svg\"\n"
5491 "   xmlns:sodipodi=\"http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd\"\n"
5492 "   xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\"\n"
5493 "   version=\"1.1\"\n"
5494 "   id=\"Layer_1\"\n"
5495 "   x=\"0px\"\n"
5496 "   y=\"0px\"\n"
5497 "   viewBox=\"0 0 136.9 114.8\"\n"
5498 "   enable-background=\"new 0 0 136.9 114.8\"\n"
5499 "   xml:space=\"preserve\"\n"
5500 "   inkscape:version=\"0.91 r13725\"\n"
5501 "   sodipodi:docname=\"wizard_StaticLibrary.svg\"><metadata\n"
5502 "     id=\"metadata60\"><rdf:RDF><cc:Work\n"
5503 "         rdf:about=\"\"><dc:format>image/svg+xml</dc:format><dc:type\n"
5504 "           rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\" /></cc:Work></rdf:RDF></metadata><defs\n"
5505 "     id=\"defs58\" /><sodipodi:namedview\n"
5506 "     pagecolor=\"#ffffff\"\n"
5507 "     bordercolor=\"#666666\"\n"
5508 "     borderopacity=\"1\"\n"
5509 "     objecttolerance=\"10\"\n"
5510 "     gridtolerance=\"10\"\n"
5511 "     guidetolerance=\"10\"\n"
5512 "     inkscape:pageopacity=\"0\"\n"
5513 "     inkscape:pageshadow=\"2\"\n"
5514 "     inkscape:window-width=\"1680\"\n"
5515 "     inkscape:window-height=\"1001\"\n"
5516 "     id=\"namedview56\"\n"
5517 "     showgrid=\"false\"\n"
5518 "     inkscape:zoom=\"2.0557491\"\n"
5519 "     inkscape:cx=\"68.449997\"\n"
5520 "     inkscape:cy=\"57.400002\"\n"
5521 "     inkscape:window-x=\"0\"\n"
5522 "     inkscape:window-y=\"1\"\n"
5523 "     inkscape:window-maximized=\"1\"\n"
5524 "     inkscape:current-layer=\"Layer_1\" /><path\n"
5525 "     fill=\"none\"\n"
5526 "     stroke=\"#a45c94\"\n"
5527 "     stroke-width=\"1.3469\"\n"
5528 "     stroke-miterlimit=\"10\"\n"
5529 "     d=\"M130,114.8H6.9c-3.8,0-6.9-3.1-6.9-6.9V6.9  C0,3,3.1,0,6.9,0H130c3.8,0,6.9,3.1,6.9,6.9v101.1C136.9,111.7,133.9,114.8,130,114.8z\"\n"
5530 "     id=\"path3\"\n"
5531 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
5532 "     id=\"Layer_1_21_\"\n"
5533 "     style=\"stroke:#a45c94;stroke-opacity:1\"><rect\n"
5534 "       x=\"16.3\"\n"
5535 "       y=\"10.9\"\n"
5536 "       fill=\"none\"\n"
5537 "       stroke=\"#a45c94\"\n"
5538 "       stroke-width=\"1.3469\"\n"
5539 "       stroke-miterlimit=\"10\"\n"
5540 "       width=\"102.9\"\n"
5541 "       height=\"67.5\"\n"
5542 "       id=\"rect6\"\n"
5543 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><g\n"
5544 "     id=\"g8\"\n"
5545 "     style=\"stroke:#a45c94;stroke-opacity:1\"><line\n"
5546 "       fill=\"none\"\n"
5547 "       stroke=\"#a45c94\"\n"
5548 "       stroke-width=\"0.4942\"\n"
5549 "       stroke-miterlimit=\"10\"\n"
5550 "       x1=\"43.1\"\n"
5551 "       y1=\"22.1\"\n"
5552 "       x2=\"43.1\"\n"
5553 "       y2=\"64.9\"\n"
5554 "       id=\"line10\"\n"
5555 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5556 "       fill=\"none\"\n"
5557 "       stroke=\"#a45c94\"\n"
5558 "       stroke-width=\"0.4942\"\n"
5559 "       stroke-miterlimit=\"10\"\n"
5560 "       x1=\"45\"\n"
5561 "       y1=\"22.1\"\n"
5562 "       x2=\"45\"\n"
5563 "       y2=\"64.9\"\n"
5564 "       id=\"line12\"\n"
5565 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5566 "       fill=\"none\"\n"
5567 "       stroke=\"#a45c94\"\n"
5568 "       stroke-width=\"0.4942\"\n"
5569 "       stroke-miterlimit=\"10\"\n"
5570 "       x1=\"46.8\"\n"
5571 "       y1=\"22.1\"\n"
5572 "       x2=\"46.8\"\n"
5573 "       y2=\"64.9\"\n"
5574 "       id=\"line14\"\n"
5575 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5576 "       fill=\"none\"\n"
5577 "       stroke=\"#a45c94\"\n"
5578 "       stroke-width=\"0.4942\"\n"
5579 "       stroke-miterlimit=\"10\"\n"
5580 "       x1=\"48.7\"\n"
5581 "       y1=\"22.1\"\n"
5582 "       x2=\"48.7\"\n"
5583 "       y2=\"64.9\"\n"
5584 "       id=\"line16\"\n"
5585 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5586 "       fill=\"none\"\n"
5587 "       stroke=\"#a45c94\"\n"
5588 "       stroke-width=\"0.4942\"\n"
5589 "       stroke-miterlimit=\"10\"\n"
5590 "       x1=\"50.6\"\n"
5591 "       y1=\"22.1\"\n"
5592 "       x2=\"50.6\"\n"
5593 "       y2=\"64.9\"\n"
5594 "       id=\"line18\"\n"
5595 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5596 "       fill=\"none\"\n"
5597 "       stroke=\"#a45c94\"\n"
5598 "       stroke-width=\"0.4942\"\n"
5599 "       stroke-miterlimit=\"10\"\n"
5600 "       x1=\"52.5\"\n"
5601 "       y1=\"22.1\"\n"
5602 "       x2=\"52.5\"\n"
5603 "       y2=\"64.9\"\n"
5604 "       id=\"line20\"\n"
5605 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><path\n"
5606 "     fill=\"none\"\n"
5607 "     stroke=\"#a45c94\"\n"
5608 "     stroke-width=\"1.2453\"\n"
5609 "     stroke-miterlimit=\"10\"\n"
5610 "     d=\"M54.9,20.8v44.3c0,1-0.8,1.8-1.8,1.8H42.4  c-1,0-1.8-0.8-1.8-1.8V20.8\"\n"
5611 "     id=\"path22\"\n"
5612 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
5613 "     id=\"g24\"\n"
5614 "     style=\"stroke:#a45c94;stroke-opacity:1\"><line\n"
5615 "       fill=\"none\"\n"
5616 "       stroke=\"#a45c94\"\n"
5617 "       stroke-width=\"0.4942\"\n"
5618 "       stroke-miterlimit=\"10\"\n"
5619 "       x1=\"64.5\"\n"
5620 "       y1=\"22.1\"\n"
5621 "       x2=\"64.5\"\n"
5622 "       y2=\"64.9\"\n"
5623 "       id=\"line26\"\n"
5624 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5625 "       fill=\"none\"\n"
5626 "       stroke=\"#a45c94\"\n"
5627 "       stroke-width=\"0.4942\"\n"
5628 "       stroke-miterlimit=\"10\"\n"
5629 "       x1=\"66.4\"\n"
5630 "       y1=\"22.1\"\n"
5631 "       x2=\"66.4\"\n"
5632 "       y2=\"64.9\"\n"
5633 "       id=\"line28\"\n"
5634 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5635 "       fill=\"none\"\n"
5636 "       stroke=\"#a45c94\"\n"
5637 "       stroke-width=\"0.4942\"\n"
5638 "       stroke-miterlimit=\"10\"\n"
5639 "       x1=\"68.3\"\n"
5640 "       y1=\"22.1\"\n"
5641 "       x2=\"68.3\"\n"
5642 "       y2=\"64.9\"\n"
5643 "       id=\"line30\"\n"
5644 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5645 "       fill=\"none\"\n"
5646 "       stroke=\"#a45c94\"\n"
5647 "       stroke-width=\"0.4942\"\n"
5648 "       stroke-miterlimit=\"10\"\n"
5649 "       x1=\"70.1\"\n"
5650 "       y1=\"22.1\"\n"
5651 "       x2=\"70.1\"\n"
5652 "       y2=\"64.9\"\n"
5653 "       id=\"line32\"\n"
5654 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5655 "       fill=\"none\"\n"
5656 "       stroke=\"#a45c94\"\n"
5657 "       stroke-width=\"0.4942\"\n"
5658 "       stroke-miterlimit=\"10\"\n"
5659 "       x1=\"72\"\n"
5660 "       y1=\"22.1\"\n"
5661 "       x2=\"72\"\n"
5662 "       y2=\"64.9\"\n"
5663 "       id=\"line34\"\n"
5664 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5665 "       fill=\"none\"\n"
5666 "       stroke=\"#a45c94\"\n"
5667 "       stroke-width=\"0.4942\"\n"
5668 "       stroke-miterlimit=\"10\"\n"
5669 "       x1=\"73.9\"\n"
5670 "       y1=\"22.1\"\n"
5671 "       x2=\"73.9\"\n"
5672 "       y2=\"64.9\"\n"
5673 "       id=\"line36\"\n"
5674 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><path\n"
5675 "     fill=\"none\"\n"
5676 "     stroke=\"#a45c94\"\n"
5677 "     stroke-width=\"1.2453\"\n"
5678 "     stroke-miterlimit=\"10\"\n"
5679 "     d=\"M76.4,20.8v44.3c0,1-0.8,1.8-1.8,1.8H63.8  c-1,0-1.8-0.8-1.8-1.8V20.8\"\n"
5680 "     id=\"path38\"\n"
5681 "     style=\"stroke:#a45c94;stroke-opacity:1\" /><g\n"
5682 "     id=\"g40\"\n"
5683 "     style=\"stroke:#a45c94;stroke-opacity:1\"><line\n"
5684 "       fill=\"none\"\n"
5685 "       stroke=\"#a45c94\"\n"
5686 "       stroke-width=\"0.4942\"\n"
5687 "       stroke-miterlimit=\"10\"\n"
5688 "       x1=\"85.9\"\n"
5689 "       y1=\"22.1\"\n"
5690 "       x2=\"85.9\"\n"
5691 "       y2=\"64.9\"\n"
5692 "       id=\"line42\"\n"
5693 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5694 "       fill=\"none\"\n"
5695 "       stroke=\"#a45c94\"\n"
5696 "       stroke-width=\"0.4942\"\n"
5697 "       stroke-miterlimit=\"10\"\n"
5698 "       x1=\"87.8\"\n"
5699 "       y1=\"22.1\"\n"
5700 "       x2=\"87.8\"\n"
5701 "       y2=\"64.9\"\n"
5702 "       id=\"line44\"\n"
5703 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5704 "       fill=\"none\"\n"
5705 "       stroke=\"#a45c94\"\n"
5706 "       stroke-width=\"0.4942\"\n"
5707 "       stroke-miterlimit=\"10\"\n"
5708 "       x1=\"89.7\"\n"
5709 "       y1=\"22.1\"\n"
5710 "       x2=\"89.7\"\n"
5711 "       y2=\"64.9\"\n"
5712 "       id=\"line46\"\n"
5713 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5714 "       fill=\"none\"\n"
5715 "       stroke=\"#a45c94\"\n"
5716 "       stroke-width=\"0.4942\"\n"
5717 "       stroke-miterlimit=\"10\"\n"
5718 "       x1=\"91.6\"\n"
5719 "       y1=\"22.1\"\n"
5720 "       x2=\"91.6\"\n"
5721 "       y2=\"64.9\"\n"
5722 "       id=\"line48\"\n"
5723 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5724 "       fill=\"none\"\n"
5725 "       stroke=\"#a45c94\"\n"
5726 "       stroke-width=\"0.4942\"\n"
5727 "       stroke-miterlimit=\"10\"\n"
5728 "       x1=\"93.4\"\n"
5729 "       y1=\"22.1\"\n"
5730 "       x2=\"93.4\"\n"
5731 "       y2=\"64.9\"\n"
5732 "       id=\"line50\"\n"
5733 "       style=\"stroke:#a45c94;stroke-opacity:1\" /><line\n"
5734 "       fill=\"none\"\n"
5735 "       stroke=\"#a45c94\"\n"
5736 "       stroke-width=\"0.4942\"\n"
5737 "       stroke-miterlimit=\"10\"\n"
5738 "       x1=\"95.3\"\n"
5739 "       y1=\"22.1\"\n"
5740 "       x2=\"95.3\"\n"
5741 "       y2=\"64.9\"\n"
5742 "       id=\"line52\"\n"
5743 "       style=\"stroke:#a45c94;stroke-opacity:1\" /></g><path\n"
5744 "     fill=\"none\"\n"
5745 "     stroke=\"#a45c94\"\n"
5746 "     stroke-width=\"1.2453\"\n"
5747 "     stroke-miterlimit=\"10\"\n"
5748 "     d=\"M97.8,20.8v44.3c0,1-0.8,1.8-1.8,1.8H85.3  c-1,0-1.8-0.8-1.8-1.8V20.8\"\n"
5749 "     id=\"path54\"\n"
5750 "     style=\"stroke:#a45c94;stroke-opacity:1\" /></svg>";
5751 
5752 const char* wizard_StaticLibrary_svg = (const char*) temp_binary_data_29;
5753 
5754 //================== jucer_AnimatedComponentSimpleTemplate.h ==================
5755 static const unsigned char temp_binary_data_30[] =
5756 "#pragma once\r\n"
5757 "\r\n"
5758 "%%include_juce%%\r\n"
5759 "\r\n"
5760 "//==============================================================================\r\n"
5761 "/*\r\n"
5762 "    This component lives inside our window, and this is where you should put all\r\n"
5763 "    your controls and content.\r\n"
5764 "*/\r\n"
5765 "class %%content_component_class%%  : public juce::AnimatedAppComponent\r\n"
5766 "{\r\n"
5767 "public:\r\n"
5768 "    //==============================================================================\r\n"
5769 "    %%content_component_class%%()\r\n"
5770 "    {\r\n"
5771 "        // Make sure you set the size of the component after\r\n"
5772 "        // you add any child components.\r\n"
5773 "        setSize (800, 600);\r\n"
5774 "        setFramesPerSecond (60); // This sets the frequency of the update calls.\r\n"
5775 "    }\r\n"
5776 "\r\n"
5777 "    ~%%content_component_class%%() override\r\n"
5778 "    {\r\n"
5779 "    }\r\n"
5780 "\r\n"
5781 "    //==============================================================================\r\n"
5782 "    void update() override\r\n"
5783 "    {\r\n"
5784 "        // This function is called at the frequency specified by the setFramesPerSecond() call\r\n"
5785 "        // in the constructor. You can use it to update counters, animate values, etc.\r\n"
5786 "    }\r\n"
5787 "\r\n"
5788 "    //==============================================================================\r\n"
5789 "    void paint (juce::Graphics& g) override\r\n"
5790 "    {\r\n"
5791 "        // (Our component is opaque, so we must completely fill the background with a solid colour)\r\n"
5792 "        g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));\r\n"
5793 "\r\n"
5794 "        // You can add your drawing code here!\r\n"
5795 "    }\r\n"
5796 "\r\n"
5797 "    void resized() override\r\n"
5798 "    {\r\n"
5799 "        // This is called when the MainContentComponent is resized.\r\n"
5800 "        // If you add any child components, this is where you should\r\n"
5801 "        // update their positions.\r\n"
5802 "    }\r\n"
5803 "\r\n"
5804 "\r\n"
5805 "private:\r\n"
5806 "    //==============================================================================\r\n"
5807 "    // Your private member variables go here...\r\n"
5808 "\r\n"
5809 "\r\n"
5810 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)\r\n"
5811 "};\r\n";
5812 
5813 const char* jucer_AnimatedComponentSimpleTemplate_h = (const char*) temp_binary_data_30;
5814 
5815 //================== jucer_AnimatedComponentTemplate.cpp ==================
5816 static const unsigned char temp_binary_data_31[] =
5817 "%%include_corresponding_header%%\r\n"
5818 "\r\n"
5819 "//==============================================================================\r\n"
5820 "%%content_component_class%%::%%content_component_class%%()\r\n"
5821 "{\r\n"
5822 "    // Make sure you set the size of the component after\r\n"
5823 "    // you add any child components.\r\n"
5824 "    setSize (800, 600);\r\n"
5825 "    setFramesPerSecond (60); // This sets the frequency of the update calls.\r\n"
5826 "}\r\n"
5827 "\r\n"
5828 "%%content_component_class%%::~%%content_component_class%%()\r\n"
5829 "{\r\n"
5830 "}\r\n"
5831 "\r\n"
5832 "//==============================================================================\r\n"
5833 "void %%content_component_class%%::update()\r\n"
5834 "{\r\n"
5835 "    // This function is called at the frequency specified by the setFramesPerSecond() call\r\n"
5836 "    // in the constructor. You can use it to update counters, animate values, etc.\r\n"
5837 "}\r\n"
5838 "\r\n"
5839 "//==============================================================================\r\n"
5840 "void %%content_component_class%%::paint (juce::Graphics& g)\r\n"
5841 "{\r\n"
5842 "    // (Our component is opaque, so we must completely fill the background with a solid colour)\r\n"
5843 "    g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));\r\n"
5844 "\r\n"
5845 "    // You can add your drawing code here!\r\n"
5846 "}\r\n"
5847 "\r\n"
5848 "void %%content_component_class%%::resized()\r\n"
5849 "{\r\n"
5850 "    // This is called when the MainContentComponent is resized.\r\n"
5851 "    // If you add any child components, this is where you should\r\n"
5852 "    // update their positions.\r\n"
5853 "}\r\n";
5854 
5855 const char* jucer_AnimatedComponentTemplate_cpp = (const char*) temp_binary_data_31;
5856 
5857 //================== jucer_AnimatedComponentTemplate.h ==================
5858 static const unsigned char temp_binary_data_32[] =
5859 "#pragma once\r\n"
5860 "\r\n"
5861 "%%include_juce%%\r\n"
5862 "\r\n"
5863 "//==============================================================================\r\n"
5864 "/*\r\n"
5865 "    This component lives inside our window, and this is where you should put all\r\n"
5866 "    your controls and content.\r\n"
5867 "*/\r\n"
5868 "class %%content_component_class%%  : public juce::AnimatedAppComponent\r\n"
5869 "{\r\n"
5870 "public:\r\n"
5871 "    //==============================================================================\r\n"
5872 "    %%content_component_class%%();\r\n"
5873 "    ~%%content_component_class%%() override;\r\n"
5874 "\r\n"
5875 "    //==============================================================================\r\n"
5876 "    void update() override;\r\n"
5877 "\r\n"
5878 "    //==============================================================================\r\n"
5879 "    void paint (juce::Graphics& g) override;\r\n"
5880 "    void resized() override;\r\n"
5881 "\r\n"
5882 "private:\r\n"
5883 "    //==============================================================================\r\n"
5884 "    // Your private member variables go here...\r\n"
5885 "\r\n"
5886 "\r\n"
5887 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)\r\n"
5888 "};\r\n";
5889 
5890 const char* jucer_AnimatedComponentTemplate_h = (const char*) temp_binary_data_32;
5891 
5892 //================== jucer_AudioComponentSimpleTemplate.h ==================
5893 static const unsigned char temp_binary_data_33[] =
5894 "#pragma once\r\n"
5895 "\r\n"
5896 "%%include_juce%%\r\n"
5897 "\r\n"
5898 "//==============================================================================\r\n"
5899 "/*\r\n"
5900 "    This component lives inside our window, and this is where you should put all\r\n"
5901 "    your controls and content.\r\n"
5902 "*/\r\n"
5903 "class %%content_component_class%%  : public juce::AudioAppComponent\r\n"
5904 "{\r\n"
5905 "public:\r\n"
5906 "    //==============================================================================\r\n"
5907 "    %%content_component_class%%()\r\n"
5908 "    {\r\n"
5909 "        // Make sure you set the size of the component after\r\n"
5910 "        // you add any child components.\r\n"
5911 "        setSize (800, 600);\r\n"
5912 "\r\n"
5913 "        // Some platforms require permissions to open input channels so request that here\r\n"
5914 "        if (juce::RuntimePermissions::isRequired (juce::RuntimePermissions::recordAudio)\r\n"
5915 "            && ! juce::RuntimePermissions::isGranted (juce::RuntimePermissions::recordAudio))\r\n"
5916 "        {\r\n"
5917 "            juce::RuntimePermissions::request (juce::RuntimePermissions::recordAudio,\r\n"
5918 "                                               [&] (bool granted) { setAudioChannels (granted ? 2 : 0, 2); });\r\n"
5919 "        }\r\n"
5920 "        else\r\n"
5921 "        {\r\n"
5922 "            // Specify the number of input and output channels that we want to open\r\n"
5923 "            setAudioChannels (2, 2);\r\n"
5924 "        }\r\n"
5925 "    }\r\n"
5926 "\r\n"
5927 "    ~%%content_component_class%%() override\r\n"
5928 "    {\r\n"
5929 "        // This shuts down the audio device and clears the audio source.\r\n"
5930 "        shutdownAudio();\r\n"
5931 "    }\r\n"
5932 "\r\n"
5933 "    //==============================================================================\r\n"
5934 "    void prepareToPlay (int samplesPerBlockExpected, double sampleRate) override\r\n"
5935 "    {\r\n"
5936 "        // This function will be called when the audio device is started, or when\r\n"
5937 "        // its settings (i.e. sample rate, block size, etc) are changed.\r\n"
5938 "\r\n"
5939 "        // You can use this function to initialise any resources you might need,\r\n"
5940 "        // but be careful - it will be called on the audio thread, not the GUI thread.\r\n"
5941 "\r\n"
5942 "        // For more details, see the help for AudioProcessor::prepareToPlay()\r\n"
5943 "    }\r\n"
5944 "\r\n"
5945 "    void getNextAudioBlock (const juce::AudioSourceChannelInfo& bufferToFill) override\r\n"
5946 "    {\r\n"
5947 "        // Your audio-processing code goes here!\r\n"
5948 "\r\n"
5949 "        // For more details, see the help for AudioProcessor::getNextAudioBlock()\r\n"
5950 "\r\n"
5951 "        // Right now we are not producing any data, in which case we need to clear the buffer\r\n"
5952 "        // (to prevent the output of random noise)\r\n"
5953 "        bufferToFill.clearActiveBufferRegion();\r\n"
5954 "    }\r\n"
5955 "\r\n"
5956 "    void releaseResources() override\r\n"
5957 "    {\r\n"
5958 "        // This will be called when the audio device stops, or when it is being\r\n"
5959 "        // restarted due to a setting change.\r\n"
5960 "\r\n"
5961 "        // For more details, see the help for AudioProcessor::releaseResources()\r\n"
5962 "    }\r\n"
5963 "\r\n"
5964 "    //==============================================================================\r\n"
5965 "    void paint (juce::Graphics& g) override\r\n"
5966 "    {\r\n"
5967 "        // (Our component is opaque, so we must completely fill the background with a solid colour)\r\n"
5968 "        g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));\r\n"
5969 "\r\n"
5970 "        // You can add your drawing code here!\r\n"
5971 "    }\r\n"
5972 "\r\n"
5973 "    void resized() override\r\n"
5974 "    {\r\n"
5975 "        // This is called when the MainContentComponent is resized.\r\n"
5976 "        // If you add any child components, this is where you should\r\n"
5977 "        // update their positions.\r\n"
5978 "    }\r\n"
5979 "\r\n"
5980 "\r\n"
5981 "private:\r\n"
5982 "    //==============================================================================\r\n"
5983 "    // Your private member variables go here...\r\n"
5984 "\r\n"
5985 "\r\n"
5986 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)\r\n"
5987 "};\r\n";
5988 
5989 const char* jucer_AudioComponentSimpleTemplate_h = (const char*) temp_binary_data_33;
5990 
5991 //================== jucer_AudioComponentTemplate.cpp ==================
5992 static const unsigned char temp_binary_data_34[] =
5993 "%%include_corresponding_header%%\r\n"
5994 "\r\n"
5995 "//==============================================================================\r\n"
5996 "%%content_component_class%%::%%content_component_class%%()\r\n"
5997 "{\r\n"
5998 "    // Make sure you set the size of the component after\r\n"
5999 "    // you add any child components.\r\n"
6000 "    setSize (800, 600);\r\n"
6001 "\r\n"
6002 "    // Some platforms require permissions to open input channels so request that here\r\n"
6003 "    if (juce::RuntimePermissions::isRequired (juce::RuntimePermissions::recordAudio)\r\n"
6004 "        && ! juce::RuntimePermissions::isGranted (juce::RuntimePermissions::recordAudio))\r\n"
6005 "    {\r\n"
6006 "        juce::RuntimePermissions::request (juce::RuntimePermissions::recordAudio,\r\n"
6007 "                                           [&] (bool granted) { setAudioChannels (granted ? 2 : 0, 2); });\r\n"
6008 "    }\r\n"
6009 "    else\r\n"
6010 "    {\r\n"
6011 "        // Specify the number of input and output channels that we want to open\r\n"
6012 "        setAudioChannels (2, 2);\r\n"
6013 "    }\r\n"
6014 "}\r\n"
6015 "\r\n"
6016 "%%content_component_class%%::~%%content_component_class%%()\r\n"
6017 "{\r\n"
6018 "    // This shuts down the audio device and clears the audio source.\r\n"
6019 "    shutdownAudio();\r\n"
6020 "}\r\n"
6021 "\r\n"
6022 "//==============================================================================\r\n"
6023 "void %%content_component_class%%::prepareToPlay (int samplesPerBlockExpected, double sampleRate)\r\n"
6024 "{\r\n"
6025 "    // This function will be called when the audio device is started, or when\r\n"
6026 "    // its settings (i.e. sample rate, block size, etc) are changed.\r\n"
6027 "\r\n"
6028 "    // You can use this function to initialise any resources you might need,\r\n"
6029 "    // but be careful - it will be called on the audio thread, not the GUI thread.\r\n"
6030 "\r\n"
6031 "    // For more details, see the help for AudioProcessor::prepareToPlay()\r\n"
6032 "}\r\n"
6033 "\r\n"
6034 "void %%content_component_class%%::getNextAudioBlock (const juce::AudioSourceChannelInfo& bufferToFill)\r\n"
6035 "{\r\n"
6036 "    // Your audio-processing code goes here!\r\n"
6037 "\r\n"
6038 "    // For more details, see the help for AudioProcessor::getNextAudioBlock()\r\n"
6039 "\r\n"
6040 "    // Right now we are not producing any data, in which case we need to clear the buffer\r\n"
6041 "    // (to prevent the output of random noise)\r\n"
6042 "    bufferToFill.clearActiveBufferRegion();\r\n"
6043 "}\r\n"
6044 "\r\n"
6045 "void %%content_component_class%%::releaseResources()\r\n"
6046 "{\r\n"
6047 "    // This will be called when the audio device stops, or when it is being\r\n"
6048 "    // restarted due to a setting change.\r\n"
6049 "\r\n"
6050 "    // For more details, see the help for AudioProcessor::releaseResources()\r\n"
6051 "}\r\n"
6052 "\r\n"
6053 "//==============================================================================\r\n"
6054 "void %%content_component_class%%::paint (juce::Graphics& g)\r\n"
6055 "{\r\n"
6056 "    // (Our component is opaque, so we must completely fill the background with a solid colour)\r\n"
6057 "    g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));\r\n"
6058 "\r\n"
6059 "    // You can add your drawing code here!\r\n"
6060 "}\r\n"
6061 "\r\n"
6062 "void %%content_component_class%%::resized()\r\n"
6063 "{\r\n"
6064 "    // This is called when the MainContentComponent is resized.\r\n"
6065 "    // If you add any child components, this is where you should\r\n"
6066 "    // update their positions.\r\n"
6067 "}\r\n";
6068 
6069 const char* jucer_AudioComponentTemplate_cpp = (const char*) temp_binary_data_34;
6070 
6071 //================== jucer_AudioComponentTemplate.h ==================
6072 static const unsigned char temp_binary_data_35[] =
6073 "#pragma once\r\n"
6074 "\r\n"
6075 "%%include_juce%%\r\n"
6076 "\r\n"
6077 "//==============================================================================\r\n"
6078 "/*\r\n"
6079 "    This component lives inside our window, and this is where you should put all\r\n"
6080 "    your controls and content.\r\n"
6081 "*/\r\n"
6082 "class %%content_component_class%%  : public juce::AudioAppComponent\r\n"
6083 "{\r\n"
6084 "public:\r\n"
6085 "    //==============================================================================\r\n"
6086 "    %%content_component_class%%();\r\n"
6087 "    ~%%content_component_class%%() override;\r\n"
6088 "\r\n"
6089 "    //==============================================================================\r\n"
6090 "    void prepareToPlay (int samplesPerBlockExpected, double sampleRate) override;\r\n"
6091 "    void getNextAudioBlock (const juce::AudioSourceChannelInfo& bufferToFill) override;\r\n"
6092 "    void releaseResources() override;\r\n"
6093 "\r\n"
6094 "    //==============================================================================\r\n"
6095 "    void paint (juce::Graphics& g) override;\r\n"
6096 "    void resized() override;\r\n"
6097 "\r\n"
6098 "private:\r\n"
6099 "    //==============================================================================\r\n"
6100 "    // Your private member variables go here...\r\n"
6101 "\r\n"
6102 "\r\n"
6103 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)\r\n"
6104 "};\r\n";
6105 
6106 const char* jucer_AudioComponentTemplate_h = (const char*) temp_binary_data_35;
6107 
6108 //================== jucer_AudioPluginEditorTemplate.cpp ==================
6109 static const unsigned char temp_binary_data_36[] =
6110 "/*\r\n"
6111 "  ==============================================================================\r\n"
6112 "\r\n"
6113 "    This file contains the basic framework code for a JUCE plugin editor.\r\n"
6114 "\r\n"
6115 "  ==============================================================================\r\n"
6116 "*/\r\n"
6117 "\r\n"
6118 "%%editor_cpp_headers%%\r\n"
6119 "\r\n"
6120 "//==============================================================================\r\n"
6121 "%%editor_class_name%%::%%editor_class_name%% (%%filter_class_name%%& p)\r\n"
6122 "    : AudioProcessorEditor (&p), audioProcessor (p)\r\n"
6123 "{\r\n"
6124 "    // Make sure that before the constructor has finished, you've set the\r\n"
6125 "    // editor's size to whatever you need it to be.\r\n"
6126 "    setSize (400, 300);\r\n"
6127 "}\r\n"
6128 "\r\n"
6129 "%%editor_class_name%%::~%%editor_class_name%%()\r\n"
6130 "{\r\n"
6131 "}\r\n"
6132 "\r\n"
6133 "//==============================================================================\r\n"
6134 "void %%editor_class_name%%::paint (juce::Graphics& g)\r\n"
6135 "{\r\n"
6136 "    // (Our component is opaque, so we must completely fill the background with a solid colour)\r\n"
6137 "    g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));\r\n"
6138 "\r\n"
6139 "    g.setColour (juce::Colours::white);\r\n"
6140 "    g.setFont (15.0f);\r\n"
6141 "    g.drawFittedText (\"Hello World!\", getLocalBounds(), juce::Justification::centred, 1);\r\n"
6142 "}\r\n"
6143 "\r\n"
6144 "void %%editor_class_name%%::resized()\r\n"
6145 "{\r\n"
6146 "    // This is generally where you'll want to lay out the positions of any\r\n"
6147 "    // subcomponents in your editor..\r\n"
6148 "}\r\n";
6149 
6150 const char* jucer_AudioPluginEditorTemplate_cpp = (const char*) temp_binary_data_36;
6151 
6152 //================== jucer_AudioPluginEditorTemplate.h ==================
6153 static const unsigned char temp_binary_data_37[] =
6154 "/*\r\n"
6155 "  ==============================================================================\r\n"
6156 "\r\n"
6157 "    This file contains the basic framework code for a JUCE plugin editor.\r\n"
6158 "\r\n"
6159 "  ==============================================================================\r\n"
6160 "*/\r\n"
6161 "\r\n"
6162 "#pragma once\r\n"
6163 "\r\n"
6164 "%%editor_headers%%\r\n"
6165 "\r\n"
6166 "//==============================================================================\r\n"
6167 "/**\r\n"
6168 "*/\r\n"
6169 "class %%editor_class_name%%  : public juce::AudioProcessorEditor\r\n"
6170 "{\r\n"
6171 "public:\r\n"
6172 "    %%editor_class_name%% (%%filter_class_name%%&);\r\n"
6173 "    ~%%editor_class_name%%() override;\r\n"
6174 "\r\n"
6175 "    //==============================================================================\r\n"
6176 "    void paint (juce::Graphics&) override;\r\n"
6177 "    void resized() override;\r\n"
6178 "\r\n"
6179 "private:\r\n"
6180 "    // This reference is provided as a quick way for your editor to\r\n"
6181 "    // access the processor object that created it.\r\n"
6182 "    %%filter_class_name%%& audioProcessor;\r\n"
6183 "\r\n"
6184 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%editor_class_name%%)\r\n"
6185 "};\r\n";
6186 
6187 const char* jucer_AudioPluginEditorTemplate_h = (const char*) temp_binary_data_37;
6188 
6189 //================== jucer_AudioPluginFilterTemplate.cpp ==================
6190 static const unsigned char temp_binary_data_38[] =
6191 "/*\r\n"
6192 "  ==============================================================================\r\n"
6193 "\r\n"
6194 "    This file contains the basic framework code for a JUCE plugin processor.\r\n"
6195 "\r\n"
6196 "  ==============================================================================\r\n"
6197 "*/\r\n"
6198 "\r\n"
6199 "%%filter_headers%%\r\n"
6200 "\r\n"
6201 "//==============================================================================\r\n"
6202 "%%filter_class_name%%::%%filter_class_name%%()\r\n"
6203 "#ifndef JucePlugin_PreferredChannelConfigurations\r\n"
6204 "     : AudioProcessor (BusesProperties()\r\n"
6205 "                     #if ! JucePlugin_IsMidiEffect\r\n"
6206 "                      #if ! JucePlugin_IsSynth\r\n"
6207 "                       .withInput  (\"Input\",  juce::AudioChannelSet::stereo(), true)\r\n"
6208 "                      #endif\r\n"
6209 "                       .withOutput (\"Output\", juce::AudioChannelSet::stereo(), true)\r\n"
6210 "                     #endif\r\n"
6211 "                       )\r\n"
6212 "#endif\r\n"
6213 "{\r\n"
6214 "}\r\n"
6215 "\r\n"
6216 "%%filter_class_name%%::~%%filter_class_name%%()\r\n"
6217 "{\r\n"
6218 "}\r\n"
6219 "\r\n"
6220 "//==============================================================================\r\n"
6221 "const juce::String %%filter_class_name%%::getName() const\r\n"
6222 "{\r\n"
6223 "    return JucePlugin_Name;\r\n"
6224 "}\r\n"
6225 "\r\n"
6226 "bool %%filter_class_name%%::acceptsMidi() const\r\n"
6227 "{\r\n"
6228 "   #if JucePlugin_WantsMidiInput\r\n"
6229 "    return true;\r\n"
6230 "   #else\r\n"
6231 "    return false;\r\n"
6232 "   #endif\r\n"
6233 "}\r\n"
6234 "\r\n"
6235 "bool %%filter_class_name%%::producesMidi() const\r\n"
6236 "{\r\n"
6237 "   #if JucePlugin_ProducesMidiOutput\r\n"
6238 "    return true;\r\n"
6239 "   #else\r\n"
6240 "    return false;\r\n"
6241 "   #endif\r\n"
6242 "}\r\n"
6243 "\r\n"
6244 "bool %%filter_class_name%%::isMidiEffect() const\r\n"
6245 "{\r\n"
6246 "   #if JucePlugin_IsMidiEffect\r\n"
6247 "    return true;\r\n"
6248 "   #else\r\n"
6249 "    return false;\r\n"
6250 "   #endif\r\n"
6251 "}\r\n"
6252 "\r\n"
6253 "double %%filter_class_name%%::getTailLengthSeconds() const\r\n"
6254 "{\r\n"
6255 "    return 0.0;\r\n"
6256 "}\r\n"
6257 "\r\n"
6258 "int %%filter_class_name%%::getNumPrograms()\r\n"
6259 "{\r\n"
6260 "    return 1;   // NB: some hosts don't cope very well if you tell them there are 0 programs,\r\n"
6261 "                // so this should be at least 1, even if you're not really implementing programs.\r\n"
6262 "}\r\n"
6263 "\r\n"
6264 "int %%filter_class_name%%::getCurrentProgram()\r\n"
6265 "{\r\n"
6266 "    return 0;\r\n"
6267 "}\r\n"
6268 "\r\n"
6269 "void %%filter_class_name%%::setCurrentProgram (int index)\r\n"
6270 "{\r\n"
6271 "}\r\n"
6272 "\r\n"
6273 "const juce::String %%filter_class_name%%::getProgramName (int index)\r\n"
6274 "{\r\n"
6275 "    return {};\r\n"
6276 "}\r\n"
6277 "\r\n"
6278 "void %%filter_class_name%%::changeProgramName (int index, const juce::String& newName)\r\n"
6279 "{\r\n"
6280 "}\r\n"
6281 "\r\n"
6282 "//==============================================================================\r\n"
6283 "void %%filter_class_name%%::prepareToPlay (double sampleRate, int samplesPerBlock)\r\n"
6284 "{\r\n"
6285 "    // Use this method as the place to do any pre-playback\r\n"
6286 "    // initialisation that you need..\r\n"
6287 "}\r\n"
6288 "\r\n"
6289 "void %%filter_class_name%%::releaseResources()\r\n"
6290 "{\r\n"
6291 "    // When playback stops, you can use this as an opportunity to free up any\r\n"
6292 "    // spare memory, etc.\r\n"
6293 "}\r\n"
6294 "\r\n"
6295 "#ifndef JucePlugin_PreferredChannelConfigurations\r\n"
6296 "bool %%filter_class_name%%::isBusesLayoutSupported (const BusesLayout& layouts) const\r\n"
6297 "{\r\n"
6298 "  #if JucePlugin_IsMidiEffect\r\n"
6299 "    juce::ignoreUnused (layouts);\r\n"
6300 "    return true;\r\n"
6301 "  #else\r\n"
6302 "    // This is the place where you check if the layout is supported.\r\n"
6303 "    // In this template code we only support mono or stereo.\r\n"
6304 "    // Some plugin hosts, such as certain GarageBand versions, will only\r\n"
6305 "    // load plugins that support stereo bus layouts.\r\n"
6306 "    if (layouts.getMainOutputChannelSet() != juce::AudioChannelSet::mono()\r\n"
6307 "     && layouts.getMainOutputChannelSet() != juce::AudioChannelSet::stereo())\r\n"
6308 "        return false;\r\n"
6309 "\r\n"
6310 "    // This checks if the input layout matches the output layout\r\n"
6311 "   #if ! JucePlugin_IsSynth\r\n"
6312 "    if (layouts.getMainOutputChannelSet() != layouts.getMainInputChannelSet())\r\n"
6313 "        return false;\r\n"
6314 "   #endif\r\n"
6315 "\r\n"
6316 "    return true;\r\n"
6317 "  #endif\r\n"
6318 "}\r\n"
6319 "#endif\r\n"
6320 "\r\n"
6321 "void %%filter_class_name%%::processBlock (juce::AudioBuffer<float>& buffer, juce::MidiBuffer& midiMessages)\r\n"
6322 "{\r\n"
6323 "    juce::ScopedNoDenormals noDenormals;\r\n"
6324 "    auto totalNumInputChannels  = getTotalNumInputChannels();\r\n"
6325 "    auto totalNumOutputChannels = getTotalNumOutputChannels();\r\n"
6326 "\r\n"
6327 "    // In case we have more outputs than inputs, this code clears any output\r\n"
6328 "    // channels that didn't contain input data, (because these aren't\r\n"
6329 "    // guaranteed to be empty - they may contain garbage).\r\n"
6330 "    // This is here to avoid people getting screaming feedback\r\n"
6331 "    // when they first compile a plugin, but obviously you don't need to keep\r\n"
6332 "    // this code if your algorithm always overwrites all the output channels.\r\n"
6333 "    for (auto i = totalNumInputChannels; i < totalNumOutputChannels; ++i)\r\n"
6334 "        buffer.clear (i, 0, buffer.getNumSamples());\r\n"
6335 "\r\n"
6336 "    // This is the place where you'd normally do the guts of your plugin's\r\n"
6337 "    // audio processing...\r\n"
6338 "    // Make sure to reset the state if your inner loop is processing\r\n"
6339 "    // the samples and the outer loop is handling the channels.\r\n"
6340 "    // Alternatively, you can process the samples with the channels\r\n"
6341 "    // interleaved by keeping the same state.\r\n"
6342 "    for (int channel = 0; channel < totalNumInputChannels; ++channel)\r\n"
6343 "    {\r\n"
6344 "        auto* channelData = buffer.getWritePointer (channel);\r\n"
6345 "\r\n"
6346 "        // ..do something to the data...\r\n"
6347 "    }\r\n"
6348 "}\r\n"
6349 "\r\n"
6350 "//==============================================================================\r\n"
6351 "bool %%filter_class_name%%::hasEditor() const\r\n"
6352 "{\r\n"
6353 "    return true; // (change this to false if you choose to not supply an editor)\r\n"
6354 "}\r\n"
6355 "\r\n"
6356 "juce::AudioProcessorEditor* %%filter_class_name%%::createEditor()\r\n"
6357 "{\r\n"
6358 "    return new %%editor_class_name%% (*this);\r\n"
6359 "}\r\n"
6360 "\r\n"
6361 "//==============================================================================\r\n"
6362 "void %%filter_class_name%%::getStateInformation (juce::MemoryBlock& destData)\r\n"
6363 "{\r\n"
6364 "    // You should use this method to store your parameters in the memory block.\r\n"
6365 "    // You could do that either as raw data, or use the XML or ValueTree classes\r\n"
6366 "    // as intermediaries to make it easy to save and load complex data.\r\n"
6367 "}\r\n"
6368 "\r\n"
6369 "void %%filter_class_name%%::setStateInformation (const void* data, int sizeInBytes)\r\n"
6370 "{\r\n"
6371 "    // You should use this method to restore your parameters from this memory block,\r\n"
6372 "    // whose contents will have been created by the getStateInformation() call.\r\n"
6373 "}\r\n"
6374 "\r\n"
6375 "//==============================================================================\r\n"
6376 "// This creates new instances of the plugin..\r\n"
6377 "juce::AudioProcessor* JUCE_CALLTYPE createPluginFilter()\r\n"
6378 "{\r\n"
6379 "    return new %%filter_class_name%%();\r\n"
6380 "}\r\n";
6381 
6382 const char* jucer_AudioPluginFilterTemplate_cpp = (const char*) temp_binary_data_38;
6383 
6384 //================== jucer_AudioPluginFilterTemplate.h ==================
6385 static const unsigned char temp_binary_data_39[] =
6386 "/*\r\n"
6387 "  ==============================================================================\r\n"
6388 "\r\n"
6389 "    This file contains the basic framework code for a JUCE plugin processor.\r\n"
6390 "\r\n"
6391 "  ==============================================================================\r\n"
6392 "*/\r\n"
6393 "\r\n"
6394 "#pragma once\r\n"
6395 "\r\n"
6396 "%%app_headers%%\r\n"
6397 "\r\n"
6398 "//==============================================================================\r\n"
6399 "/**\r\n"
6400 "*/\r\n"
6401 "class %%filter_class_name%%  : public juce::AudioProcessor\r\n"
6402 "{\r\n"
6403 "public:\r\n"
6404 "    //==============================================================================\r\n"
6405 "    %%filter_class_name%%();\r\n"
6406 "    ~%%filter_class_name%%() override;\r\n"
6407 "\r\n"
6408 "    //==============================================================================\r\n"
6409 "    void prepareToPlay (double sampleRate, int samplesPerBlock) override;\r\n"
6410 "    void releaseResources() override;\r\n"
6411 "\r\n"
6412 "   #ifndef JucePlugin_PreferredChannelConfigurations\r\n"
6413 "    bool isBusesLayoutSupported (const BusesLayout& layouts) const override;\r\n"
6414 "   #endif\r\n"
6415 "\r\n"
6416 "    void processBlock (juce::AudioBuffer<float>&, juce::MidiBuffer&) override;\r\n"
6417 "\r\n"
6418 "    //==============================================================================\r\n"
6419 "    juce::AudioProcessorEditor* createEditor() override;\r\n"
6420 "    bool hasEditor() const override;\r\n"
6421 "\r\n"
6422 "    //==============================================================================\r\n"
6423 "    const juce::String getName() const override;\r\n"
6424 "\r\n"
6425 "    bool acceptsMidi() const override;\r\n"
6426 "    bool producesMidi() const override;\r\n"
6427 "    bool isMidiEffect() const override;\r\n"
6428 "    double getTailLengthSeconds() const override;\r\n"
6429 "\r\n"
6430 "    //==============================================================================\r\n"
6431 "    int getNumPrograms() override;\r\n"
6432 "    int getCurrentProgram() override;\r\n"
6433 "    void setCurrentProgram (int index) override;\r\n"
6434 "    const juce::String getProgramName (int index) override;\r\n"
6435 "    void changeProgramName (int index, const juce::String& newName) override;\r\n"
6436 "\r\n"
6437 "    //==============================================================================\r\n"
6438 "    void getStateInformation (juce::MemoryBlock& destData) override;\r\n"
6439 "    void setStateInformation (const void* data, int sizeInBytes) override;\r\n"
6440 "\r\n"
6441 "private:\r\n"
6442 "    //==============================================================================\r\n"
6443 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%filter_class_name%%)\r\n"
6444 "};\r\n";
6445 
6446 const char* jucer_AudioPluginFilterTemplate_h = (const char*) temp_binary_data_39;
6447 
6448 //================== jucer_ComponentTemplate.cpp ==================
6449 static const unsigned char temp_binary_data_40[] =
6450 "/*\r\n"
6451 "  ==============================================================================\r\n"
6452 "\r\n"
6453 "  This is an automatically generated GUI class created by the Projucer!\r\n"
6454 "\r\n"
6455 "  Be careful when adding custom code to these files, as only the code within\r\n"
6456 "  the \"//[xyz]\" and \"//[/xyz]\" sections will be retained when the file is loaded\r\n"
6457 "  and re-saved.\r\n"
6458 "\r\n"
6459 "  Created with Projucer version: %%version%%\r\n"
6460 "\r\n"
6461 "  ------------------------------------------------------------------------------\r\n"
6462 "\r\n"
6463 "  The Projucer is part of the JUCE library.\r\n"
6464 "  Copyright (c) 2020 - Raw Material Software Limited.\r\n"
6465 "\r\n"
6466 "  ==============================================================================\r\n"
6467 "*/\r\n"
6468 "\r\n"
6469 "//[Headers] You can add your own extra header files here...\r\n"
6470 "//[/Headers]\r\n"
6471 "\r\n"
6472 "%%include_files_cpp%%\r\n"
6473 "\r\n"
6474 "//[MiscUserDefs] You can add your own user definitions and misc code here...\r\n"
6475 "//[/MiscUserDefs]\r\n"
6476 "\r\n"
6477 "//==============================================================================\r\n"
6478 "%%class_name%%::%%class_name%% (%%constructor_params%%)\r\n"
6479 "%%initialisers%%{\r\n"
6480 "    //[Constructor_pre] You can add your own custom stuff here..\r\n"
6481 "    //[/Constructor_pre]\r\n"
6482 "\r\n"
6483 "    %%constructor%%\r\n"
6484 "\r\n"
6485 "    //[Constructor] You can add your own custom stuff here..\r\n"
6486 "    //[/Constructor]\r\n"
6487 "}\r\n"
6488 "\r\n"
6489 "%%class_name%%::~%%class_name%%()\r\n"
6490 "{\r\n"
6491 "    //[Destructor_pre]. You can add your own custom destruction code here..\r\n"
6492 "    //[/Destructor_pre]\r\n"
6493 "\r\n"
6494 "    %%destructor%%\r\n"
6495 "\r\n"
6496 "    //[Destructor]. You can add your own custom destruction code here..\r\n"
6497 "    //[/Destructor]\r\n"
6498 "}\r\n"
6499 "\r\n"
6500 "//==============================================================================\r\n"
6501 "%%method_definitions%%\r\n"
6502 "\r\n"
6503 "//[MiscUserCode] You can add your own definitions of your custom methods or any other code here...\r\n"
6504 "//[/MiscUserCode]\r\n"
6505 "\r\n"
6506 "\r\n"
6507 "//==============================================================================\r\n"
6508 "#if 0\r\n"
6509 "/*  -- Projucer information section --\r\n"
6510 "\r\n"
6511 "    This is where the Projucer stores the metadata that describe this GUI layout, so\r\n"
6512 "    make changes in here at your peril!\r\n"
6513 "\r\n"
6514 "BEGIN_JUCER_METADATA\r\n"
6515 "\r\n"
6516 "%%metadata%%\r\n"
6517 "END_JUCER_METADATA\r\n"
6518 "*/\r\n"
6519 "#endif\r\n"
6520 "\r\n"
6521 "%%static_member_definitions%%\r\n"
6522 "//[EndFile] You can add extra defines here...\r\n"
6523 "//[/EndFile]\r\n";
6524 
6525 const char* jucer_ComponentTemplate_cpp = (const char*) temp_binary_data_40;
6526 
6527 //================== jucer_ComponentTemplate.h ==================
6528 static const unsigned char temp_binary_data_41[] =
6529 "/*\r\n"
6530 "  ==============================================================================\r\n"
6531 "\r\n"
6532 "  This is an automatically generated GUI class created by the Projucer!\r\n"
6533 "\r\n"
6534 "  Be careful when adding custom code to these files, as only the code within\r\n"
6535 "  the \"//[xyz]\" and \"//[/xyz]\" sections will be retained when the file is loaded\r\n"
6536 "  and re-saved.\r\n"
6537 "\r\n"
6538 "  Created with Projucer version: %%version%%\r\n"
6539 "\r\n"
6540 "  ------------------------------------------------------------------------------\r\n"
6541 "\r\n"
6542 "  The Projucer is part of the JUCE library.\r\n"
6543 "  Copyright (c) 2020 - Raw Material Software Limited.\r\n"
6544 "\r\n"
6545 "  ==============================================================================\r\n"
6546 "*/\r\n"
6547 "\r\n"
6548 "#pragma once\r\n"
6549 "\r\n"
6550 "//[Headers]     -- You can add your own extra header files here --\r\n"
6551 "%%include_juce%%\r\n"
6552 "//[/Headers]\r\n"
6553 "\r\n"
6554 "%%include_files_h%%\r\n"
6555 "\r\n"
6556 "//==============================================================================\r\n"
6557 "/**\r\n"
6558 "                                                                    //[Comments]\r\n"
6559 "    An auto-generated component, created by the Projucer.\r\n"
6560 "\r\n"
6561 "    Describe your class and how it works here!\r\n"
6562 "                                                                    //[/Comments]\r\n"
6563 "*/\r\n"
6564 "%%class_declaration%%\r\n"
6565 "{\r\n"
6566 "public:\r\n"
6567 "    //==============================================================================\r\n"
6568 "    %%class_name%% (%%constructor_params%%);\r\n"
6569 "    ~%%class_name%%() override;\r\n"
6570 "\r\n"
6571 "    //==============================================================================\r\n"
6572 "    //[UserMethods]     -- You can add your own custom methods in this section.\r\n"
6573 "    //[/UserMethods]\r\n"
6574 "\r\n"
6575 "    %%public_member_declarations%%\r\n"
6576 "\r\n"
6577 "private:\r\n"
6578 "    //[UserVariables]   -- You can add your own custom variables in this section.\r\n"
6579 "    //[/UserVariables]\r\n"
6580 "\r\n"
6581 "    //==============================================================================\r\n"
6582 "    %%private_member_declarations%%\r\n"
6583 "\r\n"
6584 "    //==============================================================================\r\n"
6585 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%class_name%%)\r\n"
6586 "};\r\n"
6587 "\r\n"
6588 "//[EndFile] You can add extra defines here...\r\n"
6589 "//[/EndFile]\r\n";
6590 
6591 const char* jucer_ComponentTemplate_h = (const char*) temp_binary_data_41;
6592 
6593 //================== jucer_ContentCompSimpleTemplate.h ==================
6594 static const unsigned char temp_binary_data_42[] =
6595 "#pragma once\r\n"
6596 "\r\n"
6597 "%%include_juce%%\r\n"
6598 "\r\n"
6599 "//==============================================================================\r\n"
6600 "/*\r\n"
6601 "    This component lives inside our window, and this is where you should put all\r\n"
6602 "    your controls and content.\r\n"
6603 "*/\r\n"
6604 "class %%content_component_class%%  : public juce::Component\r\n"
6605 "{\r\n"
6606 "public:\r\n"
6607 "    //==============================================================================\r\n"
6608 "    %%content_component_class%%()\r\n"
6609 "    {\r\n"
6610 "        setSize (600, 400);\r\n"
6611 "    }\r\n"
6612 "\r\n"
6613 "    ~%%content_component_class%%() override\r\n"
6614 "    {\r\n"
6615 "    }\r\n"
6616 "\r\n"
6617 "    //==============================================================================\r\n"
6618 "    void paint (juce::Graphics& g) override\r\n"
6619 "    {\r\n"
6620 "        // (Our component is opaque, so we must completely fill the background with a solid colour)\r\n"
6621 "        g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));\r\n"
6622 "\r\n"
6623 "        g.setFont (juce::Font (16.0f));\r\n"
6624 "        g.setColour (juce::Colours::white);\r\n"
6625 "        g.drawText (\"Hello World!\", getLocalBounds(), juce::Justification::centred, true);\r\n"
6626 "    }\r\n"
6627 "\r\n"
6628 "    void resized() override\r\n"
6629 "    {\r\n"
6630 "        // This is called when the %%content_component_class%% is resized.\r\n"
6631 "        // If you add any child components, this is where you should\r\n"
6632 "        // update their positions.\r\n"
6633 "    }\r\n"
6634 "\r\n"
6635 "\r\n"
6636 "private:\r\n"
6637 "    //==============================================================================\r\n"
6638 "    // Your private member variables go here...\r\n"
6639 "\r\n"
6640 "\r\n"
6641 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)\r\n"
6642 "};\r\n";
6643 
6644 const char* jucer_ContentCompSimpleTemplate_h = (const char*) temp_binary_data_42;
6645 
6646 //================== jucer_ContentCompTemplate.cpp ==================
6647 static const unsigned char temp_binary_data_43[] =
6648 "%%include_corresponding_header%%\r\n"
6649 "\r\n"
6650 "//==============================================================================\r\n"
6651 "%%content_component_class%%::%%content_component_class%%()\r\n"
6652 "{\r\n"
6653 "    setSize (600, 400);\r\n"
6654 "}\r\n"
6655 "\r\n"
6656 "%%content_component_class%%::~%%content_component_class%%()\r\n"
6657 "{\r\n"
6658 "}\r\n"
6659 "\r\n"
6660 "//==============================================================================\r\n"
6661 "void %%content_component_class%%::paint (juce::Graphics& g)\r\n"
6662 "{\r\n"
6663 "    // (Our component is opaque, so we must completely fill the background with a solid colour)\r\n"
6664 "    g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));\r\n"
6665 "\r\n"
6666 "    g.setFont (juce::Font (16.0f));\r\n"
6667 "    g.setColour (juce::Colours::white);\r\n"
6668 "    g.drawText (\"Hello World!\", getLocalBounds(), juce::Justification::centred, true);\r\n"
6669 "}\r\n"
6670 "\r\n"
6671 "void %%content_component_class%%::resized()\r\n"
6672 "{\r\n"
6673 "    // This is called when the %%content_component_class%% is resized.\r\n"
6674 "    // If you add any child components, this is where you should\r\n"
6675 "    // update their positions.\r\n"
6676 "}\r\n";
6677 
6678 const char* jucer_ContentCompTemplate_cpp = (const char*) temp_binary_data_43;
6679 
6680 //================== jucer_ContentCompTemplate.h ==================
6681 static const unsigned char temp_binary_data_44[] =
6682 "#pragma once\r\n"
6683 "\r\n"
6684 "%%include_juce%%\r\n"
6685 "\r\n"
6686 "//==============================================================================\r\n"
6687 "/*\r\n"
6688 "    This component lives inside our window, and this is where you should put all\r\n"
6689 "    your controls and content.\r\n"
6690 "*/\r\n"
6691 "class %%content_component_class%%  : public juce::Component\r\n"
6692 "{\r\n"
6693 "public:\r\n"
6694 "    //==============================================================================\r\n"
6695 "    %%content_component_class%%();\r\n"
6696 "    ~%%content_component_class%%() override;\r\n"
6697 "\r\n"
6698 "    //==============================================================================\r\n"
6699 "    void paint (juce::Graphics&) override;\r\n"
6700 "    void resized() override;\r\n"
6701 "\r\n"
6702 "private:\r\n"
6703 "    //==============================================================================\r\n"
6704 "    // Your private member variables go here...\r\n"
6705 "\r\n"
6706 "\r\n"
6707 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)\r\n"
6708 "};\r\n";
6709 
6710 const char* jucer_ContentCompTemplate_h = (const char*) temp_binary_data_44;
6711 
6712 //================== jucer_InlineComponentTemplate.h ==================
6713 static const unsigned char temp_binary_data_45[] =
6714 "//==============================================================================\r\n"
6715 "class %%component_class%%  : public juce::Component\r\n"
6716 "{\r\n"
6717 "public:\r\n"
6718 "    %%component_class%%()\r\n"
6719 "    {\r\n"
6720 "        // In your constructor, you should add any child components, and\r\n"
6721 "        // initialise any special settings that your component needs.\r\n"
6722 "\r\n"
6723 "    }\r\n"
6724 "\r\n"
6725 "    ~%%component_class%%() override\r\n"
6726 "    {\r\n"
6727 "    }\r\n"
6728 "\r\n"
6729 "    void paint (juce::Graphics& g) override\r\n"
6730 "    {\r\n"
6731 "        // You should replace everything in this method with your own drawing code..\r\n"
6732 "\r\n"
6733 "        g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));   // clear the background\r\n"
6734 "\r\n"
6735 "        g.setColour (juce::Colours::grey);\r\n"
6736 "        g.drawRect (getLocalBounds(), 1);   // draw an outline around the component\r\n"
6737 "\r\n"
6738 "        g.setColour (juce::Colours::white);\r\n"
6739 "        g.setFont (14.0f);\r\n"
6740 "        g.drawText (\"%%component_class%%\", getLocalBounds(),\r\n"
6741 "                    juce::Justification::centred, true);   // draw some placeholder text\r\n"
6742 "    }\r\n"
6743 "\r\n"
6744 "    void resized() override\r\n"
6745 "    {\r\n"
6746 "        // This method is where you should set the bounds of any child\r\n"
6747 "        // components that your component contains..\r\n"
6748 "\r\n"
6749 "    }\r\n"
6750 "\r\n"
6751 "private:\r\n"
6752 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%component_class%%)\r\n"
6753 "};\r\n";
6754 
6755 const char* jucer_InlineComponentTemplate_h = (const char*) temp_binary_data_45;
6756 
6757 //================== jucer_MainConsoleAppTemplate.cpp ==================
6758 static const unsigned char temp_binary_data_46[] =
6759 "/*\r\n"
6760 "  ==============================================================================\r\n"
6761 "\r\n"
6762 "    This file contains the basic startup code for a JUCE application.\r\n"
6763 "\r\n"
6764 "  ==============================================================================\r\n"
6765 "*/\r\n"
6766 "\r\n"
6767 "%%app_headers%%\r\n"
6768 "\r\n"
6769 "//==============================================================================\r\n"
6770 "int main (int argc, char* argv[])\r\n"
6771 "{\r\n"
6772 "\r\n"
6773 "    // ..your code goes here!\r\n"
6774 "\r\n"
6775 "\r\n"
6776 "    return 0;\r\n"
6777 "}\r\n";
6778 
6779 const char* jucer_MainConsoleAppTemplate_cpp = (const char*) temp_binary_data_46;
6780 
6781 //================== jucer_MainTemplate_NoWindow.cpp ==================
6782 static const unsigned char temp_binary_data_47[] =
6783 "/*\r\n"
6784 "  ==============================================================================\r\n"
6785 "\r\n"
6786 "    This file contains the basic startup code for a JUCE application.\r\n"
6787 "\r\n"
6788 "  ==============================================================================\r\n"
6789 "*/\r\n"
6790 "\r\n"
6791 "%%app_headers%%\r\n"
6792 "\r\n"
6793 "//==============================================================================\r\n"
6794 "class %%app_class_name%%  : public juce::JUCEApplication\r\n"
6795 "{\r\n"
6796 "public:\r\n"
6797 "    //==============================================================================\r\n"
6798 "    %%app_class_name%%() {}\r\n"
6799 "\r\n"
6800 "    const juce::String getApplicationName() override       { return ProjectInfo::projectName; }\r\n"
6801 "    const juce::String getApplicationVersion() override    { return ProjectInfo::versionString; }\r\n"
6802 "    bool moreThanOneInstanceAllowed() override             { return true; }\r\n"
6803 "\r\n"
6804 "    //==============================================================================\r\n"
6805 "    void initialise (const juce::String& commandLine) override\r\n"
6806 "    {\r\n"
6807 "        // Add your application's initialisation code here..\r\n"
6808 "    }\r\n"
6809 "\r\n"
6810 "    void shutdown() override\r\n"
6811 "    {\r\n"
6812 "        // Add your application's shutdown code here..\r\n"
6813 "    }\r\n"
6814 "\r\n"
6815 "    //==============================================================================\r\n"
6816 "    void systemRequestedQuit() override\r\n"
6817 "    {\r\n"
6818 "        // This is called when the app is being asked to quit: you can ignore this\r\n"
6819 "        // request and let the app carry on running, or call quit() to allow the app to close.\r\n"
6820 "        quit();\r\n"
6821 "    }\r\n"
6822 "\r\n"
6823 "    void anotherInstanceStarted (const juce::String& commandLine) override\r\n"
6824 "    {\r\n"
6825 "        // When another instance of the app is launched while this one is running,\r\n"
6826 "        // this method is invoked, and the commandLine parameter tells you what\r\n"
6827 "        // the other instance's command-line arguments were.\r\n"
6828 "    }\r\n"
6829 "};\r\n"
6830 "\r\n"
6831 "//==============================================================================\r\n"
6832 "// This macro generates the main() routine that launches the app.\r\n"
6833 "START_JUCE_APPLICATION (%%app_class_name%%)\r\n";
6834 
6835 const char* jucer_MainTemplate_NoWindow_cpp = (const char*) temp_binary_data_47;
6836 
6837 //================== jucer_MainTemplate_Window.cpp ==================
6838 static const unsigned char temp_binary_data_48[] =
6839 "/*\r\n"
6840 "  ==============================================================================\r\n"
6841 "\r\n"
6842 "    This file contains the basic startup code for a JUCE application.\r\n"
6843 "\r\n"
6844 "  ==============================================================================\r\n"
6845 "*/\r\n"
6846 "\r\n"
6847 "%%app_headers%%\r\n"
6848 "\r\n"
6849 "//==============================================================================\r\n"
6850 "class %%app_class_name%%  : public juce::JUCEApplication\r\n"
6851 "{\r\n"
6852 "public:\r\n"
6853 "    //==============================================================================\r\n"
6854 "    %%app_class_name%%() {}\r\n"
6855 "\r\n"
6856 "    const juce::String getApplicationName() override       { return ProjectInfo::projectName; }\r\n"
6857 "    const juce::String getApplicationVersion() override    { return ProjectInfo::versionString; }\r\n"
6858 "    bool moreThanOneInstanceAllowed() override             { return true; }\r\n"
6859 "\r\n"
6860 "    //==============================================================================\r\n"
6861 "    void initialise (const juce::String& commandLine) override\r\n"
6862 "    {\r\n"
6863 "        // This method is where you should put your application's initialisation code..\r\n"
6864 "\r\n"
6865 "        mainWindow.reset (new MainWindow (getApplicationName()));\r\n"
6866 "    }\r\n"
6867 "\r\n"
6868 "    void shutdown() override\r\n"
6869 "    {\r\n"
6870 "        // Add your application's shutdown code here..\r\n"
6871 "\r\n"
6872 "        mainWindow = nullptr; // (deletes our window)\r\n"
6873 "    }\r\n"
6874 "\r\n"
6875 "    //==============================================================================\r\n"
6876 "    void systemRequestedQuit() override\r\n"
6877 "    {\r\n"
6878 "        // This is called when the app is being asked to quit: you can ignore this\r\n"
6879 "        // request and let the app carry on running, or call quit() to allow the app to close.\r\n"
6880 "        quit();\r\n"
6881 "    }\r\n"
6882 "\r\n"
6883 "    void anotherInstanceStarted (const juce::String& commandLine) override\r\n"
6884 "    {\r\n"
6885 "        // When another instance of the app is launched while this one is running,\r\n"
6886 "        // this method is invoked, and the commandLine parameter tells you what\r\n"
6887 "        // the other instance's command-line arguments were.\r\n"
6888 "    }\r\n"
6889 "\r\n"
6890 "    //==============================================================================\r\n"
6891 "    /*\r\n"
6892 "        This class implements the desktop window that contains an instance of\r\n"
6893 "        our %%content_component_class%% class.\r\n"
6894 "    */\r\n"
6895 "    class MainWindow    : public juce::DocumentWindow\r\n"
6896 "    {\r\n"
6897 "    public:\r\n"
6898 "        MainWindow (juce::String name)\r\n"
6899 "            : DocumentWindow (name,\r\n"
6900 "                              juce::Desktop::getInstance().getDefaultLookAndFeel()\r\n"
6901 "                                                          .findColour (juce::ResizableWindow::backgroundColourId),\r\n"
6902 "                              DocumentWindow::allButtons)\r\n"
6903 "        {\r\n"
6904 "            setUsingNativeTitleBar (true);\r\n"
6905 "            setContentOwned (new %%content_component_class%%(), true);\r\n"
6906 "\r\n"
6907 "           #if JUCE_IOS || JUCE_ANDROID\r\n"
6908 "            setFullScreen (true);\r\n"
6909 "           #else\r\n"
6910 "            setResizable (true, true);\r\n"
6911 "            centreWithSize (getWidth(), getHeight());\r\n"
6912 "           #endif\r\n"
6913 "\r\n"
6914 "            setVisible (true);\r\n"
6915 "        }\r\n"
6916 "\r\n"
6917 "        void closeButtonPressed() override\r\n"
6918 "        {\r\n"
6919 "            // This is called when the user tries to close this window. Here, we'll just\r\n"
6920 "            // ask the app to quit when this happens, but you can change this to do\r\n"
6921 "            // whatever you need.\r\n"
6922 "            JUCEApplication::getInstance()->systemRequestedQuit();\r\n"
6923 "        }\r\n"
6924 "\r\n"
6925 "        /* Note: Be careful if you override any DocumentWindow methods - the base\r\n"
6926 "           class uses a lot of them, so by overriding you might break its functionality.\r\n"
6927 "           It's best to do all your work in your content component instead, but if\r\n"
6928 "           you really have to override any DocumentWindow methods, make sure your\r\n"
6929 "           subclass also calls the superclass's method.\r\n"
6930 "        */\r\n"
6931 "\r\n"
6932 "    private:\r\n"
6933 "        JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MainWindow)\r\n"
6934 "    };\r\n"
6935 "\r\n"
6936 "private:\r\n"
6937 "    std::unique_ptr<MainWindow> mainWindow;\r\n"
6938 "};\r\n"
6939 "\r\n"
6940 "//==============================================================================\r\n"
6941 "// This macro generates the main() routine that launches the app.\r\n"
6942 "START_JUCE_APPLICATION (%%app_class_name%%)\r\n";
6943 
6944 const char* jucer_MainTemplate_Window_cpp = (const char*) temp_binary_data_48;
6945 
6946 //================== jucer_NewComponentTemplate.cpp ==================
6947 static const unsigned char temp_binary_data_49[] =
6948 "/*\r\n"
6949 "  ==============================================================================\r\n"
6950 "\r\n"
6951 "    %%filename%%\r\n"
6952 "    Created: %%date%%\r\n"
6953 "    Author:  %%author%%\r\n"
6954 "\r\n"
6955 "  ==============================================================================\r\n"
6956 "*/\r\n"
6957 "\r\n"
6958 "%%include_juce%%\r\n"
6959 "%%include_corresponding_header%%\r\n"
6960 "\r\n"
6961 "//==============================================================================\r\n"
6962 "%%component_class%%::%%component_class%%()\r\n"
6963 "{\r\n"
6964 "    // In your constructor, you should add any child components, and\r\n"
6965 "    // initialise any special settings that your component needs.\r\n"
6966 "\r\n"
6967 "}\r\n"
6968 "\r\n"
6969 "%%component_class%%::~%%component_class%%()\r\n"
6970 "{\r\n"
6971 "}\r\n"
6972 "\r\n"
6973 "void %%component_class%%::paint (juce::Graphics& g)\r\n"
6974 "{\r\n"
6975 "    /* This demo code just fills the component's background and\r\n"
6976 "       draws some placeholder text to get you started.\r\n"
6977 "\r\n"
6978 "       You should replace everything in this method with your own\r\n"
6979 "       drawing code..\r\n"
6980 "    */\r\n"
6981 "\r\n"
6982 "    g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));   // clear the background\r\n"
6983 "\r\n"
6984 "    g.setColour (juce::Colours::grey);\r\n"
6985 "    g.drawRect (getLocalBounds(), 1);   // draw an outline around the component\r\n"
6986 "\r\n"
6987 "    g.setColour (juce::Colours::white);\r\n"
6988 "    g.setFont (14.0f);\r\n"
6989 "    g.drawText (\"%%component_class%%\", getLocalBounds(),\r\n"
6990 "                juce::Justification::centred, true);   // draw some placeholder text\r\n"
6991 "}\r\n"
6992 "\r\n"
6993 "void %%component_class%%::resized()\r\n"
6994 "{\r\n"
6995 "    // This method is where you should set the bounds of any child\r\n"
6996 "    // components that your component contains..\r\n"
6997 "\r\n"
6998 "}\r\n";
6999 
7000 const char* jucer_NewComponentTemplate_cpp = (const char*) temp_binary_data_49;
7001 
7002 //================== jucer_NewComponentTemplate.h ==================
7003 static const unsigned char temp_binary_data_50[] =
7004 "/*\r\n"
7005 "  ==============================================================================\r\n"
7006 "\r\n"
7007 "    %%filename%%\r\n"
7008 "    Created: %%date%%\r\n"
7009 "    Author:  %%author%%\r\n"
7010 "\r\n"
7011 "  ==============================================================================\r\n"
7012 "*/\r\n"
7013 "\r\n"
7014 "#pragma once\r\n"
7015 "\r\n"
7016 "%%include_juce%%\r\n"
7017 "\r\n"
7018 "//==============================================================================\r\n"
7019 "/*\r\n"
7020 "*/\r\n"
7021 "class %%component_class%%  : public juce::Component\r\n"
7022 "{\r\n"
7023 "public:\r\n"
7024 "    %%component_class%%();\r\n"
7025 "    ~%%component_class%%() override;\r\n"
7026 "\r\n"
7027 "    void paint (juce::Graphics&) override;\r\n"
7028 "    void resized() override;\r\n"
7029 "\r\n"
7030 "private:\r\n"
7031 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%component_class%%)\r\n"
7032 "};\r\n";
7033 
7034 const char* jucer_NewComponentTemplate_h = (const char*) temp_binary_data_50;
7035 
7036 //================== jucer_NewCppFileTemplate.cpp ==================
7037 static const unsigned char temp_binary_data_51[] =
7038 "/*\r\n"
7039 "  ==============================================================================\r\n"
7040 "\r\n"
7041 "    %%filename%%\r\n"
7042 "    Created: %%date%%\r\n"
7043 "    Author:  %%author%%\r\n"
7044 "\r\n"
7045 "  ==============================================================================\r\n"
7046 "*/\r\n"
7047 "\r\n"
7048 "%%include_corresponding_header%%\r\n";
7049 
7050 const char* jucer_NewCppFileTemplate_cpp = (const char*) temp_binary_data_51;
7051 
7052 //================== jucer_NewCppFileTemplate.h ==================
7053 static const unsigned char temp_binary_data_52[] =
7054 "/*\r\n"
7055 "  ==============================================================================\r\n"
7056 "\r\n"
7057 "    %%filename%%\r\n"
7058 "    Created: %%date%%\r\n"
7059 "    Author:  %%author%%\r\n"
7060 "\r\n"
7061 "  ==============================================================================\r\n"
7062 "*/\r\n"
7063 "\r\n"
7064 "#pragma once\r\n";
7065 
7066 const char* jucer_NewCppFileTemplate_h = (const char*) temp_binary_data_52;
7067 
7068 //================== jucer_NewInlineComponentTemplate.h ==================
7069 static const unsigned char temp_binary_data_53[] =
7070 "/*\r\n"
7071 "  ==============================================================================\r\n"
7072 "\r\n"
7073 "    %%filename%%\r\n"
7074 "    Created: %%date%%\r\n"
7075 "    Author:  %%author%%\r\n"
7076 "\r\n"
7077 "  ==============================================================================\r\n"
7078 "*/\r\n"
7079 "\r\n"
7080 "#pragma once\r\n"
7081 "\r\n"
7082 "%%include_juce%%\r\n"
7083 "\r\n"
7084 "//==============================================================================\r\n"
7085 "/*\r\n"
7086 "*/\r\n"
7087 "class %%component_class%%  : public juce::Component\r\n"
7088 "{\r\n"
7089 "public:\r\n"
7090 "    %%component_class%%()\r\n"
7091 "    {\r\n"
7092 "        // In your constructor, you should add any child components, and\r\n"
7093 "        // initialise any special settings that your component needs.\r\n"
7094 "\r\n"
7095 "    }\r\n"
7096 "\r\n"
7097 "    ~%%component_class%%() override\r\n"
7098 "    {\r\n"
7099 "    }\r\n"
7100 "\r\n"
7101 "    void paint (juce::Graphics& g) override\r\n"
7102 "    {\r\n"
7103 "        /* This demo code just fills the component's background and\r\n"
7104 "           draws some placeholder text to get you started.\r\n"
7105 "\r\n"
7106 "           You should replace everything in this method with your own\r\n"
7107 "           drawing code..\r\n"
7108 "        */\r\n"
7109 "\r\n"
7110 "        g.fillAll (getLookAndFeel().findColour (juce::ResizableWindow::backgroundColourId));   // clear the background\r\n"
7111 "\r\n"
7112 "        g.setColour (juce::Colours::grey);\r\n"
7113 "        g.drawRect (getLocalBounds(), 1);   // draw an outline around the component\r\n"
7114 "\r\n"
7115 "        g.setColour (juce::Colours::white);\r\n"
7116 "        g.setFont (14.0f);\r\n"
7117 "        g.drawText (\"%%component_class%%\", getLocalBounds(),\r\n"
7118 "                    juce::Justification::centred, true);   // draw some placeholder text\r\n"
7119 "    }\r\n"
7120 "\r\n"
7121 "    void resized() override\r\n"
7122 "    {\r\n"
7123 "        // This method is where you should set the bounds of any child\r\n"
7124 "        // components that your component contains..\r\n"
7125 "\r\n"
7126 "    }\r\n"
7127 "\r\n"
7128 "private:\r\n"
7129 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%component_class%%)\r\n"
7130 "};\r\n";
7131 
7132 const char* jucer_NewInlineComponentTemplate_h = (const char*) temp_binary_data_53;
7133 
7134 //================== jucer_OpenGLComponentSimpleTemplate.h ==================
7135 static const unsigned char temp_binary_data_54[] =
7136 "#pragma once\r\n"
7137 "\r\n"
7138 "%%include_juce%%\r\n"
7139 "\r\n"
7140 "//==============================================================================\r\n"
7141 "/*\r\n"
7142 "    This component lives inside our window, and this is where you should put all\r\n"
7143 "    your controls and content.\r\n"
7144 "*/\r\n"
7145 "class %%content_component_class%%  : public juce::OpenGLAppComponent\r\n"
7146 "{\r\n"
7147 "public:\r\n"
7148 "    //==============================================================================\r\n"
7149 "    %%content_component_class%%()\r\n"
7150 "    {\r\n"
7151 "        // Make sure you set the size of the component after\r\n"
7152 "        // you add any child components.\r\n"
7153 "        setSize (800, 600);\r\n"
7154 "    }\r\n"
7155 "\r\n"
7156 "    ~%%content_component_class%%() override\r\n"
7157 "    {\r\n"
7158 "        // This shuts down the GL system and stops the rendering calls.\r\n"
7159 "        shutdownOpenGL();\r\n"
7160 "    }\r\n"
7161 "\r\n"
7162 "    //==============================================================================\r\n"
7163 "    void initialise() override\r\n"
7164 "    {\r\n"
7165 "        // Initialise GL objects for rendering here.\r\n"
7166 "    }\r\n"
7167 "\r\n"
7168 "    void shutdown() override\r\n"
7169 "    {\r\n"
7170 "        // Free any GL objects created for rendering here.\r\n"
7171 "    }\r\n"
7172 "\r\n"
7173 "    void render() override\r\n"
7174 "    {\r\n"
7175 "        // This clears the context with a black background.\r\n"
7176 "        juce::OpenGLHelpers::clear (Colours::black);\r\n"
7177 "\r\n"
7178 "        // Add your rendering code here...\r\n"
7179 "    }\r\n"
7180 "\r\n"
7181 "    //==============================================================================\r\n"
7182 "    void paint (juce::Graphics& g) override\r\n"
7183 "    {\r\n"
7184 "        // You can add your component specific drawing code here!\r\n"
7185 "        // This will draw over the top of the openGL background.\r\n"
7186 "    }\r\n"
7187 "\r\n"
7188 "    void resized() override\r\n"
7189 "    {\r\n"
7190 "        // This is called when the MainContentComponent is resized.\r\n"
7191 "        // If you add any child components, this is where you should\r\n"
7192 "        // update their positions.\r\n"
7193 "    }\r\n"
7194 "\r\n"
7195 "\r\n"
7196 "private:\r\n"
7197 "    //==============================================================================\r\n"
7198 "    // Your private member variables go here...\r\n"
7199 "\r\n"
7200 "\r\n"
7201 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)\r\n"
7202 "};\r\n";
7203 
7204 const char* jucer_OpenGLComponentSimpleTemplate_h = (const char*) temp_binary_data_54;
7205 
7206 //================== jucer_OpenGLComponentTemplate.cpp ==================
7207 static const unsigned char temp_binary_data_55[] =
7208 "%%include_corresponding_header%%\r\n"
7209 "\r\n"
7210 "//==============================================================================\r\n"
7211 "%%content_component_class%%::%%content_component_class%%()\r\n"
7212 "{\r\n"
7213 "    // Make sure you set the size of the component after\r\n"
7214 "    // you add any child components.\r\n"
7215 "    setSize (800, 600);\r\n"
7216 "}\r\n"
7217 "\r\n"
7218 "%%content_component_class%%::~%%content_component_class%%()\r\n"
7219 "{\r\n"
7220 "    // This shuts down the GL system and stops the rendering calls.\r\n"
7221 "    shutdownOpenGL();\r\n"
7222 "}\r\n"
7223 "\r\n"
7224 "//==============================================================================\r\n"
7225 "void %%content_component_class%%::initialise()\r\n"
7226 "{\r\n"
7227 "    // Initialise GL objects for rendering here.\r\n"
7228 "}\r\n"
7229 "\r\n"
7230 "void %%content_component_class%%::shutdown()\r\n"
7231 "{\r\n"
7232 "    // Free any GL objects created for rendering here.\r\n"
7233 "}\r\n"
7234 "\r\n"
7235 "void %%content_component_class%%::render()\r\n"
7236 "{\r\n"
7237 "    // This clears the context with a black background.\r\n"
7238 "    juce::OpenGLHelpers::clear (juce::Colours::black);\r\n"
7239 "\r\n"
7240 "    // Add your rendering code here...\r\n"
7241 "}\r\n"
7242 "\r\n"
7243 "//==============================================================================\r\n"
7244 "void %%content_component_class%%::paint (juce::Graphics& g)\r\n"
7245 "{\r\n"
7246 "    // You can add your component specific drawing code here!\r\n"
7247 "    // This will draw over the top of the openGL background.\r\n"
7248 "}\r\n"
7249 "\r\n"
7250 "void %%content_component_class%%::resized()\r\n"
7251 "{\r\n"
7252 "    // This is called when the %%content_component_class%% is resized.\r\n"
7253 "    // If you add any child components, this is where you should\r\n"
7254 "    // update their positions.\r\n"
7255 "}\r\n";
7256 
7257 const char* jucer_OpenGLComponentTemplate_cpp = (const char*) temp_binary_data_55;
7258 
7259 //================== jucer_OpenGLComponentTemplate.h ==================
7260 static const unsigned char temp_binary_data_56[] =
7261 "#pragma once\r\n"
7262 "\r\n"
7263 "%%include_juce%%\r\n"
7264 "\r\n"
7265 "//==============================================================================\r\n"
7266 "/*\r\n"
7267 "    This component lives inside our window, and this is where you should put all\r\n"
7268 "    your controls and content.\r\n"
7269 "*/\r\n"
7270 "class %%content_component_class%%  : public juce::OpenGLAppComponent\r\n"
7271 "{\r\n"
7272 "public:\r\n"
7273 "    //==============================================================================\r\n"
7274 "    %%content_component_class%%();\r\n"
7275 "    ~%%content_component_class%%() override;\r\n"
7276 "\r\n"
7277 "    //==============================================================================\r\n"
7278 "    void initialise() override;\r\n"
7279 "    void shutdown() override;\r\n"
7280 "    void render() override;\r\n"
7281 "\r\n"
7282 "    //==============================================================================\r\n"
7283 "    void paint (juce::Graphics& g) override;\r\n"
7284 "    void resized() override;\r\n"
7285 "\r\n"
7286 "private:\r\n"
7287 "    //==============================================================================\r\n"
7288 "    // Your private member variables go here...\r\n"
7289 "\r\n"
7290 "\r\n"
7291 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%content_component_class%%)\r\n"
7292 "};\r\n";
7293 
7294 const char* jucer_OpenGLComponentTemplate_h = (const char*) temp_binary_data_56;
7295 
7296 //================== jucer_PIPAudioProcessorTemplate.h ==================
7297 static const unsigned char temp_binary_data_57[] =
7298 "class %%class_name%%  : public juce::AudioProcessor\r\n"
7299 "{\r\n"
7300 "public:\r\n"
7301 "    //==============================================================================\r\n"
7302 "    %%class_name%%()\r\n"
7303 "        : AudioProcessor (BusesProperties().withInput  (\"Input\",  juce::AudioChannelSet::stereo())\r\n"
7304 "                                           .withOutput (\"Output\", juce::AudioChannelSet::stereo()))\r\n"
7305 "    {\r\n"
7306 "    }\r\n"
7307 "\r\n"
7308 "    ~%%class_name%%() override\r\n"
7309 "    {\r\n"
7310 "    }\r\n"
7311 "\r\n"
7312 "    //==============================================================================\r\n"
7313 "    void prepareToPlay (double, int) override\r\n"
7314 "    {\r\n"
7315 "        // Use this method as the place to do any pre-playback\r\n"
7316 "        // initialisation that you need..\r\n"
7317 "    }\r\n"
7318 "\r\n"
7319 "    void releaseResources() override\r\n"
7320 "    {\r\n"
7321 "        // When playback stops, you can use this as an opportunity to free up any\r\n"
7322 "        // spare memory, etc.\r\n"
7323 "    }\r\n"
7324 "\r\n"
7325 "    void processBlock (juce::AudioBuffer<float>& buffer, juce::MidiBuffer&) override\r\n"
7326 "    {\r\n"
7327 "        juce::ScopedNoDenormals noDenormals;\r\n"
7328 "        auto totalNumInputChannels  = getTotalNumInputChannels();\r\n"
7329 "        auto totalNumOutputChannels = getTotalNumOutputChannels();\r\n"
7330 "\r\n"
7331 "        // In case we have more outputs than inputs, this code clears any output\r\n"
7332 "        // channels that didn't contain input data, (because these aren't\r\n"
7333 "        // guaranteed to be empty - they may contain garbage).\r\n"
7334 "        // This is here to avoid people getting screaming feedback\r\n"
7335 "        // when they first compile a plugin, but obviously you don't need to keep\r\n"
7336 "        // this code if your algorithm always overwrites all the output channels.\r\n"
7337 "        for (auto i = totalNumInputChannels; i < totalNumOutputChannels; ++i)\r\n"
7338 "            buffer.clear (i, 0, buffer.getNumSamples());\r\n"
7339 "\r\n"
7340 "        // This is the place where you'd normally do the guts of your plugin's\r\n"
7341 "        // audio processing...\r\n"
7342 "        // Make sure to reset the state if your inner loop is processing\r\n"
7343 "        // the samples and the outer loop is handling the channels.\r\n"
7344 "        // Alternatively, you can process the samples with the channels\r\n"
7345 "        // interleaved by keeping the same state.\r\n"
7346 "        for (int channel = 0; channel < totalNumInputChannels; ++channel)\r\n"
7347 "        {\r\n"
7348 "            auto* channelData = buffer.getWritePointer (channel);\r\n"
7349 "\r\n"
7350 "            // ..do something to the data...\r\n"
7351 "        }\r\n"
7352 "    }\r\n"
7353 "\r\n"
7354 "    //==============================================================================\r\n"
7355 "    juce::AudioProcessorEditor* createEditor() override          { return nullptr; }\r\n"
7356 "    bool hasEditor() const override                              { return false;   }\r\n"
7357 "\r\n"
7358 "    //==============================================================================\r\n"
7359 "    const juce::String getName() const override                  { return \"%%name%%\"; }\r\n"
7360 "    bool acceptsMidi() const override                            { return false; }\r\n"
7361 "    bool producesMidi() const override                           { return false; }\r\n"
7362 "    double getTailLengthSeconds() const override                 { return 0; }\r\n"
7363 "\r\n"
7364 "    //==============================================================================\r\n"
7365 "    int getNumPrograms() override                                { return 1; }\r\n"
7366 "    int getCurrentProgram() override                             { return 0; }\r\n"
7367 "    void setCurrentProgram (int) override                        {}\r\n"
7368 "    const juce::String getProgramName (int) override             { return {}; }\r\n"
7369 "    void changeProgramName (int, const juce::String&) override   {}\r\n"
7370 "\r\n"
7371 "    //==============================================================================\r\n"
7372 "    void getStateInformation (juce::MemoryBlock& destData) override\r\n"
7373 "    {\r\n"
7374 "        // You should use this method to store your parameters in the memory block.\r\n"
7375 "        // You could do that either as raw data, or use the XML or ValueTree classes\r\n"
7376 "        // as intermediaries to make it easy to save and load complex data.\r\n"
7377 "    }\r\n"
7378 "\r\n"
7379 "    void setStateInformation (const void* data, int sizeInBytes) override\r\n"
7380 "    {\r\n"
7381 "        // You should use this method to restore your parameters from this memory block,\r\n"
7382 "        // whose contents will have been created by the getStateInformation() call.\r\n"
7383 "    }\r\n"
7384 "\r\n"
7385 "    //==============================================================================\r\n"
7386 "    bool isBusesLayoutSupported (const BusesLayout& layouts) const override\r\n"
7387 "    {\r\n"
7388 "        // This is the place where you check if the layout is supported.\r\n"
7389 "        // In this template code we only support mono or stereo.\r\n"
7390 "        if (layouts.getMainOutputChannelSet() != juce::AudioChannelSet::mono()\r\n"
7391 "            && layouts.getMainOutputChannelSet() != juce::AudioChannelSet::stereo())\r\n"
7392 "            return false;\r\n"
7393 "\r\n"
7394 "        // This checks if the input layout matches the output layout\r\n"
7395 "        if (layouts.getMainOutputChannelSet() != layouts.getMainInputChannelSet())\r\n"
7396 "            return false;\r\n"
7397 "\r\n"
7398 "        return true;\r\n"
7399 "    }\r\n"
7400 "\r\n"
7401 "private:\r\n"
7402 "    //==============================================================================\r\n"
7403 "    JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (%%class_name%%)\r\n"
7404 "};\r\n";
7405 
7406 const char* jucer_PIPAudioProcessorTemplate_h = (const char*) temp_binary_data_57;
7407 
7408 //================== jucer_PIPTemplate.h ==================
7409 static const unsigned char temp_binary_data_58[] =
7410 "/*******************************************************************************\r\n"
7411 " The block below describes the properties of this PIP. A PIP is a short snippet\r\n"
7412 " of code that can be read by the Projucer and used to generate a JUCE project.\r\n"
7413 "\r\n"
7414 " BEGIN_JUCE_PIP_METADATA\r\n"
7415 "\r\n"
7416 "%%pip_metadata%%\r\n"
7417 "\r\n"
7418 " END_JUCE_PIP_METADATA\r\n"
7419 "\r\n"
7420 "*******************************************************************************/\r\n"
7421 "\r\n"
7422 "#pragma once\r\n"
7423 "\r\n"
7424 "\r\n"
7425 "//==============================================================================\r\n"
7426 "%%pip_code%%\r\n";
7427 
7428 const char* jucer_PIPTemplate_h = (const char*) temp_binary_data_58;
7429 
7430 //================== colourscheme_dark.xml ==================
7431 static const unsigned char temp_binary_data_59[] =
7432 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
7433 "\r\n"
7434 "<COLOUR_SCHEME font=\"&lt;Monospaced&gt;; 13.0\">\r\n"
7435 "  <COLOUR name=\"Main Window Bkgd\" colour=\"FF29292A\"/>\r\n"
7436 "  <COLOUR name=\"Treeview Highlight\" colour=\"2BFFFEC3\"/>\r\n"
7437 "  <COLOUR name=\"Code Background\" colour=\"FF222222\"/>\r\n"
7438 "  <COLOUR name=\"Line Number Bkgd\" colour=\"44C1C1C1\"/>\r\n"
7439 "  <COLOUR name=\"Line Numbers\" colour=\"E9B2B2B2\"/>\r\n"
7440 "  <COLOUR name=\"Plain Text\" colour=\"FFCECECE\"/>\r\n"
7441 "  <COLOUR name=\"Selected Text Bkgd\" colour=\"FF2859AC\"/>\r\n"
7442 "  <COLOUR name=\"Caret\" colour=\"FFFFFFFF\"/>\r\n"
7443 "  <COLOUR name=\"Preprocessor Text\" colour=\"FFF8F631\"/>\r\n"
7444 "  <COLOUR name=\"Punctuation\" colour=\"FFCFBEFF\"/>\r\n"
7445 "  <COLOUR name=\"Bracket\" colour=\"FF058202\"/>\r\n"
7446 "  <COLOUR name=\"String\" colour=\"FFBC45DD\"/>\r\n"
7447 "  <COLOUR name=\"Float\" colour=\"ff885500\"/>\r\n"
7448 "  <COLOUR name=\"Integer\" colour=\"FF42C8C4\"/>\r\n"
7449 "  <COLOUR name=\"Identifier\" colour=\"FFCFCFCF\"/>\r\n"
7450 "  <COLOUR name=\"Operator\" colour=\"FFC4EB19\"/>\r\n"
7451 "  <COLOUR name=\"Keyword\" colour=\"FFEE6F6F\"/>\r\n"
7452 "  <COLOUR name=\"Comment\" colour=\"FF72D20C\"/>\r\n"
7453 "  <COLOUR name=\"Error\" colour=\"FFE60000\"/>\r\n"
7454 "</COLOUR_SCHEME>\r\n";
7455 
7456 const char* colourscheme_dark_xml = (const char*) temp_binary_data_59;
7457 
7458 //================== colourscheme_light.xml ==================
7459 static const unsigned char temp_binary_data_60[] =
7460 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n"
7461 "\r\n"
7462 "<COLOUR_SCHEME font=\"&lt;Monospaced&gt;; 13.0\">\r\n"
7463 "  <COLOUR name=\"Main Window Bkgd\" colour=\"FFE6E7E9\"/>\r\n"
7464 "  <COLOUR name=\"Treeview Highlight\" colour=\"401111ee\"/>\r\n"
7465 "  <COLOUR name=\"Code Background\" colour=\"ffffffff\"/>\r\n"
7466 "  <COLOUR name=\"Line Number Bkgd\" colour=\"44999999\"/>\r\n"
7467 "  <COLOUR name=\"Line Numbers\" colour=\"44000000\"/>\r\n"
7468 "  <COLOUR name=\"Plain Text\" colour=\"ff000000\"/>\r\n"
7469 "  <COLOUR name=\"Selected Text Bkgd\" colour=\"401111ee\"/>\r\n"
7470 "  <COLOUR name=\"Caret\" colour=\"ff000000\"/>\r\n"
7471 "  <COLOUR name=\"Preprocessor Text\" colour=\"ff660000\"/>\r\n"
7472 "  <COLOUR name=\"Punctuation\" colour=\"ff004400\"/>\r\n"
7473 "  <COLOUR name=\"Bracket\" colour=\"ff000055\"/>\r\n"
7474 "  <COLOUR name=\"String\" colour=\"ff990099\"/>\r\n"
7475 "  <COLOUR name=\"Float\" colour=\"ff885500\"/>\r\n"
7476 "  <COLOUR name=\"Integer\" colour=\"ff880000\"/>\r\n"
7477 "  <COLOUR name=\"Identifier\" colour=\"ff000000\"/>\r\n"
7478 "  <COLOUR name=\"Operator\" colour=\"ff225500\"/>\r\n"
7479 "  <COLOUR name=\"Keyword\" colour=\"ff0000cc\"/>\r\n"
7480 "  <COLOUR name=\"Comment\" colour=\"ff00aa00\"/>\r\n"
7481 "  <COLOUR name=\"Error\" colour=\"ffcc0000\"/>\r\n"
7482 "</COLOUR_SCHEME>\r\n";
7483 
7484 const char* colourscheme_light_xml = (const char*) temp_binary_data_60;
7485 
7486 //================== juce_runtime_arch_detection.cpp ==================
7487 static const unsigned char temp_binary_data_61[] =
7488 "#if defined(__arm__) || defined(__TARGET_ARCH_ARM) || defined(_M_ARM) || defined(_M_ARM64) || defined(__aarch64__) || defined(__ARM64__)\r\n"
7489 "\r\n"
7490 "  #if defined(_M_ARM64) || defined(__aarch64__) || defined(__ARM64__)\r\n"
7491 "    #error JUCE_ARCH aarch64\r\n"
7492 "  #elif (defined(__TARGET_ARCH_ARM) && __TARGET_ARCH_ARM == 8) || defined(__ARMv8__) || defined(__ARMv8_A__)\r\n"
7493 "    #error JUCE_ARCH armv8l\r\n"
7494 "  #elif (defined(__TARGET_ARCH_ARM) && __TARGET_ARCH_ARM == 7) || defined(__ARM_ARCH_7__) || defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_7R__) || defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7S__) || defined(_ARM_ARCH_7) || defined(__CORE_CORTEX"
7495 "A__)\r\n"
7496 "    #error JUCE_ARCH armv7l\r\n"
7497 "  #elif (defined(__TARGET_ARCH_ARM) && __TARGET_ARCH_ARM == 6) || defined(__ARM_ARCH_6__) || defined(__ARM_ARCH_6J__) || defined(__ARM_ARCH_6T2__) || defined(__ARM_ARCH_6Z__) || defined(__ARM_ARCH_6K__) || defined(__ARM_ARCH_6ZK__) || defined(__ARM_A"
7498 "RCH_6M__)\r\n"
7499 "    #error JUCE_ARCH armv6l\r\n"
7500 "  #elif (defined(__TARGET_ARCH_ARM) && __TARGET_ARCH_ARM == 5) || defined(__ARM_ARCH_5TEJ__)\r\n"
7501 "    #error JUCE_ARCH armv5l\r\n"
7502 "  #else\r\n"
7503 "    #error JUCE_ARCH arm\r\n"
7504 "  #endif\r\n"
7505 "\r\n"
7506 "#elif defined(__i386) || defined(__i386__) || defined(_M_IX86)\r\n"
7507 "\r\n"
7508 "  #error JUCE_ARCH i386\r\n"
7509 "\r\n"
7510 "#elif defined(__x86_64) || defined(__x86_64__) || defined(__amd64) || defined(_M_X64)\r\n"
7511 "\r\n"
7512 "  #error JUCE_ARCH x86_64\r\n"
7513 "\r\n"
7514 "#elif defined(__ia64) || defined(__ia64__) || defined(_M_IA64)\r\n"
7515 "\r\n"
7516 "  #error JUCE_ARCH ia64\r\n"
7517 "\r\n"
7518 "#elif defined(__mips) || defined(__mips__) || defined(_M_MRX000)\r\n"
7519 "\r\n"
7520 "  #if defined(_MIPS_ARCH_MIPS64) || defined(__mips64)\r\n"
7521 "    #error JUCE_ARCH mips64\r\n"
7522 "  #else\r\n"
7523 "    #error JUCE_ARCH mips\r\n"
7524 "  #endif\r\n"
7525 "\r\n"
7526 "#elif defined(__ppc__) || defined(__ppc) || defined(__powerpc__) || defined(_ARCH_COM) || defined(_ARCH_PWR) || defined(_ARCH_PPC) || defined(_M_MPPC) || defined(_M_PPC)\r\n"
7527 "\r\n"
7528 "  #if defined(__ppc64__) || defined(__powerpc64__) || defined(__64BIT__)\r\n"
7529 "    #error JUCE_ARCH ppc64\r\n"
7530 "  #else\r\n"
7531 "    #error JUCE_ARCH ppc\r\n"
7532 "  #endif\r\n"
7533 "\r\n"
7534 "#elif defined(__riscv)\r\n"
7535 "\r\n"
7536 "  #if __riscv_xlen == 64\r\n"
7537 "    #error JUCE_ARCH riscv64\r\n"
7538 "  #else\r\n"
7539 "    #error JUCE_ARCH riscv\r\n"
7540 "  #endif\r\n"
7541 "\r\n"
7542 "#else\r\n"
7543 "\r\n"
7544 "  #error JUCE_ARCH unknown\r\n"
7545 "\r\n"
7546 "#endif\r\n";
7547 
7548 const char* juce_runtime_arch_detection_cpp = (const char*) temp_binary_data_61;
7549 
7550 
getNamedResource(const char * resourceNameUTF8,int & numBytes)7551 const char* getNamedResource (const char* resourceNameUTF8, int& numBytes)
7552 {
7553     unsigned int hash = 0;
7554 
7555     if (resourceNameUTF8 != nullptr)
7556         while (*resourceNameUTF8 != 0)
7557             hash = 31 * hash + (unsigned int) *resourceNameUTF8++;
7558 
7559     switch (hash)
7560     {
7561         case 0x31d21131:  numBytes = 1042; return LaunchScreen_storyboard;
7562         case 0x24e5a04d:  numBytes = 483; return PIPAudioProcessor_cpp_in;
7563         case 0xd572ce5a:  numBytes = 2275; return PIPComponent_cpp_in;
7564         case 0x1a77c680:  numBytes = 299; return PIPConsole_cpp_in;
7565         case 0xa41e649d:  numBytes = 2842; return RecentFilesMenuTemplate_nib;
7566         case 0x667fbbb3:  numBytes = 6424; return UnityPluginGUIScript_cs_in;
7567         case 0x4d6bedc8:  numBytes = 53636; return gradlewrapper_jar;
7568         case 0x10b04d10:  numBytes = 4971; return gradlew;
7569         case 0x76cff066:  numBytes = 2404; return gradlew_bat;
7570         case 0x34bc1021:  numBytes = 11325; return LICENSE;
7571         case 0x406db5c1:  numBytes = 3117; return background_logo_svg;
7572         case 0xbe17d889:  numBytes = 3586; return export_android_svg;
7573         case 0x84c51a59:  numBytes = 2244; return export_clion_svg;
7574         case 0x83f049e3:  numBytes = 1726; return export_codeBlocks_svg;
7575         case 0x96d2a1ce:  numBytes = 28184; return export_linux_svg;
7576         case 0x2505bd06:  numBytes = 1706; return export_visualStudio_svg;
7577         case 0x3198e2bf:  numBytes = 12295; return export_xcode_svg;
7578         case 0xc9c78dec:  numBytes = 27030; return gpl_logo_svg;
7579         case 0x80b17530:  numBytes = 5312; return jucelogowithtext_svg;
7580         case 0x154a7275:  numBytes = 45854; return juce_icon_png;
7581         case 0x1f3b6d2f:  numBytes = 5978; return wizard_AnimatedApp_svg;
7582         case 0x60296d04:  numBytes = 17791; return wizard_AudioApp_svg;
7583         case 0x1115ccda:  numBytes = 21296; return wizard_AudioPlugin_svg;
7584         case 0x1d65d363:  numBytes = 3249; return wizard_ConsoleApp_svg;
7585         case 0xba5a4595:  numBytes = 7503; return wizard_DLL_svg;
7586         case 0x683e4e6c:  numBytes = 6528; return wizard_GUI_svg;
7587         case 0x2e6bf065:  numBytes = 1798; return wizard_Highlight_svg;
7588         case 0x52a8dfdf:  numBytes = 1859; return wizard_Openfile_svg;
7589         case 0x58e2ae48:  numBytes = 4551; return wizard_OpenGL_svg;
7590         case 0xb1da6f9e:  numBytes = 7488; return wizard_StaticLibrary_svg;
7591         case 0xd11e6d35:  numBytes = 1898; return jucer_AnimatedComponentSimpleTemplate_h;
7592         case 0x6cf2645e:  numBytes = 1362; return jucer_AnimatedComponentTemplate_cpp;
7593         case 0x97b055e3:  numBytes = 1008; return jucer_AnimatedComponentTemplate_h;
7594         case 0xfb6f6d96:  numBytes = 3554; return jucer_AudioComponentSimpleTemplate_h;
7595         case 0xafccbd3f:  numBytes = 2941; return jucer_AudioComponentTemplate_cpp;
7596         case 0x915d7304:  numBytes = 1187; return jucer_AudioComponentTemplate_h;
7597         case 0x27c5a93a:  numBytes = 1355; return jucer_AudioPluginEditorTemplate_cpp;
7598         case 0x4d0721bf:  numBytes = 973; return jucer_AudioPluginEditorTemplate_h;
7599         case 0x51b49ac5:  numBytes = 6218; return jucer_AudioPluginFilterTemplate_cpp;
7600         case 0x488afa0a:  numBytes = 2299; return jucer_AudioPluginFilterTemplate_h;
7601         case 0xabad7041:  numBytes = 2147; return jucer_ComponentTemplate_cpp;
7602         case 0xfc72fe86:  numBytes = 2065; return jucer_ComponentTemplate_h;
7603         case 0x1657b643:  numBytes = 1524; return jucer_ContentCompSimpleTemplate_h;
7604         case 0x0b66646c:  numBytes = 1007; return jucer_ContentCompTemplate_cpp;
7605         case 0x6fa10171:  numBytes = 878; return jucer_ContentCompTemplate_h;
7606         case 0x28d496ad:  numBytes = 1276; return jucer_InlineComponentTemplate_h;
7607         case 0x8905395b:  numBytes = 443; return jucer_MainConsoleAppTemplate_cpp;
7608         case 0x5e5ea047:  numBytes = 1999; return jucer_MainTemplate_NoWindow_cpp;
7609         case 0x400bc026:  numBytes = 4081; return jucer_MainTemplate_Window_cpp;
7610         case 0xf4842835:  numBytes = 1521; return jucer_NewComponentTemplate_cpp;
7611         case 0xe7bf237a:  numBytes = 665; return jucer_NewComponentTemplate_h;
7612         case 0x02a2a077:  numBytes = 278; return jucer_NewCppFileTemplate_cpp;
7613         case 0x0842c43c:  numBytes = 258; return jucer_NewCppFileTemplate_h;
7614         case 0x36e634a1:  numBytes = 1719; return jucer_NewInlineComponentTemplate_h;
7615         case 0x6bdeb129:  numBytes = 1987; return jucer_OpenGLComponentSimpleTemplate_h;
7616         case 0x7fbac252:  numBytes = 1470; return jucer_OpenGLComponentTemplate_cpp;
7617         case 0x491fa0d7:  numBytes = 1070; return jucer_OpenGLComponentTemplate_h;
7618         case 0xbc050edc:  numBytes = 5055; return jucer_PIPAudioProcessorTemplate_h;
7619         case 0x0b16e320:  numBytes = 517; return jucer_PIPTemplate_h;
7620         case 0x763d39dc:  numBytes = 1050; return colourscheme_dark_xml;
7621         case 0xe8b08520:  numBytes = 1050; return colourscheme_light_xml;
7622         case 0x7c03d519:  numBytes = 2129; return juce_runtime_arch_detection_cpp;
7623         default: break;
7624     }
7625 
7626     numBytes = 0;
7627     return nullptr;
7628 }
7629 
7630 const char* namedResourceList[] =
7631 {
7632     "LaunchScreen_storyboard",
7633     "PIPAudioProcessor_cpp_in",
7634     "PIPComponent_cpp_in",
7635     "PIPConsole_cpp_in",
7636     "RecentFilesMenuTemplate_nib",
7637     "UnityPluginGUIScript_cs_in",
7638     "gradlewrapper_jar",
7639     "gradlew",
7640     "gradlew_bat",
7641     "LICENSE",
7642     "background_logo_svg",
7643     "export_android_svg",
7644     "export_clion_svg",
7645     "export_codeBlocks_svg",
7646     "export_linux_svg",
7647     "export_visualStudio_svg",
7648     "export_xcode_svg",
7649     "gpl_logo_svg",
7650     "jucelogowithtext_svg",
7651     "juce_icon_png",
7652     "wizard_AnimatedApp_svg",
7653     "wizard_AudioApp_svg",
7654     "wizard_AudioPlugin_svg",
7655     "wizard_ConsoleApp_svg",
7656     "wizard_DLL_svg",
7657     "wizard_GUI_svg",
7658     "wizard_Highlight_svg",
7659     "wizard_Openfile_svg",
7660     "wizard_OpenGL_svg",
7661     "wizard_StaticLibrary_svg",
7662     "jucer_AnimatedComponentSimpleTemplate_h",
7663     "jucer_AnimatedComponentTemplate_cpp",
7664     "jucer_AnimatedComponentTemplate_h",
7665     "jucer_AudioComponentSimpleTemplate_h",
7666     "jucer_AudioComponentTemplate_cpp",
7667     "jucer_AudioComponentTemplate_h",
7668     "jucer_AudioPluginEditorTemplate_cpp",
7669     "jucer_AudioPluginEditorTemplate_h",
7670     "jucer_AudioPluginFilterTemplate_cpp",
7671     "jucer_AudioPluginFilterTemplate_h",
7672     "jucer_ComponentTemplate_cpp",
7673     "jucer_ComponentTemplate_h",
7674     "jucer_ContentCompSimpleTemplate_h",
7675     "jucer_ContentCompTemplate_cpp",
7676     "jucer_ContentCompTemplate_h",
7677     "jucer_InlineComponentTemplate_h",
7678     "jucer_MainConsoleAppTemplate_cpp",
7679     "jucer_MainTemplate_NoWindow_cpp",
7680     "jucer_MainTemplate_Window_cpp",
7681     "jucer_NewComponentTemplate_cpp",
7682     "jucer_NewComponentTemplate_h",
7683     "jucer_NewCppFileTemplate_cpp",
7684     "jucer_NewCppFileTemplate_h",
7685     "jucer_NewInlineComponentTemplate_h",
7686     "jucer_OpenGLComponentSimpleTemplate_h",
7687     "jucer_OpenGLComponentTemplate_cpp",
7688     "jucer_OpenGLComponentTemplate_h",
7689     "jucer_PIPAudioProcessorTemplate_h",
7690     "jucer_PIPTemplate_h",
7691     "colourscheme_dark_xml",
7692     "colourscheme_light_xml",
7693     "juce_runtime_arch_detection_cpp"
7694 };
7695 
7696 const char* originalFilenames[] =
7697 {
7698     "LaunchScreen.storyboard",
7699     "PIPAudioProcessor.cpp.in",
7700     "PIPComponent.cpp.in",
7701     "PIPConsole.cpp.in",
7702     "RecentFilesMenuTemplate.nib",
7703     "UnityPluginGUIScript.cs.in",
7704     "gradle-wrapper.jar",
7705     "gradlew",
7706     "gradlew.bat",
7707     "LICENSE",
7708     "background_logo.svg",
7709     "export_android.svg",
7710     "export_clion.svg",
7711     "export_codeBlocks.svg",
7712     "export_linux.svg",
7713     "export_visualStudio.svg",
7714     "export_xcode.svg",
7715     "gpl_logo.svg",
7716     "juce-logo-with-text.svg",
7717     "juce_icon.png",
7718     "wizard_AnimatedApp.svg",
7719     "wizard_AudioApp.svg",
7720     "wizard_AudioPlugin.svg",
7721     "wizard_ConsoleApp.svg",
7722     "wizard_DLL.svg",
7723     "wizard_GUI.svg",
7724     "wizard_Highlight.svg",
7725     "wizard_Openfile.svg",
7726     "wizard_OpenGL.svg",
7727     "wizard_StaticLibrary.svg",
7728     "jucer_AnimatedComponentSimpleTemplate.h",
7729     "jucer_AnimatedComponentTemplate.cpp",
7730     "jucer_AnimatedComponentTemplate.h",
7731     "jucer_AudioComponentSimpleTemplate.h",
7732     "jucer_AudioComponentTemplate.cpp",
7733     "jucer_AudioComponentTemplate.h",
7734     "jucer_AudioPluginEditorTemplate.cpp",
7735     "jucer_AudioPluginEditorTemplate.h",
7736     "jucer_AudioPluginFilterTemplate.cpp",
7737     "jucer_AudioPluginFilterTemplate.h",
7738     "jucer_ComponentTemplate.cpp",
7739     "jucer_ComponentTemplate.h",
7740     "jucer_ContentCompSimpleTemplate.h",
7741     "jucer_ContentCompTemplate.cpp",
7742     "jucer_ContentCompTemplate.h",
7743     "jucer_InlineComponentTemplate.h",
7744     "jucer_MainConsoleAppTemplate.cpp",
7745     "jucer_MainTemplate_NoWindow.cpp",
7746     "jucer_MainTemplate_Window.cpp",
7747     "jucer_NewComponentTemplate.cpp",
7748     "jucer_NewComponentTemplate.h",
7749     "jucer_NewCppFileTemplate.cpp",
7750     "jucer_NewCppFileTemplate.h",
7751     "jucer_NewInlineComponentTemplate.h",
7752     "jucer_OpenGLComponentSimpleTemplate.h",
7753     "jucer_OpenGLComponentTemplate.cpp",
7754     "jucer_OpenGLComponentTemplate.h",
7755     "jucer_PIPAudioProcessorTemplate.h",
7756     "jucer_PIPTemplate.h",
7757     "colourscheme_dark.xml",
7758     "colourscheme_light.xml",
7759     "juce_runtime_arch_detection.cpp"
7760 };
7761 
getNamedResourceOriginalFilename(const char * resourceNameUTF8)7762 const char* getNamedResourceOriginalFilename (const char* resourceNameUTF8)
7763 {
7764     for (unsigned int i = 0; i < (sizeof (namedResourceList) / sizeof (namedResourceList[0])); ++i)
7765     {
7766         if (namedResourceList[i] == resourceNameUTF8)
7767             return originalFilenames[i];
7768     }
7769 
7770     return nullptr;
7771 }
7772 
7773 }
7774