· 6 years ago · Mar 14, 2020, 07:48 PM
1using System;
2using System.ComponentModel;
3using System.Diagnostics;
4using System.Drawing;
5using System.IO;
6using System.Net;
7using System.Runtime.InteropServices;
8using System.Windows.Forms;
9using EasyExploits;
10using FurkOS.Properties;
11using Microsoft.Win32;
12
13namespace FurkOS
14{
15 // Token: 0x02000002 RID: 2
16 public class Form1 : Form
17 {
18 // Token: 0x06000001 RID: 1 RVA: 0x00002050 File Offset: 0x00000250
19 private void exec(string script)
20 {
21 this.api.ExecuteScript(script);
22 }
23
24 // Token: 0x06000002 RID: 2
25 [DllImport("user32.dll")]
26 public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam);
27
28 // Token: 0x06000003 RID: 3
29 [DllImport("user32.dll")]
30 public static extern bool ReleaseCapture();
31
32 // Token: 0x06000004 RID: 4
33 [DllImport("Gdi32.dll")]
34 private static extern IntPtr CreateRoundRectRgn(int nLeftRect, int nTopRect, int nRightRect, int nBottomRect, int nWidthEllipse, int nHeightEllipse);
35
36 // Token: 0x06000005 RID: 5 RVA: 0x0000205E File Offset: 0x0000025E
37 private void dragUi(object sender, MouseEventArgs e)
38 {
39 if (e.Button == MouseButtons.Left)
40 {
41 Form1.ReleaseCapture();
42 Form1.SendMessage(base.Handle, 161, 2, 0);
43 }
44 }
45
46 // Token: 0x06000006 RID: 6 RVA: 0x00003050 File Offset: 0x00001250
47 public Form1()
48 {
49 this.InitializeComponent();
50 base.Region = Region.FromHrgn(Form1.CreateRoundRectRgn(0, 0, base.Width, base.Height, 5, 5));
51 if (!Directory.Exists(Application.StartupPath + "/scripts"))
52 {
53 Directory.CreateDirectory(Application.StartupPath + "/scripts");
54 }
55 }
56
57 // Token: 0x06000007 RID: 7 RVA: 0x000030F4 File Offset: 0x000012F4
58 private void scriptBoxLoad()
59 {
60 this.listBox1.Items.Clear();
61 DirectoryInfo directoryInfo = new DirectoryInfo(Application.StartupPath + "/scripts");
62 FileInfo[] files = directoryInfo.GetFiles("*.txt");
63 FileInfo[] files2 = directoryInfo.GetFiles("*.lua");
64 foreach (FileInfo fileInfo in files)
65 {
66 this.listBox1.Items.Add(fileInfo.Name);
67 }
68 foreach (FileInfo fileInfo2 in files2)
69 {
70 this.listBox1.Items.Add(fileInfo2.Name);
71 }
72 }
73
74 // Token: 0x06000008 RID: 8 RVA: 0x00003198 File Offset: 0x00001398
75 private void Form1_Load(object sender, EventArgs e)
76 {
77 try
78 {
79 RegistryKey registryKey = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", true);
80 string friendlyName = AppDomain.CurrentDomain.FriendlyName;
81 if (registryKey.GetValue(friendlyName) == null)
82 {
83 registryKey.SetValue(friendlyName, 11001, RegistryValueKind.DWord);
84 }
85 this.Monaco.Url = new Uri(string.Format("file:///{0}/bin/Monaco/Monaco.html", Application.StartupPath));
86 }
87 catch (Exception ex)
88 {
89 MessageBox.Show("Error loading Monaco Editor! Error: " + ex.Message + "\nThis error has been copied. Please send to Zesty.", "", MessageBoxButtons.OK);
90 Clipboard.SetText(ex.Message);
91 Application.ExitThread();
92 }
93 this.scriptBoxLoad();
94 }
95
96 // Token: 0x06000009 RID: 9 RVA: 0x00002086 File Offset: 0x00000286
97 private void Label2_Click(object sender, EventArgs e)
98 {
99 base.WindowState = FormWindowState.Minimized;
100 }
101
102 // Token: 0x0600000A RID: 10 RVA: 0x0000208F File Offset: 0x0000028F
103 private void Label1_Click(object sender, EventArgs e)
104 {
105 Application.Exit();
106 }
107
108 // Token: 0x0600000B RID: 11 RVA: 0x00003250 File Offset: 0x00001450
109 private void Button2_Click(object sender, EventArgs e)
110 {
111 HtmlDocument document = this.Monaco.Document;
112 string scriptName = "GetText";
113 object[] array = new string[0];
114 object[] args = array;
115 string script = document.InvokeScript(scriptName, args).ToString();
116 this.exec(script);
117 }
118
119 // Token: 0x0600000C RID: 12 RVA: 0x00002096 File Offset: 0x00000296
120 private void Button1_Click(object sender, EventArgs e)
121 {
122 this.Monaco.Document.InvokeScript("SetText", new object[]
123 {
124 ""
125 });
126 }
127
128 // Token: 0x0600000D RID: 13 RVA: 0x0000328C File Offset: 0x0000148C
129 private void Button4_Click(object sender, EventArgs e)
130 {
131 if (this.open.ShowDialog() == DialogResult.OK)
132 {
133 string text = File.ReadAllText(this.open.FileName);
134 HtmlDocument document = this.Monaco.Document;
135 string scriptName = "SetText";
136 object[] array = new string[]
137 {
138 text
139 };
140 object[] args = array;
141 document.InvokeScript(scriptName, args);
142 }
143 }
144
145 // Token: 0x0600000E RID: 14 RVA: 0x000032E4 File Offset: 0x000014E4
146 private void Button3_Click(object sender, EventArgs e)
147 {
148 SaveFileDialog saveFileDialog = new SaveFileDialog();
149 saveFileDialog.Filter = "Lua File (*.lua)|*.lua|Text File (*.txt)|*.txt";
150 saveFileDialog.Title = "Save Script";
151 if (saveFileDialog.ShowDialog() != DialogResult.OK)
152 {
153 return;
154 }
155 try
156 {
157 HtmlDocument document = this.Monaco.Document;
158 string scriptName = "GetText";
159 object[] array = new string[0];
160 object[] args = array;
161 string value = document.InvokeScript(scriptName, args).ToString();
162 StreamWriter streamWriter = new StreamWriter(File.Create(saveFileDialog.FileName));
163 streamWriter.Write(value);
164 streamWriter.Dispose();
165 }
166 catch
167 {
168 MessageBox.Show("An unexpected error occured!", "Oof");
169 }
170 }
171
172 // Token: 0x0600000F RID: 15 RVA: 0x000020BC File Offset: 0x000002BC
173 private void Button5_Click(object sender, EventArgs e)
174 {
175 this.api.LaunchExploit();
176 }
177
178 // Token: 0x06000010 RID: 16 RVA: 0x000020C9 File Offset: 0x000002C9
179 private void Button6_Click(object sender, EventArgs e)
180 {
181 this.furkTabs.SelectTab("scriptHub");
182 }
183
184 // Token: 0x06000011 RID: 17 RVA: 0x000020DB File Offset: 0x000002DB
185 private void Button7_Click(object sender, EventArgs e)
186 {
187 this.furkTabs.SelectTab("execPage");
188 }
189
190 // Token: 0x06000012 RID: 18 RVA: 0x000020C9 File Offset: 0x000002C9
191 private void Button8_Click(object sender, EventArgs e)
192 {
193 this.furkTabs.SelectTab("scriptHub");
194 }
195
196 // Token: 0x06000013 RID: 19 RVA: 0x00003384 File Offset: 0x00001584
197 private void PictureBox2_Click(object sender, EventArgs e)
198 {
199 string script = this.webLoader.DownloadString("https://pastebin.com/raw/yNwzgwTN");
200 this.exec(script);
201 }
202
203 // Token: 0x06000014 RID: 20 RVA: 0x000020C9 File Offset: 0x000002C9
204 private void button9_Click(object sender, EventArgs e)
205 {
206 this.furkTabs.SelectTab("scriptHub");
207 }
208
209 // Token: 0x06000015 RID: 21 RVA: 0x000020ED File Offset: 0x000002ED
210 private void pictureBox3_Click(object sender, EventArgs e)
211 {
212 this.furkTabs.SelectTab("PFTab");
213 }
214
215 // Token: 0x06000016 RID: 22 RVA: 0x000020FF File Offset: 0x000002FF
216 private void button8_Click_1(object sender, EventArgs e)
217 {
218 Process.Start("https://wearedevs.net/exploits");
219 }
220
221 // Token: 0x06000017 RID: 23 RVA: 0x000033AC File Offset: 0x000015AC
222 private void pictureBox4_Click(object sender, EventArgs e)
223 {
224 string script = this.webLoader.DownloadString("https://pastebin.com/raw/qMcbuEuJ");
225 this.exec(script);
226 }
227
228 // Token: 0x06000018 RID: 24 RVA: 0x000033D4 File Offset: 0x000015D4
229 private void pictureBox5_Click(object sender, EventArgs e)
230 {
231 string script = this.webLoader.DownloadString("https://pastebin.com/raw/kmWxeu8P");
232 this.exec(script);
233 }
234
235 // Token: 0x06000019 RID: 25 RVA: 0x000033FC File Offset: 0x000015FC
236 private void pictureBox6_Click(object sender, EventArgs e)
237 {
238 string script = this.webLoader.DownloadString("https://pastebin.com/raw/xyvE5K4q");
239 this.exec(script);
240 }
241
242 // Token: 0x0600001A RID: 26 RVA: 0x00003424 File Offset: 0x00001624
243 private void pictureBox8_Click(object sender, EventArgs e)
244 {
245 string script = this.webLoader.DownloadString("https://pastebin.com/raw/154RJ1mv");
246 this.exec(script);
247 }
248
249 // Token: 0x0600001B RID: 27 RVA: 0x0000344C File Offset: 0x0000164C
250 private void pictureBox7_Click(object sender, EventArgs e)
251 {
252 string script = this.webLoader.DownloadString("https://pastebin.com/raw/dGmwtKFZ");
253 this.exec(script);
254 }
255
256 // Token: 0x0600001C RID: 28 RVA: 0x00003474 File Offset: 0x00001674
257 private void pictureBox9_Click(object sender, EventArgs e)
258 {
259 string script = this.webLoader.DownloadString("https://pastebin.com/raw/tDS58RkZ");
260 this.exec(script);
261 }
262
263 // Token: 0x0600001D RID: 29 RVA: 0x0000349C File Offset: 0x0000169C
264 private void pictureBox10_Click(object sender, EventArgs e)
265 {
266 string script = this.webLoader.DownloadString("https://pastebin.com/raw/3qs77TTk");
267 this.exec(script);
268 MessageBox.Show("Script Executed, just deploy and shoot!");
269 }
270
271 // Token: 0x0600001E RID: 30 RVA: 0x000034CC File Offset: 0x000016CC
272 private void pictureBox11_Click(object sender, EventArgs e)
273 {
274 string script = this.webLoader.DownloadString("https://pastebin.com/raw/61vdJN2e");
275 this.exec(script);
276 MessageBox.Show("GUI is really broken right now, so use Aimbot and Hitbox only");
277 }
278
279 // Token: 0x0600001F RID: 31 RVA: 0x000034FC File Offset: 0x000016FC
280 private void pictureBox12_Click(object sender, EventArgs e)
281 {
282 string script = this.webLoader.DownloadString("https://pastebin.com/raw/f1whedKk");
283 this.exec(script);
284 }
285
286 // Token: 0x06000020 RID: 32 RVA: 0x00003524 File Offset: 0x00001724
287 private void pictureBox13_Click(object sender, EventArgs e)
288 {
289 string script = this.webLoader.DownloadString("https://pastebin.com/raw/hz4nAqXT");
290 this.exec(script);
291 }
292
293 // Token: 0x06000021 RID: 33 RVA: 0x0000354C File Offset: 0x0000174C
294 private void pictureBox14_Click(object sender, EventArgs e)
295 {
296 string script = this.webLoader.DownloadString("https://pastebin.com/raw/8Kmpe1xr");
297 this.exec(script);
298 }
299
300 // Token: 0x06000022 RID: 34 RVA: 0x0000210C File Offset: 0x0000030C
301 private void label5_Click(object sender, EventArgs e)
302 {
303 Process.Start("https://www.roblox.com/games/3956818381/NEW-SWORDS-Ninja-Legends");
304 }
305
306 // Token: 0x06000023 RID: 35 RVA: 0x00003574 File Offset: 0x00001774
307 private void button9_Click_1(object sender, EventArgs e)
308 {
309 Process[] processesByName = Process.GetProcessesByName("RobloxPlayerBeta");
310 for (int i = 0; i < processesByName.Length; i++)
311 {
312 processesByName[i].Kill();
313 }
314 }
315
316 // Token: 0x06000024 RID: 36 RVA: 0x00002119 File Offset: 0x00000319
317 private void label4_Click(object sender, EventArgs e)
318 {
319 Process.Start("https://www.roblox.com/games/402122991/Redwood-Prison");
320 }
321
322 // Token: 0x06000025 RID: 37 RVA: 0x00002126 File Offset: 0x00000326
323 private void label6_Click(object sender, EventArgs e)
324 {
325 Process.Start("https://www.roblox.com/games/155615604/Prison-Life-Cars-fixed");
326 }
327
328 // Token: 0x06000026 RID: 38 RVA: 0x00002133 File Offset: 0x00000333
329 private void label7_Click(object sender, EventArgs e)
330 {
331 Process.Start("https://www.roblox.com/games/3486025575/X2-Magnet-Simulator");
332 }
333
334 // Token: 0x06000027 RID: 39 RVA: 0x00002140 File Offset: 0x00000340
335 private void label8_Click(object sender, EventArgs e)
336 {
337 Process.Start("https://www.roblox.com/games/13822889/Lumber-Tycoon-2");
338 }
339
340 // Token: 0x06000028 RID: 40 RVA: 0x0000214D File Offset: 0x0000034D
341 private void label9_Click(object sender, EventArgs e)
342 {
343 Process.Start("https://www.roblox.com/games/171391948/Hot-Wheels-Vehicle-Simulator");
344 }
345
346 // Token: 0x06000029 RID: 41 RVA: 0x0000215A File Offset: 0x0000035A
347 private void label10_Click(object sender, EventArgs e)
348 {
349 Process.Start("https://www.roblox.com/games/3652625463/X2-Coins-Lifting-Simulator");
350 }
351
352 // Token: 0x0600002A RID: 42 RVA: 0x00002167 File Offset: 0x00000367
353 private void label11_Click(object sender, EventArgs e)
354 {
355 Process.Start("https://www.roblox.com/games/3527629287/BIG-Paintball");
356 }
357
358 // Token: 0x0600002B RID: 43 RVA: 0x00002174 File Offset: 0x00000374
359 private void label12_Click(object sender, EventArgs e)
360 {
361 Process.Start("https://www.roblox.com/games/2377868063/Strucid-BETA");
362 }
363
364 // Token: 0x0600002C RID: 44 RVA: 0x00002181 File Offset: 0x00000381
365 private void label13_Click(object sender, EventArgs e)
366 {
367 Process.Start("https://www.roblox.com/games/914010731/1M-FAVS-Ro-Ghoul-ALPHA");
368 }
369
370 // Token: 0x0600002D RID: 45 RVA: 0x0000218E File Offset: 0x0000038E
371 private void label14_Click(object sender, EventArgs e)
372 {
373 Process.Start("https://www.roblox.com/games/1537690962/Bee-Swarm-Simulator");
374 }
375
376 // Token: 0x0600002E RID: 46 RVA: 0x0000219B File Offset: 0x0000039B
377 private void label15_Click(object sender, EventArgs e)
378 {
379 Process.Start("https://www.roblox.com/games/3376584594/Flight-Simulator");
380 }
381
382 // Token: 0x0600002F RID: 47 RVA: 0x000021A8 File Offset: 0x000003A8
383 private void label16_Click(object sender, EventArgs e)
384 {
385 }
386
387 // Token: 0x06000030 RID: 48 RVA: 0x000021A8 File Offset: 0x000003A8
388 private void Monaco_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
389 {
390 }
391
392 // Token: 0x06000031 RID: 49 RVA: 0x000021A8 File Offset: 0x000003A8
393 private void flowLayoutPanel1_Paint(object sender, PaintEventArgs e)
394 {
395 }
396
397 // Token: 0x06000032 RID: 50 RVA: 0x000035A4 File Offset: 0x000017A4
398 private void pictureBox2_Click_1(object sender, EventArgs e)
399 {
400 string script = this.webLoader.DownloadString("https://pastebin.com/raw/62GBpaJN");
401 this.exec(script);
402 }
403
404 // Token: 0x06000033 RID: 51 RVA: 0x000021AA File Offset: 0x000003AA
405 private void label18_Click(object sender, EventArgs e)
406 {
407 Process.Start("https://www.roblox.com/games/4036494886/SANTA-BOSS-2X-Gun-Simulator");
408 }
409
410 // Token: 0x06000034 RID: 52 RVA: 0x000021B7 File Offset: 0x000003B7
411 private void label19_Click(object sender, EventArgs e)
412 {
413 Process.Start("https://www.roblox.com/games/2818280787/UPDATE-1-Pet-Simulator-2");
414 }
415
416 // Token: 0x06000035 RID: 53 RVA: 0x000035CC File Offset: 0x000017CC
417 private void pictureBox15_Click(object sender, EventArgs e)
418 {
419 string script = this.webLoader.DownloadString("https://pastebin.com/raw/QhtJiZLi");
420 this.exec(script);
421 MessageBox.Show("Once you enable autofarm, do NOT disable it, it will break the autofarm.");
422 }
423
424 // Token: 0x06000036 RID: 54 RVA: 0x000035FC File Offset: 0x000017FC
425 private void pictureBox16_Click(object sender, EventArgs e)
426 {
427 string script = this.webLoader.DownloadString("https://pastebin.com/raw/BEZU0bMs");
428 this.exec(script);
429 }
430
431 // Token: 0x06000037 RID: 55 RVA: 0x000021C4 File Offset: 0x000003C4
432 private void label20_Click(object sender, EventArgs e)
433 {
434 Process.Start("https://www.roblox.com/games/4476549181/Pet-Ranch-Simulator-2");
435 }
436
437 // Token: 0x06000038 RID: 56 RVA: 0x00003624 File Offset: 0x00001824
438 private void pictureBox17_Click(object sender, EventArgs e)
439 {
440 string script = this.webLoader.DownloadString("https://pastebin.com/raw/1xJQ8T5b");
441 this.exec(script);
442 }
443
444 // Token: 0x06000039 RID: 57 RVA: 0x000021D1 File Offset: 0x000003D1
445 private void label21_Click(object sender, EventArgs e)
446 {
447 Process.Start("https://www.roblox.com/games/1735775055/Iron-Man-Simulator");
448 }
449
450 // Token: 0x0600003A RID: 58 RVA: 0x0000364C File Offset: 0x0000184C
451 private void pictureBox18_Click(object sender, EventArgs e)
452 {
453 string script = this.webLoader.DownloadString("https://pastebin.com/raw/kFwWbXUt");
454 this.exec(script);
455 }
456
457 // Token: 0x0600003B RID: 59 RVA: 0x000021DE File Offset: 0x000003DE
458 private void label22_Click(object sender, EventArgs e)
459 {
460 Process.Start("https://www.roblox.com/games/855499080/SKYWARS");
461 }
462
463 // Token: 0x0600003C RID: 60 RVA: 0x000021EB File Offset: 0x000003EB
464 private void label23_Click(object sender, EventArgs e)
465 {
466 Process.Start("https://www.roblox.com/games/1262182609/BOOGA-BOOGA-v-C1-41");
467 }
468
469 // Token: 0x0600003D RID: 61 RVA: 0x00003674 File Offset: 0x00001874
470 private void pictureBox19_Click(object sender, EventArgs e)
471 {
472 string script = this.webLoader.DownloadString("https://pastebin.com/raw/yigKxDrK");
473 this.exec(script);
474 }
475
476 // Token: 0x0600003E RID: 62 RVA: 0x0000369C File Offset: 0x0000189C
477 private void pictureBox20_Click(object sender, EventArgs e)
478 {
479 Process.Start("https://www.youtube.com/channel/UChMPXNYurxjYI_cpsPLYPkA");
480 string script = this.webLoader.DownloadString("https://pastebin.com/raw/sAc9Zt0j");
481 this.exec(script);
482 }
483
484 // Token: 0x0600003F RID: 63 RVA: 0x000021F8 File Offset: 0x000003F8
485 private void label24_Click(object sender, EventArgs e)
486 {
487 Process.Start("https://web.roblox.com/games/1373038156/3-X-EVENT-Woodchopping-Simulator");
488 }
489
490 // Token: 0x06000040 RID: 64 RVA: 0x000036CC File Offset: 0x000018CC
491 private void pictureBox21_Click(object sender, EventArgs e)
492 {
493 string script = this.webLoader.DownloadString("https://pastebin.com/raw/cnLABpj3");
494 this.exec(script);
495 }
496
497 // Token: 0x06000041 RID: 65 RVA: 0x00002205 File Offset: 0x00000405
498 private void label25_Click(object sender, EventArgs e)
499 {
500 Process.Start("https://web.roblox.com/games/3925890721/Robot-Inc-Evil-Factory");
501 }
502
503 // Token: 0x06000042 RID: 66 RVA: 0x000036F4 File Offset: 0x000018F4
504 private void pictureBox22_Click(object sender, EventArgs e)
505 {
506 string script = this.webLoader.DownloadString("https://pastebin.com/raw/0BEnnwC4");
507 this.exec(script);
508 MessageBox.Show("Ps. You have to re execute everytime there is a new giant.");
509 }
510
511 // Token: 0x06000043 RID: 67 RVA: 0x00002212 File Offset: 0x00000412
512 private void label26_Click(object sender, EventArgs e)
513 {
514 Process.Start("https://web.roblox.com/games/4003872968/Giant-Survival-Remastered");
515 }
516
517 // Token: 0x06000044 RID: 68 RVA: 0x00003724 File Offset: 0x00001924
518 private void pictureBox23_Click(object sender, EventArgs e)
519 {
520 string script = this.webLoader.DownloadString("https://pastebin.com/raw/AcHFc885");
521 this.exec(script);
522 MessageBox.Show("Click on F8 to close the GUI!");
523 }
524
525 // Token: 0x06000045 RID: 69 RVA: 0x0000221F File Offset: 0x0000041F
526 private void label27_Click(object sender, EventArgs e)
527 {
528 Process.Start("https://web.roblox.com/games/301549746/NEW-CASE-Counter-Blox");
529 }
530
531 // Token: 0x06000046 RID: 70 RVA: 0x00003754 File Offset: 0x00001954
532 private void pictureBox24_Click(object sender, EventArgs e)
533 {
534 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Yd2vKxPv");
535 this.exec(script);
536 }
537
538 // Token: 0x06000047 RID: 71 RVA: 0x0000222C File Offset: 0x0000042C
539 private void label28_Click(object sender, EventArgs e)
540 {
541 Process.Start("https://web.roblox.com/games/286090429/Arsenal");
542 }
543
544 // Token: 0x06000048 RID: 72 RVA: 0x0000377C File Offset: 0x0000197C
545 private void pictureBox25_Click(object sender, EventArgs e)
546 {
547 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Ccj7htSL");
548 this.exec(script);
549 }
550
551 // Token: 0x06000049 RID: 73 RVA: 0x00002239 File Offset: 0x00000439
552 private void label29_Click(object sender, EventArgs e)
553 {
554 Process.Start("https://web.roblox.com/games/292439477/GERMAN-SPACE-GUNS-Phantom-Forces");
555 }
556
557 // Token: 0x0600004A RID: 74 RVA: 0x000037A4 File Offset: 0x000019A4
558 private void pictureBox26_Click(object sender, EventArgs e)
559 {
560 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YYVLbzVg");
561 this.exec(script);
562 }
563
564 // Token: 0x0600004B RID: 75 RVA: 0x00002246 File Offset: 0x00000446
565 private void label30_Click(object sender, EventArgs e)
566 {
567 Process.Start("https://web.roblox.com/games/734159876/SharkBite");
568 }
569
570 // Token: 0x0600004C RID: 76 RVA: 0x000037CC File Offset: 0x000019CC
571 private void pictureBox27_Click(object sender, EventArgs e)
572 {
573 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Hxwnxqbh");
574 this.exec(script);
575 }
576
577 // Token: 0x0600004D RID: 77 RVA: 0x00002253 File Offset: 0x00000453
578 private void label31_Click(object sender, EventArgs e)
579 {
580 Process.Start("https://web.roblox.com/games/1600503/Apocalypse-Rising");
581 }
582
583 // Token: 0x0600004E RID: 78 RVA: 0x000037F4 File Offset: 0x000019F4
584 private void pictureBox28_Click(object sender, EventArgs e)
585 {
586 string script = this.webLoader.DownloadString("https://pastebin.com/raw/q817HYb9");
587 this.exec(script);
588 }
589
590 // Token: 0x0600004F RID: 79 RVA: 0x00002260 File Offset: 0x00000460
591 private void label32_Click(object sender, EventArgs e)
592 {
593 Process.Start("https://web.roblox.com/games/192800/Gift-Calendar-Work-at-a-Pizza-Place");
594 }
595
596 // Token: 0x06000050 RID: 80 RVA: 0x0000381C File Offset: 0x00001A1C
597 private void pictureBox29_Click(object sender, EventArgs e)
598 {
599 string script = this.webLoader.DownloadString("https://pastebin.com/raw/xJMxE4UQ");
600 this.exec(script);
601 }
602
603 // Token: 0x06000051 RID: 81 RVA: 0x0000226D File Offset: 0x0000046D
604 private void label33_Click(object sender, EventArgs e)
605 {
606 Process.Start("https://web.roblox.com/games/4483360365/NEW-Gift-Simulator-Beta");
607 }
608
609 // Token: 0x06000052 RID: 82 RVA: 0x00003844 File Offset: 0x00001A44
610 private void pictureBox30_Click(object sender, EventArgs e)
611 {
612 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Z33h2izB");
613 this.exec(script);
614 }
615
616 // Token: 0x06000053 RID: 83 RVA: 0x0000227A File Offset: 0x0000047A
617 private void label34_Click(object sender, EventArgs e)
618 {
619 Process.Start("https://web.roblox.com/games/4058282580/X3-SOULS-Boxing-Simulator");
620 }
621
622 // Token: 0x06000054 RID: 84 RVA: 0x0000386C File Offset: 0x00001A6C
623 private void pictureBox31_Click(object sender, EventArgs e)
624 {
625 string script = this.webLoader.DownloadString("https://pastebin.com/raw/wjSZBDSF");
626 this.exec(script);
627 }
628
629 // Token: 0x06000055 RID: 85 RVA: 0x00002287 File Offset: 0x00000487
630 private void label35_Click(object sender, EventArgs e)
631 {
632 Process.Start("https://web.roblox.com/games/4042427666/KAGUNE-Anime-Fighting-Simulator");
633 }
634
635 // Token: 0x06000056 RID: 86 RVA: 0x00003894 File Offset: 0x00001A94
636 private void pictureBox32_Click(object sender, EventArgs e)
637 {
638 string script = this.webLoader.DownloadString("https://pastebin.com/raw/U8cHYnJ5");
639 this.exec(script);
640 }
641
642 // Token: 0x06000057 RID: 87 RVA: 0x00002294 File Offset: 0x00000494
643 private void label36_Click(object sender, EventArgs e)
644 {
645 Process.Start("https://web.roblox.com/games/3697782514/Magician-Simulator");
646 }
647
648 // Token: 0x06000058 RID: 88 RVA: 0x000038BC File Offset: 0x00001ABC
649 private void pictureBox33_Click(object sender, EventArgs e)
650 {
651 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Tpwg3w1x");
652 this.exec(script);
653 }
654
655 // Token: 0x06000059 RID: 89 RVA: 0x000022A1 File Offset: 0x000004A1
656 private void label37_Click(object sender, EventArgs e)
657 {
658 Process.Start("https://web.roblox.com/games/3970007519/One-Piece-Ultimate");
659 }
660
661 // Token: 0x0600005A RID: 90 RVA: 0x000038E4 File Offset: 0x00001AE4
662 private void pictureBox34_Click(object sender, EventArgs e)
663 {
664 string script = this.webLoader.DownloadString("https://pastebin.com/raw/rfJTK1rc");
665 this.exec(script);
666 }
667
668 // Token: 0x0600005B RID: 91 RVA: 0x000022A1 File Offset: 0x000004A1
669 private void label38_Click(object sender, EventArgs e)
670 {
671 Process.Start("https://web.roblox.com/games/3970007519/One-Piece-Ultimate");
672 }
673
674 // Token: 0x0600005C RID: 92 RVA: 0x0000390C File Offset: 0x00001B0C
675 private void pictureBox35_Click(object sender, EventArgs e)
676 {
677 string script = this.webLoader.DownloadString("https://pastebin.com/raw/yJ3Vcb1s");
678 this.exec(script);
679 }
680
681 // Token: 0x0600005D RID: 93 RVA: 0x000022AE File Offset: 0x000004AE
682 private void label39_Click(object sender, EventArgs e)
683 {
684 Process.Start("https://web.roblox.com/games/4465900102/TRADE-Present-Simulator");
685 }
686
687 // Token: 0x0600005E RID: 94 RVA: 0x00003934 File Offset: 0x00001B34
688 private void pictureBox36_Click(object sender, EventArgs e)
689 {
690 string script = this.webLoader.DownloadString("https://pastebin.com/raw/ju2teccL");
691 this.exec(script);
692 }
693
694 // Token: 0x0600005F RID: 95 RVA: 0x000022BB File Offset: 0x000004BB
695 private void label40_Click(object sender, EventArgs e)
696 {
697 Process.Start("https://web.roblox.com/games/3759927663/NEW-MISSION-Zombie-Strike-BETA");
698 }
699
700 // Token: 0x06000060 RID: 96 RVA: 0x0000395C File Offset: 0x00001B5C
701 private void pictureBox37_Click(object sender, EventArgs e)
702 {
703 string script = this.webLoader.DownloadString("https://pastebin.com/raw/mxVSVCLE");
704 this.exec(script);
705 }
706
707 // Token: 0x06000061 RID: 97 RVA: 0x000022C8 File Offset: 0x000004C8
708 private void label41_Click(object sender, EventArgs e)
709 {
710 Process.Start("https://web.roblox.com/games/2202352383/Super-Power-Training-Simulator");
711 }
712
713 // Token: 0x06000062 RID: 98 RVA: 0x00003984 File Offset: 0x00001B84
714 private void pictureBox38_Click(object sender, EventArgs e)
715 {
716 string script = this.webLoader.DownloadString("https://pastebin.com/raw/tz60v82X");
717 this.exec(script);
718 }
719
720 // Token: 0x06000063 RID: 99 RVA: 0x000022D5 File Offset: 0x000004D5
721 private void label42_Click(object sender, EventArgs e)
722 {
723 Process.Start("https://web.roblox.com/games/3048816241/LOL-Surprise-Tycoon-CHRISTMAS");
724 }
725
726 // Token: 0x06000064 RID: 100 RVA: 0x000039AC File Offset: 0x00001BAC
727 private void pictureBox39_Click(object sender, EventArgs e)
728 {
729 string script = this.webLoader.DownloadString("https://pastebin.com/raw/URDBqiUw");
730 this.exec(script);
731 MessageBox.Show("After Executing, Deploy And You Will Get A Lot Of Kills.");
732 }
733
734 // Token: 0x06000065 RID: 101 RVA: 0x000022E2 File Offset: 0x000004E2
735 private void label43_Click(object sender, EventArgs e)
736 {
737 Process.Start("https://web.roblox.com/games/901793731/D-DAY-GREASE-GUN");
738 }
739
740 // Token: 0x06000066 RID: 102 RVA: 0x000039DC File Offset: 0x00001BDC
741 private void pictureBox40_Click(object sender, EventArgs e)
742 {
743 string script = this.webLoader.DownloadString("https://pastebin.com/raw/ZNCeSaCd");
744 this.exec(script);
745 }
746
747 // Token: 0x06000067 RID: 103 RVA: 0x000022EF File Offset: 0x000004EF
748 private void label44_Click(object sender, EventArgs e)
749 {
750 Process.Start("https://web.roblox.com/games/3065716641/NEW-Slicing-Simulator");
751 }
752
753 // Token: 0x06000068 RID: 104 RVA: 0x00003A04 File Offset: 0x00001C04
754 private void pictureBox41_Click(object sender, EventArgs e)
755 {
756 string script = this.webLoader.DownloadString("http://pastebin.com/raw/dd2Ssu21");
757 this.exec(script);
758 }
759
760 // Token: 0x06000069 RID: 105 RVA: 0x000022FC File Offset: 0x000004FC
761 private void label45_Click(object sender, EventArgs e)
762 {
763 Process.Start("https://web.roblox.com/games/4168452999/FLYING-Magic-Sim");
764 }
765
766 // Token: 0x0600006A RID: 106 RVA: 0x000022FC File Offset: 0x000004FC
767 private void label45_Click_1(object sender, EventArgs e)
768 {
769 Process.Start("https://web.roblox.com/games/4168452999/FLYING-Magic-Sim");
770 }
771
772 // Token: 0x0600006B RID: 107 RVA: 0x00003A2C File Offset: 0x00001C2C
773 private void pictureBox42_Click(object sender, EventArgs e)
774 {
775 string script = this.webLoader.DownloadString("https://pastebin.com/raw/20qC3UBr");
776 this.exec(script);
777 }
778
779 // Token: 0x0600006C RID: 108 RVA: 0x00002309 File Offset: 0x00000509
780 private void label46_Click(object sender, EventArgs e)
781 {
782 Process.Start("https://web.roblox.com/games/3823781113/XMAS-Saber-Simulator");
783 }
784
785 // Token: 0x0600006D RID: 109 RVA: 0x00003A54 File Offset: 0x00001C54
786 private void pictureBox43_Click(object sender, EventArgs e)
787 {
788 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Y30aARwS");
789 this.exec(script);
790 }
791
792 // Token: 0x0600006E RID: 110 RVA: 0x00002316 File Offset: 0x00000516
793 private void label47_Click(object sender, EventArgs e)
794 {
795 Process.Start("https://web.roblox.com/games/3959436136/Fighting-Simulator");
796 }
797
798 // Token: 0x0600006F RID: 111 RVA: 0x00003A7C File Offset: 0x00001C7C
799 private void pictureBox44_Click(object sender, EventArgs e)
800 {
801 string script = this.webLoader.DownloadString("https://pastebin.com/raw/nQxFmsMN");
802 this.exec(script);
803 }
804
805 // Token: 0x06000070 RID: 112 RVA: 0x00002323 File Offset: 0x00000523
806 private void label48_Click(object sender, EventArgs e)
807 {
808 Process.Start("https://web.roblox.com/games/606849621/Jailbreak-CARGO-ROBBERY");
809 }
810
811 // Token: 0x06000071 RID: 113 RVA: 0x00003AA4 File Offset: 0x00001CA4
812 private void pictureBox45_Click(object sender, EventArgs e)
813 {
814 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/rd6aw/raw");
815 this.exec(script);
816 }
817
818 // Token: 0x06000072 RID: 114 RVA: 0x00002330 File Offset: 0x00000530
819 private void label49_Click(object sender, EventArgs e)
820 {
821 Process.Start("https://web.roblox.com/games/1224212277/Mad-City");
822 }
823
824 // Token: 0x06000073 RID: 115 RVA: 0x00003ACC File Offset: 0x00001CCC
825 private void pictureBox46_Click(object sender, EventArgs e)
826 {
827 string script = this.webLoader.DownloadString("https://pastebin.com/raw/A1Xia0pi");
828 this.exec(script);
829 }
830
831 // Token: 0x06000074 RID: 116 RVA: 0x0000233D File Offset: 0x0000053D
832 private void label50_Click(object sender, EventArgs e)
833 {
834 Process.Start("https://web.roblox.com/games/142823291/Murder-Mystery-2");
835 }
836
837 // Token: 0x06000075 RID: 117 RVA: 0x00003AF4 File Offset: 0x00001CF4
838 private void pictureBox47_Click(object sender, EventArgs e)
839 {
840 string script = this.webLoader.DownloadString("https://pastebin.com/raw/LEqzpDW0");
841 this.exec(script);
842 }
843
844 // Token: 0x06000076 RID: 118 RVA: 0x0000234A File Offset: 0x0000054A
845 private void label51_Click(object sender, EventArgs e)
846 {
847 Process.Start("https://web.roblox.com/games/137885680/Zombie-Rush");
848 }
849
850 // Token: 0x06000077 RID: 119 RVA: 0x00003B1C File Offset: 0x00001D1C
851 private void pictureBox48_Click(object sender, EventArgs e)
852 {
853 string script = this.webLoader.DownloadString("https://pastebin.com/raw/PwzTNbsR");
854 this.exec(script);
855 MessageBox.Show("After executing, cook and it should auto cook for you!");
856 }
857
858 // Token: 0x06000078 RID: 120 RVA: 0x00002357 File Offset: 0x00000557
859 private void label52_Click(object sender, EventArgs e)
860 {
861 Process.Start("https://web.roblox.com/games/3398014311/Restaurant-Tycoon-2");
862 }
863
864 // Token: 0x06000079 RID: 121 RVA: 0x00002364 File Offset: 0x00000564
865 private void label53_Click(object sender, EventArgs e)
866 {
867 Process.Start("https://web.roblox.com/games/4131423478/ROBOTS-Tree-Planting-Simulator");
868 }
869
870 // Token: 0x0600007A RID: 122 RVA: 0x00003B4C File Offset: 0x00001D4C
871 private void pictureBox49_Click(object sender, EventArgs e)
872 {
873 string script = this.webLoader.DownloadString("https://pastebin.com/raw/N4Lwq6wX");
874 this.exec(script);
875 }
876
877 // Token: 0x0600007B RID: 123 RVA: 0x00003384 File Offset: 0x00001584
878 private void pictureBox3_Click_1(object sender, EventArgs e)
879 {
880 string script = this.webLoader.DownloadString("https://pastebin.com/raw/yNwzgwTN");
881 this.exec(script);
882 }
883
884 // Token: 0x0600007C RID: 124 RVA: 0x00003B74 File Offset: 0x00001D74
885 private void pictureBox50_Click(object sender, EventArgs e)
886 {
887 string script = this.webLoader.DownloadString("https://pastebin.com/raw/WC89Ej1k");
888 this.exec(script);
889 }
890
891 // Token: 0x0600007D RID: 125 RVA: 0x00002371 File Offset: 0x00000571
892 private void label54_Click(object sender, EventArgs e)
893 {
894 Process.Start("https://web.roblox.com/games/4458733955/UPDATE-1-Blade-Simulator");
895 }
896
897 // Token: 0x0600007E RID: 126 RVA: 0x00003B9C File Offset: 0x00001D9C
898 private void pictureBox51_Click(object sender, EventArgs e)
899 {
900 string script = this.webLoader.DownloadString("https://pastebin.com/raw/TYvHFnSh");
901 this.exec(script);
902 }
903
904 // Token: 0x0600007F RID: 127 RVA: 0x0000237E File Offset: 0x0000057E
905 private void label55_Click(object sender, EventArgs e)
906 {
907 Process.Start("https://web.roblox.com/games/4254575069/BOSSES-Champion-Simulator");
908 }
909
910 // Token: 0x06000080 RID: 128 RVA: 0x0000238B File Offset: 0x0000058B
911 private void label56_Click(object sender, EventArgs e)
912 {
913 Process.Start("https://web.roblox.com/games/289565045/Mad-Paintball-2-v0-07");
914 }
915
916 // Token: 0x06000081 RID: 129 RVA: 0x00003BC4 File Offset: 0x00001DC4
917 private void pictureBox52_Click(object sender, EventArgs e)
918 {
919 Process.Start("https://www.youtube.com/channel/UChMPXNYurxjYI_cpsPLYPkA");
920 string script = this.webLoader.DownloadString("https://pastebin.com/raw/As5D6NAN");
921 this.exec(script);
922 }
923
924 // Token: 0x06000082 RID: 130 RVA: 0x00003BF4 File Offset: 0x00001DF4
925 private void pictureBox53_Click(object sender, EventArgs e)
926 {
927 string script = this.webLoader.DownloadString("https://pastebin.com/raw/FtFCzQTw");
928 this.exec(script);
929 MessageBox.Show("After Executing, Click on Toggle and it should give you a lot of money, diamonds, etc...");
930 }
931
932 // Token: 0x06000083 RID: 131 RVA: 0x00002398 File Offset: 0x00000598
933 private void label57_Click(object sender, EventArgs e)
934 {
935 Process.Start("https://web.roblox.com/games/2580982329/MERCH-Texting-Simulator");
936 }
937
938 // Token: 0x06000084 RID: 132 RVA: 0x00003C24 File Offset: 0x00001E24
939 private void pictureBox54_Click(object sender, EventArgs e)
940 {
941 string script = this.webLoader.DownloadString("https://pastebin.com/raw/mFnVACZ1");
942 this.exec(script);
943 }
944
945 // Token: 0x06000085 RID: 133 RVA: 0x000023A5 File Offset: 0x000005A5
946 private void label58_Click(object sender, EventArgs e)
947 {
948 Process.Start("https://www.roblox.com/games/893973440/Flee-the-Facility-Beta");
949 }
950
951 // Token: 0x06000086 RID: 134 RVA: 0x00003C4C File Offset: 0x00001E4C
952 private void pictureBox55_Click(object sender, EventArgs e)
953 {
954 string script = this.webLoader.DownloadString("https://pastebin.com/raw/q6WHcj2D");
955 this.exec(script);
956 }
957
958 // Token: 0x06000087 RID: 135 RVA: 0x000023B2 File Offset: 0x000005B2
959 private void label59_Click(object sender, EventArgs e)
960 {
961 Process.Start("https://www.roblox.com/games/536102540/Dragon-Ball-Z-Final-Stand");
962 }
963
964 // Token: 0x06000088 RID: 136 RVA: 0x00003C74 File Offset: 0x00001E74
965 private void pictureBox57_Click(object sender, EventArgs e)
966 {
967 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/oce55/raw");
968 this.exec(script);
969 }
970
971 // Token: 0x06000089 RID: 137 RVA: 0x000023BF File Offset: 0x000005BF
972 private void label61_Click(object sender, EventArgs e)
973 {
974 Process.Start("https://www.roblox.com/games/2636441885/HOLIDAY-Speed-City");
975 }
976
977 // Token: 0x0600008A RID: 138 RVA: 0x000023CC File Offset: 0x000005CC
978 private void label60_Click(object sender, EventArgs e)
979 {
980 Process.Start("https://www.roblox.com/games/2414851778/Tier-30-Dungeon-Quest");
981 }
982
983 // Token: 0x0600008B RID: 139 RVA: 0x00003C9C File Offset: 0x00001E9C
984 private void pictureBox56_Click(object sender, EventArgs e)
985 {
986 string script = this.webLoader.DownloadString("https://pastebin.com/raw/F5vSFHZt");
987 this.exec(script);
988 MessageBox.Show("AutoFarm is still work under progress!");
989 }
990
991 // Token: 0x0600008C RID: 140 RVA: 0x00003CCC File Offset: 0x00001ECC
992 private void pictureBox58_Click(object sender, EventArgs e)
993 {
994 string script = this.webLoader.DownloadString("http://creativehell.c1.biz/public-scripts/blox-piece.lua");
995 this.exec(script);
996 MessageBox.Show("Bandit Farm WILL CRASH YOUR GAME, so use chest farm only!");
997 }
998
999 // Token: 0x0600008D RID: 141 RVA: 0x000023D9 File Offset: 0x000005D9
1000 private void label62_Click(object sender, EventArgs e)
1001 {
1002 Process.Start("https://www.roblox.com/games/2753915549/Update-8-Blox-Piece");
1003 }
1004
1005 // Token: 0x0600008E RID: 142 RVA: 0x00003CFC File Offset: 0x00001EFC
1006 private void pictureBox59_Click(object sender, EventArgs e)
1007 {
1008 string script = this.webLoader.DownloadString("https://pastebin.com/raw/bQRxQiBy");
1009 this.exec(script);
1010 }
1011
1012 // Token: 0x0600008F RID: 143 RVA: 0x000023E6 File Offset: 0x000005E6
1013 private void label63_Click(object sender, EventArgs e)
1014 {
1015 Process.Start("https://www.roblox.com/games/2533391464/UPDATE-Snowman-Simulator");
1016 }
1017
1018 // Token: 0x06000090 RID: 144 RVA: 0x000023F3 File Offset: 0x000005F3
1019 private void label64_Click(object sender, EventArgs e)
1020 {
1021 Process.Start("https://www.roblox.com/games/4246487209/Boss-Fighting-Simulator");
1022 }
1023
1024 // Token: 0x06000091 RID: 145 RVA: 0x00003D24 File Offset: 0x00001F24
1025 private void pictureBox60_Click(object sender, EventArgs e)
1026 {
1027 string script = this.webLoader.DownloadString("https://hastebin.com/raw/ekidiqohew");
1028 this.exec(script);
1029 }
1030
1031 // Token: 0x06000092 RID: 146 RVA: 0x00002400 File Offset: 0x00000600
1032 private void label65_Click(object sender, EventArgs e)
1033 {
1034 Process.Start("https://www.roblox.com/games/4003645442/Sprinting-Simulator-2K");
1035 }
1036
1037 // Token: 0x06000093 RID: 147 RVA: 0x00003D4C File Offset: 0x00001F4C
1038 private void pictureBox61_Click(object sender, EventArgs e)
1039 {
1040 string script = this.webLoader.DownloadString("https://pastebin.com/raw/VNQy7fg3");
1041 this.exec(script);
1042 }
1043
1044 // Token: 0x06000094 RID: 148 RVA: 0x0000240D File Offset: 0x0000060D
1045 private void label17_Click(object sender, EventArgs e)
1046 {
1047 Process.Start("https://www.roblox.com/games/2960777560/X2-WKND-Treasure-Quest");
1048 }
1049
1050 // Token: 0x06000095 RID: 149 RVA: 0x00003D74 File Offset: 0x00001F74
1051 private void pictureBox62_Click(object sender, EventArgs e)
1052 {
1053 string script = this.webLoader.DownloadString("https://pastebin.com/raw/zPF5ijUU");
1054 this.exec(script);
1055 }
1056
1057 // Token: 0x06000096 RID: 150 RVA: 0x0000241A File Offset: 0x0000061A
1058 private void label66_Click(object sender, EventArgs e)
1059 {
1060 Process.Start("https://pastebin.com/raw/WytB2TXz");
1061 }
1062
1063 // Token: 0x06000097 RID: 151 RVA: 0x00003D9C File Offset: 0x00001F9C
1064 private void pictureBox63_Click(object sender, EventArgs e)
1065 {
1066 string script = this.webLoader.DownloadString("https://pastebin.com/raw/zPF5ijUU");
1067 this.exec(script);
1068 MessageBox.Show("After executing, it will kill everyone, re-execute to kill everyone again!");
1069 }
1070
1071 // Token: 0x06000098 RID: 152 RVA: 0x00002427 File Offset: 0x00000627
1072 private void label29_Click_1(object sender, EventArgs e)
1073 {
1074 Process.Start("https://www.roblox.com/games/370731277/MeepCity");
1075 }
1076
1077 // Token: 0x06000099 RID: 153 RVA: 0x00003DCC File Offset: 0x00001FCC
1078 private void pictureBox25_Click_1(object sender, EventArgs e)
1079 {
1080 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Gn0tuWch");
1081 this.exec(script);
1082 }
1083
1084 // Token: 0x0600009A RID: 154 RVA: 0x00002434 File Offset: 0x00000634
1085 private void label59_Click_1(object sender, EventArgs e)
1086 {
1087 Process.Start("https://www.roblox.com/games/4437355485/Ilum-2-RELEASE-SALE-2X-EXP");
1088 }
1089
1090 // Token: 0x0600009B RID: 155 RVA: 0x00003DF4 File Offset: 0x00001FF4
1091 private void pictureBox55_Click_1(object sender, EventArgs e)
1092 {
1093 string script = this.webLoader.DownloadString("https://pastebin.com/raw/QUv5t5H1");
1094 this.exec(script);
1095 }
1096
1097 // Token: 0x0600009C RID: 156 RVA: 0x00002441 File Offset: 0x00000641
1098 private void label67_Click(object sender, EventArgs e)
1099 {
1100 Process.Start("https://www.roblox.com/games/4512002843/XMAS-SALE-Dungeon-Simulator");
1101 }
1102
1103 // Token: 0x0600009D RID: 157 RVA: 0x00003E1C File Offset: 0x0000201C
1104 private void pictureBox64_Click(object sender, EventArgs e)
1105 {
1106 string script = this.webLoader.DownloadString("https://pastebin.com/raw/tSLrVYpx");
1107 this.exec(script);
1108 }
1109
1110 // Token: 0x0600009E RID: 158 RVA: 0x0000244E File Offset: 0x0000064E
1111 private void label68_Click(object sender, EventArgs e)
1112 {
1113 Process.Start("https://web.roblox.com/games/3392399599/UPDATE-1-Drifting-Simulator-BETA");
1114 }
1115
1116 // Token: 0x0600009F RID: 159 RVA: 0x00003E44 File Offset: 0x00002044
1117 private void pictureBox65_Click(object sender, EventArgs e)
1118 {
1119 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Tj7R9HnU");
1120 this.exec(script);
1121 MessageBox.Show("Wait a few seconds after executing for the GUI to show up!");
1122 }
1123
1124 // Token: 0x060000A0 RID: 160 RVA: 0x00003E74 File Offset: 0x00002074
1125 private void pictureBox66_Click(object sender, EventArgs e)
1126 {
1127 string script = this.webLoader.DownloadString("https://pastebin.com/raw/TmhzPEef");
1128 this.exec(script);
1129 }
1130
1131 // Token: 0x060000A1 RID: 161 RVA: 0x0000245B File Offset: 0x0000065B
1132 private void label69_Click(object sender, EventArgs e)
1133 {
1134 Process.Start("https://web.roblox.com/games/4390380541/NEW-Rumble-Quest");
1135 }
1136
1137 // Token: 0x060000A2 RID: 162 RVA: 0x00002468 File Offset: 0x00000668
1138 private void label70_Click(object sender, EventArgs e)
1139 {
1140 Process.Start("https://web.roblox.com/games/379614936/Assassin");
1141 }
1142
1143 // Token: 0x060000A3 RID: 163 RVA: 0x00002475 File Offset: 0x00000675
1144 private void label71_Click(object sender, EventArgs e)
1145 {
1146 Process.Start("https://web.roblox.com/games/292439477/Israeli-Weapons-Phantom-Forces");
1147 }
1148
1149 // Token: 0x060000A4 RID: 164 RVA: 0x00003E9C File Offset: 0x0000209C
1150 private void pictureBox68_Click(object sender, EventArgs e)
1151 {
1152 string script = this.webLoader.DownloadString("https://pastebin.com/raw/W3RaCgRw");
1153 this.exec(script);
1154 }
1155
1156 // Token: 0x060000A5 RID: 165 RVA: 0x00003EC4 File Offset: 0x000020C4
1157 private void pictureBox67_Click(object sender, EventArgs e)
1158 {
1159 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/qua6e/raw");
1160 this.exec(script);
1161 MessageBox.Show("After enabeling aimbot, DO NOT DISABLE IT OR IT WILL CRASH! To use aimbot : Throw your knife into the box when it has colours!");
1162 }
1163
1164 // Token: 0x060000A6 RID: 166 RVA: 0x00002482 File Offset: 0x00000682
1165 private void label72_Click(object sender, EventArgs e)
1166 {
1167 Process.Start("https://web.roblox.com/games/221718525/Naruto-Tycoon-v2-5");
1168 }
1169
1170 // Token: 0x060000A7 RID: 167 RVA: 0x00002482 File Offset: 0x00000682
1171 private void label72_Click_1(object sender, EventArgs e)
1172 {
1173 Process.Start("https://web.roblox.com/games/221718525/Naruto-Tycoon-v2-5");
1174 }
1175
1176 // Token: 0x060000A8 RID: 168 RVA: 0x00003EF4 File Offset: 0x000020F4
1177 private void pictureBox69_Click(object sender, EventArgs e)
1178 {
1179 string script = this.webLoader.DownloadString("https://pastebin.com/raw/b2XekCiR");
1180 this.exec(script);
1181 }
1182
1183 // Token: 0x060000A9 RID: 169 RVA: 0x00003F1C File Offset: 0x0000211C
1184 private void pictureBox70_Click(object sender, EventArgs e)
1185 {
1186 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Qv86dKq8");
1187 this.exec(script);
1188 MessageBox.Show("READ CAREFULLY! After executing, it will kick you, rejoin and it will give you INFINITE of everything!");
1189 }
1190
1191 // Token: 0x060000AA RID: 170 RVA: 0x0000248F File Offset: 0x0000068F
1192 private void label73_Click(object sender, EventArgs e)
1193 {
1194 Process.Start("https://web.roblox.com/games/137877687/RoCitizens-Christmas");
1195 }
1196
1197 // Token: 0x060000AB RID: 171 RVA: 0x0000249C File Offset: 0x0000069C
1198 private void label74_Click(object sender, EventArgs e)
1199 {
1200 Process.Start("https://web.roblox.com/games/3016661674/Rogue-Lineage-SALE");
1201 }
1202
1203 // Token: 0x060000AC RID: 172 RVA: 0x00003F4C File Offset: 0x0000214C
1204 private void pictureBox71_Click(object sender, EventArgs e)
1205 {
1206 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YkNcYx4Q");
1207 this.exec(script);
1208 }
1209
1210 // Token: 0x060000AD RID: 173 RVA: 0x000024A9 File Offset: 0x000006A9
1211 private void label75_Click(object sender, EventArgs e)
1212 {
1213 Process.Start("https://web.roblox.com/games/2346834658/Weight-Lifting-Simulator-3");
1214 }
1215
1216 // Token: 0x060000AE RID: 174 RVA: 0x00003F74 File Offset: 0x00002174
1217 private void pictureBox72_Click(object sender, EventArgs e)
1218 {
1219 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/nev2j/raw");
1220 this.exec(script);
1221 }
1222
1223 // Token: 0x060000AF RID: 175 RVA: 0x000024B6 File Offset: 0x000006B6
1224 private void label76_Click(object sender, EventArgs e)
1225 {
1226 Process.Start("https://web.roblox.com/games/2473334918/Gas-Station-Simulator");
1227 }
1228
1229 // Token: 0x060000B0 RID: 176 RVA: 0x00003F9C File Offset: 0x0000219C
1230 private void pictureBox73_Click(object sender, EventArgs e)
1231 {
1232 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/mggbd/raw");
1233 this.exec(script);
1234 }
1235
1236 // Token: 0x060000B1 RID: 177 RVA: 0x000024C3 File Offset: 0x000006C3
1237 private void label77_Click(object sender, EventArgs e)
1238 {
1239 Process.Start("https://www.roblox.com/games/1320186298/SANTA-Island-Royale");
1240 }
1241
1242 // Token: 0x060000B2 RID: 178 RVA: 0x00003FC4 File Offset: 0x000021C4
1243 private void pictureBox74_Click(object sender, EventArgs e)
1244 {
1245 string script = this.webLoader.DownloadString("https://pastebin.com/raw/cPNc5xV7");
1246 this.exec(script);
1247 MessageBox.Show("Press H for aimbot, Press Right Alt for ESP!");
1248 }
1249
1250 // Token: 0x060000B3 RID: 179 RVA: 0x00003FF4 File Offset: 0x000021F4
1251 private void pictureBox75_Click(object sender, EventArgs e)
1252 {
1253 string script = this.webLoader.DownloadString("https://pastebin.com/raw/6qZutRWW");
1254 this.exec(script);
1255 }
1256
1257 // Token: 0x060000B4 RID: 180 RVA: 0x000024D0 File Offset: 0x000006D0
1258 private void label78_Click(object sender, EventArgs e)
1259 {
1260 Process.Start("https://www.roblox.com/games/71315343/SALE-Dragon-Ball-Rage");
1261 }
1262
1263 // Token: 0x060000B5 RID: 181 RVA: 0x000024DD File Offset: 0x000006DD
1264 private void label79_Click(object sender, EventArgs e)
1265 {
1266 Process.Start("https://www.roblox.com/games/891539556/Faction-Defence-Tycoon");
1267 }
1268
1269 // Token: 0x060000B6 RID: 182 RVA: 0x0000401C File Offset: 0x0000221C
1270 private void pictureBox76_Click(object sender, EventArgs e)
1271 {
1272 string script = this.webLoader.DownloadString("https://pastebin.com/raw/FuDnSAvn");
1273 this.exec(script);
1274 MessageBox.Show("After executing, it should give you max money!");
1275 }
1276
1277 // Token: 0x060000B7 RID: 183 RVA: 0x000024EA File Offset: 0x000006EA
1278 private void label80_Click(object sender, EventArgs e)
1279 {
1280 Process.Start("https://www.roblox.com/games/2788229376/Da-Hood-CHRISTMAS");
1281 }
1282
1283 // Token: 0x060000B8 RID: 184 RVA: 0x0000404C File Offset: 0x0000224C
1284 private void pictureBox77_Click(object sender, EventArgs e)
1285 {
1286 string script = this.webLoader.DownloadString("https://pastebin.com/raw/GZWNs9uv");
1287 this.exec(script);
1288 }
1289
1290 // Token: 0x060000B9 RID: 185 RVA: 0x000024F7 File Offset: 0x000006F7
1291 private void label81_Click(object sender, EventArgs e)
1292 {
1293 Process.Start("https://www.roblox.com/games/1760932596/THANOS-IS-EATING-EVERYTHING");
1294 }
1295
1296 // Token: 0x060000BA RID: 186 RVA: 0x00004074 File Offset: 0x00002274
1297 private void pictureBox78_Click(object sender, EventArgs e)
1298 {
1299 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Xrqjaz3c");
1300 this.exec(script);
1301 MessageBox.Show("After executing, it should give you max money and damage!");
1302 }
1303
1304 // Token: 0x060000BB RID: 187 RVA: 0x00002504 File Offset: 0x00000704
1305 private void label82_Click(object sender, EventArgs e)
1306 {
1307 Process.Start("https://www.roblox.com/games/3788547128/THE-GRINCH-Dr-Seuss-Simulator");
1308 }
1309
1310 // Token: 0x060000BC RID: 188 RVA: 0x000040A4 File Offset: 0x000022A4
1311 private void pictureBox79_Click(object sender, EventArgs e)
1312 {
1313 string script = this.webLoader.DownloadString("https://pastebin.com/raw/U6fBzFf2");
1314 this.exec(script);
1315 MessageBox.Show("After executing, it should auto farm knowledge!");
1316 }
1317
1318 // Token: 0x060000BD RID: 189 RVA: 0x00002511 File Offset: 0x00000711
1319 private void label83_Click(object sender, EventArgs e)
1320 {
1321 Process.Start("https://www.roblox.com/games/4316736353/Extreme-Sprinting-Simulator");
1322 }
1323
1324 // Token: 0x060000BE RID: 190 RVA: 0x000040D4 File Offset: 0x000022D4
1325 private void pictureBox80_Click(object sender, EventArgs e)
1326 {
1327 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Ti1r7tWn");
1328 this.exec(script);
1329 }
1330
1331 // Token: 0x060000BF RID: 191 RVA: 0x0000251E File Offset: 0x0000071E
1332 private void label84_Click(object sender, EventArgs e)
1333 {
1334 Process.Start("https://www.roblox.com/games/621129760/KAT");
1335 }
1336
1337 // Token: 0x060000C0 RID: 192 RVA: 0x000040FC File Offset: 0x000022FC
1338 private void pictureBox81_Click(object sender, EventArgs e)
1339 {
1340 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YUFXcCWU");
1341 this.exec(script);
1342 MessageBox.Show("Aimbot Key is Left Control");
1343 }
1344
1345 // Token: 0x060000C1 RID: 193 RVA: 0x0000252B File Offset: 0x0000072B
1346 private void label85_Click(object sender, EventArgs e)
1347 {
1348 Process.Start("https://www.roblox.com/games/4546789281/NEW-Sprinting-Heroes");
1349 }
1350
1351 // Token: 0x060000C2 RID: 194 RVA: 0x0000412C File Offset: 0x0000232C
1352 private void pictureBox82_Click(object sender, EventArgs e)
1353 {
1354 string script = this.webLoader.DownloadString("https://pastebin.com/raw/LXWxj5Ld");
1355 this.exec(script);
1356 }
1357
1358 // Token: 0x060000C3 RID: 195 RVA: 0x00002538 File Offset: 0x00000738
1359 private void label86_Click(object sender, EventArgs e)
1360 {
1361 Process.Start("https://www.roblox.com/games/2096931771/PET-Donut-Story-Tycoon-Autosave");
1362 }
1363
1364 // Token: 0x060000C4 RID: 196 RVA: 0x00004154 File Offset: 0x00002354
1365 private void pictureBox83_Click(object sender, EventArgs e)
1366 {
1367 string script = this.webLoader.DownloadString("https://pastebin.com/raw/7vSsPyMq");
1368 this.exec(script);
1369 MessageBox.Show("After executing, you should have MAX MONEY");
1370 }
1371
1372 // Token: 0x060000C5 RID: 197 RVA: 0x00002545 File Offset: 0x00000745
1373 private void label87_Click(object sender, EventArgs e)
1374 {
1375 Process.Start("https://www.roblox.com/games/1382113806/Silent-Assassin");
1376 }
1377
1378 // Token: 0x060000C6 RID: 198 RVA: 0x00004184 File Offset: 0x00002384
1379 private void pictureBox84_Click(object sender, EventArgs e)
1380 {
1381 string script = this.webLoader.DownloadString("https://pastebin.com/raw/tYLm4Fcu");
1382 this.exec(script);
1383 }
1384
1385 // Token: 0x060000C7 RID: 199 RVA: 0x00002552 File Offset: 0x00000752
1386 private void label88_Click(object sender, EventArgs e)
1387 {
1388 Process.Start("https://www.roblox.com/games/4535346003/NEW-Wing-Simulator");
1389 }
1390
1391 // Token: 0x060000C8 RID: 200 RVA: 0x000041AC File Offset: 0x000023AC
1392 private void pictureBox85_Click(object sender, EventArgs e)
1393 {
1394 string script = this.webLoader.DownloadString("https://ghostbin.co/paste/gvf4h/raw");
1395 this.exec(script);
1396 MessageBox.Show("After executing, coins will teleport to you. If it stops, re execute");
1397 }
1398
1399 // Token: 0x060000C9 RID: 201 RVA: 0x0000255F File Offset: 0x0000075F
1400 private void label89_Click(object sender, EventArgs e)
1401 {
1402 Process.Start("https://www.roblox.com/games/3284973063/GCW-The-Galactic-Conquest");
1403 }
1404
1405 // Token: 0x060000CA RID: 202 RVA: 0x000041DC File Offset: 0x000023DC
1406 private void pictureBox86_Click(object sender, EventArgs e)
1407 {
1408 string script = this.webLoader.DownloadString("http://scripts.caslus.xyz/galactic_conquest.lua");
1409 this.exec(script);
1410 }
1411
1412 // Token: 0x060000CB RID: 203 RVA: 0x0000256C File Offset: 0x0000076C
1413 private void label90_Click(object sender, EventArgs e)
1414 {
1415 Process.Start("https://www.roblox.com/games/4418413996/Monster-Simulator-FINAL-TESTING-DAY");
1416 }
1417
1418 // Token: 0x060000CC RID: 204 RVA: 0x00004204 File Offset: 0x00002404
1419 private void pictureBox87_Click(object sender, EventArgs e)
1420 {
1421 string script = this.webLoader.DownloadString("http://scripts.caslus.xyz/monster_simulator.lua");
1422 this.exec(script);
1423 }
1424
1425 // Token: 0x060000CD RID: 205 RVA: 0x00002579 File Offset: 0x00000779
1426 private void label91_Click(object sender, EventArgs e)
1427 {
1428 Process.Start("https://www.roblox.com/games/738339342/Flood-Escape-2");
1429 }
1430
1431 // Token: 0x060000CE RID: 206 RVA: 0x0000422C File Offset: 0x0000242C
1432 private void pictureBox88_Click(object sender, EventArgs e)
1433 {
1434 string script = this.webLoader.DownloadString("https://pastebin.com/raw/vnNahdQh");
1435 this.exec(script);
1436 }
1437
1438 // Token: 0x060000CF RID: 207 RVA: 0x00002586 File Offset: 0x00000786
1439 private void label92_Click(object sender, EventArgs e)
1440 {
1441 Process.Start("https://www.roblox.com/games/2577423786/JOKER-BOSS-Superhero-Simulator");
1442 }
1443
1444 // Token: 0x060000D0 RID: 208 RVA: 0x00004254 File Offset: 0x00002454
1445 private void pictureBox89_Click(object sender, EventArgs e)
1446 {
1447 string script = this.webLoader.DownloadString("https://pastebin.com/raw/RxBVpBhK");
1448 this.exec(script);
1449 }
1450
1451 // Token: 0x060000D1 RID: 209 RVA: 0x00002593 File Offset: 0x00000793
1452 private void label93_Click(object sender, EventArgs e)
1453 {
1454 Process.Start("https://www.roblox.com/games/33865710/The-Really-Easy-Obby");
1455 }
1456
1457 // Token: 0x060000D2 RID: 210 RVA: 0x0000427C File Offset: 0x0000247C
1458 private void pictureBox90_Click(object sender, EventArgs e)
1459 {
1460 string script = this.webLoader.DownloadString("https://pastebin.com/raw/jwM4QgHr");
1461 this.exec(script);
1462 MessageBox.Show("After executing, it should autofarm for you");
1463 }
1464
1465 // Token: 0x060000D3 RID: 211 RVA: 0x000025A0 File Offset: 0x000007A0
1466 private void label94_Click(object sender, EventArgs e)
1467 {
1468 Process.Start("https://web.roblox.com/games/1976838656/Huge-Update-Demon-Slayer-Retribution-ALPHA");
1469 }
1470
1471 // Token: 0x060000D4 RID: 212 RVA: 0x000042AC File Offset: 0x000024AC
1472 private void pictureBox91_Click(object sender, EventArgs e)
1473 {
1474 string script = this.webLoader.DownloadString("https://pastebin.com/raw/WrCXreRn");
1475 this.exec(script);
1476 }
1477
1478 // Token: 0x060000D5 RID: 213 RVA: 0x000021A8 File Offset: 0x000003A8
1479 private void panel95_Paint(object sender, PaintEventArgs e)
1480 {
1481 }
1482
1483 // Token: 0x060000D6 RID: 214 RVA: 0x000025AD File Offset: 0x000007AD
1484 private void label95_Click(object sender, EventArgs e)
1485 {
1486 Process.Start("https://web.roblox.com/games/4267085951/Mineverse-Beta");
1487 }
1488
1489 // Token: 0x060000D7 RID: 215 RVA: 0x000042D4 File Offset: 0x000024D4
1490 private void pictureBox92_Click(object sender, EventArgs e)
1491 {
1492 string script = this.webLoader.DownloadString("https://pastebin.com/raw/jwM4QgHr");
1493 this.exec(script);
1494 MessageBox.Show("For the Xray : Iron Ore - Yellow, Coal Ore - Green, Diamond Ore - Blue");
1495 }
1496
1497 // Token: 0x060000D8 RID: 216 RVA: 0x000025BA File Offset: 0x000007BA
1498 private void label96_Click(object sender, EventArgs e)
1499 {
1500 Process.Start("https://web.roblox.com/games/4528239858/2x-GRASS-BEE-ISLAND-Lawn-Mowing-Simulator");
1501 }
1502
1503 // Token: 0x060000D9 RID: 217 RVA: 0x00004304 File Offset: 0x00002504
1504 private void pictureBox93_Click(object sender, EventArgs e)
1505 {
1506 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YjAvvzzS");
1507 this.exec(script);
1508 }
1509
1510 // Token: 0x060000DA RID: 218 RVA: 0x000025C7 File Offset: 0x000007C7
1511 private void label97_Click(object sender, EventArgs e)
1512 {
1513 Process.Start("https://web.roblox.com/games/4368069325/NEW-Building-Simulator-2");
1514 }
1515
1516 // Token: 0x060000DB RID: 219 RVA: 0x0000432C File Offset: 0x0000252C
1517 private void pictureBox94_Click(object sender, EventArgs e)
1518 {
1519 string script = this.webLoader.DownloadString("https://pastebin.com/raw/hc3d2CAH");
1520 this.exec(script);
1521 }
1522
1523 // Token: 0x060000DC RID: 220 RVA: 0x000021A8 File Offset: 0x000003A8
1524 private void execPage_Click(object sender, EventArgs e)
1525 {
1526 }
1527
1528 // Token: 0x060000DD RID: 221 RVA: 0x000021A8 File Offset: 0x000003A8
1529 private void button10_Click(object sender, EventArgs e)
1530 {
1531 }
1532
1533 // Token: 0x060000DE RID: 222 RVA: 0x000020BC File Offset: 0x000002BC
1534 private void button11_Click(object sender, EventArgs e)
1535 {
1536 this.api.LaunchExploit();
1537 }
1538
1539 // Token: 0x060000DF RID: 223 RVA: 0x000025D4 File Offset: 0x000007D4
1540 private void button10_Click_1(object sender, EventArgs e)
1541 {
1542 Process.Start("http://bit.ly/2siCVAY");
1543 }
1544
1545 // Token: 0x060000E0 RID: 224 RVA: 0x000025E1 File Offset: 0x000007E1
1546 private void label98_Click(object sender, EventArgs e)
1547 {
1548 Process.Start("https://web.roblox.com/games/1899149341/Vehicle-Tycoon");
1549 }
1550
1551 // Token: 0x060000E1 RID: 225 RVA: 0x00004354 File Offset: 0x00002554
1552 private void pictureBox95_Click(object sender, EventArgs e)
1553 {
1554 string script = this.webLoader.DownloadString("https://pastebin.com/raw/0G2JeB2p");
1555 this.exec(script);
1556 MessageBox.Show("SPAWN A CAR AND GET INTO IT BEFORE EXECUTING THE SCRIPT!");
1557 }
1558
1559 // Token: 0x060000E2 RID: 226 RVA: 0x000025EE File Offset: 0x000007EE
1560 private void label99_Click(object sender, EventArgs e)
1561 {
1562 Process.Start("https://web.roblox.com/games/3095204897/Isle-8");
1563 }
1564
1565 // Token: 0x060000E3 RID: 227 RVA: 0x00004384 File Offset: 0x00002584
1566 private void pictureBox96_Click(object sender, EventArgs e)
1567 {
1568 string script = this.webLoader.DownloadString("https://pastebin.com/raw/TXra9Typ");
1569 this.exec(script);
1570 }
1571
1572 // Token: 0x060000E4 RID: 228 RVA: 0x000043AC File Offset: 0x000025AC
1573 private void button12_Click(object sender, EventArgs e)
1574 {
1575 string script = this.webLoader.DownloadString("https://pastebin.com/raw/3mdjJHTg");
1576 this.exec(script);
1577 MessageBox.Show("Type ''cmds'' in the bar to see all the commands");
1578 }
1579
1580 // Token: 0x060000E5 RID: 229 RVA: 0x000025FB File Offset: 0x000007FB
1581 private void label96_Click_1(object sender, EventArgs e)
1582 {
1583 Process.Start("https://www.roblox.com/games/4554189264/Heroes-of-Speed");
1584 }
1585
1586 // Token: 0x060000E6 RID: 230 RVA: 0x000043DC File Offset: 0x000025DC
1587 private void pictureBox93_Click_1(object sender, EventArgs e)
1588 {
1589 string script = this.webLoader.DownloadString("https://pastebin.com/raw/YqHXkVh4");
1590 this.exec(script);
1591 }
1592
1593 // Token: 0x060000E7 RID: 231 RVA: 0x00002608 File Offset: 0x00000808
1594 private void label100_Click(object sender, EventArgs e)
1595 {
1596 Process.Start("https://www.roblox.com/games/4502746301/Bow-Simulator-UPDATE");
1597 }
1598
1599 // Token: 0x060000E8 RID: 232 RVA: 0x00004404 File Offset: 0x00002604
1600 private void pictureBox97_Click(object sender, EventArgs e)
1601 {
1602 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Ba9PnUXA");
1603 this.exec(script);
1604 }
1605
1606 // Token: 0x060000E9 RID: 233 RVA: 0x00002615 File Offset: 0x00000815
1607 private void label101_Click(object sender, EventArgs e)
1608 {
1609 Process.Start("https://www.roblox.com/games/4520749081/King-Piece-Alpha-5-5");
1610 }
1611
1612 // Token: 0x060000EA RID: 234 RVA: 0x0000442C File Offset: 0x0000262C
1613 private void pictureBox98_Click(object sender, EventArgs e)
1614 {
1615 string script = this.webLoader.DownloadString("https://pastebin.com/raw/xMCwJh8g");
1616 this.exec(script);
1617 }
1618
1619 // Token: 0x060000EB RID: 235 RVA: 0x00002622 File Offset: 0x00000822
1620 private void label16_Click_1(object sender, EventArgs e)
1621 {
1622 Process.Start("https://www.roblox.com/games/4528239858/x10-MONEY-EVOLVING-Lawn-Mowing-Simulator");
1623 }
1624
1625 // Token: 0x060000EC RID: 236 RVA: 0x00004454 File Offset: 0x00002654
1626 private void pictureBox99_Click(object sender, EventArgs e)
1627 {
1628 string script = this.webLoader.DownloadString("https://pastebin.com/raw/CGWuQyqt");
1629 this.exec(script);
1630 }
1631
1632 // Token: 0x060000ED RID: 237 RVA: 0x0000447C File Offset: 0x0000267C
1633 private void pictureBox100_Click(object sender, EventArgs e)
1634 {
1635 string script = this.webLoader.DownloadString("https://pastebin.com/raw/AW2jNtkg");
1636 this.exec(script);
1637 }
1638
1639 // Token: 0x060000EE RID: 238 RVA: 0x0000262F File Offset: 0x0000082F
1640 private void label102_Click(object sender, EventArgs e)
1641 {
1642 Process.Start("https://www.roblox.com/games/4520749081/King-Piece-Alpha-7");
1643 }
1644
1645 // Token: 0x060000EF RID: 239 RVA: 0x0000263C File Offset: 0x0000083C
1646 private void label101_Click_1(object sender, EventArgs e)
1647 {
1648 Process.Start("https://www.roblox.com/games/662417684/LUCKY-BLOCK-Battlegrounds");
1649 }
1650
1651 // Token: 0x060000F0 RID: 240 RVA: 0x000044A4 File Offset: 0x000026A4
1652 private void pictureBox98_Click_1(object sender, EventArgs e)
1653 {
1654 string script = this.webLoader.DownloadString("https://pastebin.com/raw/ZkuQ7uwz");
1655 this.exec(script);
1656 MessageBox.Show("Re execute after you die, check your backpack for more gears!");
1657 }
1658
1659 // Token: 0x060000F1 RID: 241 RVA: 0x000044D4 File Offset: 0x000026D4
1660 private void listBox1_DoubleClick(object sender, EventArgs e)
1661 {
1662 object selectedItem = this.listBox1.SelectedItem;
1663 if (selectedItem != null)
1664 {
1665 if (File.Exists(Application.StartupPath + "\\scripts\\" + selectedItem.ToString()))
1666 {
1667 string text = File.ReadAllText(Application.StartupPath + "\\scripts\\" + selectedItem.ToString());
1668 HtmlDocument document = this.Monaco.Document;
1669 string scriptName = "SetText";
1670 object[] array = new string[]
1671 {
1672 text
1673 };
1674 object[] args = array;
1675 document.InvokeScript(scriptName, args);
1676 return;
1677 }
1678 this.listBox1.Items.Remove(this.listBox1.SelectedItem);
1679 }
1680 }
1681
1682 // Token: 0x060000F2 RID: 242 RVA: 0x00004570 File Offset: 0x00002770
1683 private void listBox1_MouseUp(object sender, MouseEventArgs e)
1684 {
1685 if (e.Button == MouseButtons.Right)
1686 {
1687 ContextMenu contextMenu = new ContextMenu();
1688 MenuItem menuItem = new MenuItem();
1689 menuItem.Text = "&Refresh";
1690 contextMenu.MenuItems.Add(menuItem);
1691 menuItem.Click += this.refresh_Click;
1692 contextMenu.Show(this, new Point(e.X + base.Width - 280, e.Y + 25));
1693 }
1694 }
1695
1696 // Token: 0x060000F3 RID: 243 RVA: 0x00002649 File Offset: 0x00000849
1697 private void refresh_Click(object sender, EventArgs e)
1698 {
1699 this.scriptBoxLoad();
1700 }
1701
1702 // Token: 0x060000F4 RID: 244 RVA: 0x000021A8 File Offset: 0x000003A8
1703 private void scriptHub_Click(object sender, EventArgs e)
1704 {
1705 }
1706
1707 // Token: 0x060000F5 RID: 245 RVA: 0x00002651 File Offset: 0x00000851
1708 private void label103_Click(object sender, EventArgs e)
1709 {
1710 Process.Start("https://www.roblox.com/games/3475397644/WINTER-EVENT-Dragon-Adventures#!/about");
1711 }
1712
1713 // Token: 0x060000F6 RID: 246 RVA: 0x000045E8 File Offset: 0x000027E8
1714 private void pictureBox101_Click(object sender, EventArgs e)
1715 {
1716 string script = this.webLoader.DownloadString("https://pastebin.com/raw/6hy0nZLq");
1717 this.exec(script);
1718 }
1719
1720 // Token: 0x060000F7 RID: 247 RVA: 0x00004610 File Offset: 0x00002810
1721 private void pictureBox102_Click(object sender, EventArgs e)
1722 {
1723 string script = this.webLoader.DownloadString("https://pastebin.com/raw/MYXEidCP");
1724 this.exec(script);
1725 }
1726
1727 // Token: 0x060000F8 RID: 248 RVA: 0x0000265E File Offset: 0x0000085E
1728 private void label104_Click(object sender, EventArgs e)
1729 {
1730 Process.Start("https://web.roblox.com/games/4325400580/Army-Tycoon");
1731 }
1732
1733 // Token: 0x060000F9 RID: 249 RVA: 0x0000266B File Offset: 0x0000086B
1734 private void label105_Click(object sender, EventArgs e)
1735 {
1736 Process.Start("https://web.roblox.com/games/4330397559/NEW-Viking-Simulator");
1737 }
1738
1739 // Token: 0x060000FA RID: 250 RVA: 0x00004638 File Offset: 0x00002838
1740 private void pictureBox103_Click(object sender, EventArgs e)
1741 {
1742 string script = this.webLoader.DownloadString("https://pastebin.com/raw/jg7fkmwa");
1743 this.exec(script);
1744 }
1745
1746 // Token: 0x060000FB RID: 251 RVA: 0x00002678 File Offset: 0x00000878
1747 private void label106_Click(object sender, EventArgs e)
1748 {
1749 Process.Start("https://web.roblox.com/games/2512643572/CIRCUS-Bubble-Gum-Simulator");
1750 }
1751
1752 // Token: 0x060000FC RID: 252 RVA: 0x00004660 File Offset: 0x00002860
1753 private void pictureBox104_Click(object sender, EventArgs e)
1754 {
1755 string script = this.webLoader.DownloadString("https://pastebin.com/raw/4XSEyeag");
1756 this.exec(script);
1757 MessageBox.Show("Currently, only earth works!", "Furk", MessageBoxButtons.OK);
1758 }
1759
1760 // Token: 0x060000FD RID: 253 RVA: 0x00002685 File Offset: 0x00000885
1761 private void label107_Click(object sender, EventArgs e)
1762 {
1763 Process.Start("https://web.roblox.com/games/619566565/Grandmas-House-Obby");
1764 }
1765
1766 // Token: 0x060000FE RID: 254 RVA: 0x00004698 File Offset: 0x00002898
1767 private void pictureBox105_Click(object sender, EventArgs e)
1768 {
1769 string script = this.webLoader.DownloadString("https://pastebin.com/raw/SN4HKY7y");
1770 this.exec(script);
1771 }
1772
1773 // Token: 0x060000FF RID: 255 RVA: 0x000046C0 File Offset: 0x000028C0
1774 private void button11_Click_1(object sender, EventArgs e)
1775 {
1776 this.button11.Enabled = false;
1777 this.button11.Enabled = true;
1778 DialogResult dialogResult = MessageBox.Show("Are you sure you want to reinstall ROBLOX?", "Furk OS", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
1779 if (DialogResult.Yes == dialogResult)
1780 {
1781 MessageBox.Show("Roblox is now reinstalling!\nThis could take a while, please wait patiently.", "Furk OS", MessageBoxButtons.OK);
1782 try
1783 {
1784 Process[] processesByName = Process.GetProcessesByName("RobloxPlayerBeta");
1785 for (int i = 0; i < processesByName.Length; i++)
1786 {
1787 processesByName[i].Kill();
1788 }
1789 }
1790 catch (Exception value)
1791 {
1792 MessageBox.Show(Convert.ToString(value), "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);
1793 }
1794 try
1795 {
1796 Directory.SetCurrentDirectory(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86));
1797 if (Directory.Exists("Roblox"))
1798 {
1799 Directory.Delete("Roblox", true);
1800 }
1801 }
1802 catch
1803 {
1804 }
1805 try
1806 {
1807 Directory.SetCurrentDirectory(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData));
1808 if (Directory.Exists("Roblox"))
1809 {
1810 Directory.Delete("Roblox", true);
1811 }
1812 if (File.Exists("Installer.exe"))
1813 {
1814 File.Delete("Installer.exe");
1815 }
1816 }
1817 catch
1818 {
1819 }
1820 new WebClient().DownloadFile("http://setup.roblox.com/RobloxPlayerLauncher.exe", "Installer.exe");
1821 Process.Start("Installer.exe");
1822 }
1823 }
1824
1825 // Token: 0x06000100 RID: 256 RVA: 0x00002692 File Offset: 0x00000892
1826 private void label108_Click(object sender, EventArgs e)
1827 {
1828 Process.Start("https://web.roblox.com/games/3264958220/Horror-Tycoon");
1829 }
1830
1831 // Token: 0x06000101 RID: 257 RVA: 0x000047F8 File Offset: 0x000029F8
1832 private void pictureBox106_Click(object sender, EventArgs e)
1833 {
1834 string script = this.webLoader.DownloadString("https://pastebin.com/raw/uUZAgkAr");
1835 this.exec(script);
1836 }
1837
1838 // Token: 0x06000102 RID: 258 RVA: 0x0000269F File Offset: 0x0000089F
1839 private void label109_Click(object sender, EventArgs e)
1840 {
1841 Process.Start("https://web.roblox.com/games/70005410/Blox-Hunt-v2-7-10-Winter");
1842 }
1843
1844 // Token: 0x06000103 RID: 259 RVA: 0x00004820 File Offset: 0x00002A20
1845 private void pictureBox107_Click(object sender, EventArgs e)
1846 {
1847 string script = this.webLoader.DownloadString("https://pastebin.com/raw/fdmUSpb2");
1848 this.exec(script);
1849 }
1850
1851 // Token: 0x06000104 RID: 260 RVA: 0x000026AC File Offset: 0x000008AC
1852 private void label110_Click(object sender, EventArgs e)
1853 {
1854 Process.Start("https://www.roblox.com/games/2577423786/ADMIN-UPDATE-Superhero-Simulator");
1855 }
1856
1857 // Token: 0x06000105 RID: 261 RVA: 0x00004848 File Offset: 0x00002A48
1858 private void pictureBox108_Click(object sender, EventArgs e)
1859 {
1860 string script = this.webLoader.DownloadString("https://pastebin.com/raw/ki1dmHd8");
1861 this.exec(script);
1862 }
1863
1864 // Token: 0x06000106 RID: 262 RVA: 0x000026B9 File Offset: 0x000008B9
1865 private void label111_Click(object sender, EventArgs e)
1866 {
1867 Process.Start("https://www.roblox.com/games/4580204640/NEW-KILLERS-Survive-the-Killer");
1868 }
1869
1870 // Token: 0x06000107 RID: 263 RVA: 0x00004870 File Offset: 0x00002A70
1871 private void pictureBox109_Click(object sender, EventArgs e)
1872 {
1873 string script = this.webLoader.DownloadString("https://pastebin.com/raw/5WxCNcpU");
1874 this.exec(script);
1875 }
1876
1877 // Token: 0x06000108 RID: 264 RVA: 0x000026C6 File Offset: 0x000008C6
1878 private void label112_Click(object sender, EventArgs e)
1879 {
1880 Process.Start("https://www.roblox.com/games/4458447460/Shadow-The-World-A-Modded-Day");
1881 }
1882
1883 // Token: 0x06000109 RID: 265 RVA: 0x00004898 File Offset: 0x00002A98
1884 private void pictureBox110_Click(object sender, EventArgs e)
1885 {
1886 string script = this.webLoader.DownloadString("https://paste.ee/r/zuktL/0");
1887 this.exec(script);
1888 }
1889
1890 // Token: 0x0600010A RID: 266 RVA: 0x000026D3 File Offset: 0x000008D3
1891 private void label92_Click_1(object sender, EventArgs e)
1892 {
1893 Process.Start("https://www.roblox.com/games/4317347865/PHONE-Murder-Mystery-3");
1894 }
1895
1896 // Token: 0x0600010B RID: 267 RVA: 0x000048C0 File Offset: 0x00002AC0
1897 private void pictureBox89_Click_1(object sender, EventArgs e)
1898 {
1899 string script = this.webLoader.DownloadString("https://pastebin.com/raw/E6bXGQSn");
1900 this.exec(script);
1901 }
1902
1903 // Token: 0x0600010C RID: 268 RVA: 0x000026E0 File Offset: 0x000008E0
1904 private void label113_Click(object sender, EventArgs e)
1905 {
1906 Process.Start("https://www.roblox.com/games/648362523/Breaking-Point");
1907 }
1908
1909 // Token: 0x0600010D RID: 269 RVA: 0x000048E8 File Offset: 0x00002AE8
1910 private void pictureBox111_Click(object sender, EventArgs e)
1911 {
1912 string script = this.webLoader.DownloadString("https://pastebin.com/raw/MLPypHYv");
1913 this.exec(script);
1914 }
1915
1916 // Token: 0x0600010E RID: 270 RVA: 0x000026ED File Offset: 0x000008ED
1917 private void label114_Click(object sender, EventArgs e)
1918 {
1919 Process.Start("https://www.roblox.com/games/4519672226/Egg-Clicker");
1920 }
1921
1922 // Token: 0x0600010F RID: 271 RVA: 0x00004910 File Offset: 0x00002B10
1923 private void pictureBox112_Click(object sender, EventArgs e)
1924 {
1925 string script = this.webLoader.DownloadString("https://pastebin.com/raw/8XdJC2iX");
1926 this.exec(script);
1927 }
1928
1929 // Token: 0x06000110 RID: 272 RVA: 0x000026FA File Offset: 0x000008FA
1930 private void label115_Click(object sender, EventArgs e)
1931 {
1932 Process.Start("https://www.roblox.com/games/4399032158/Thick-Legends");
1933 }
1934
1935 // Token: 0x06000111 RID: 273 RVA: 0x00004938 File Offset: 0x00002B38
1936 private void pictureBox113_Click(object sender, EventArgs e)
1937 {
1938 string script = this.webLoader.DownloadString("https://pastebin.com/raw/Ptrnnf3D");
1939 this.exec(script);
1940 }
1941
1942 // Token: 0x06000112 RID: 274 RVA: 0x00002707 File Offset: 0x00000907
1943 private void label116_Click(object sender, EventArgs e)
1944 {
1945 Process.Start("https://www.roblox.com/games/2693739238/THIEF-LIFE-Simulator");
1946 }
1947
1948 // Token: 0x06000113 RID: 275 RVA: 0x00004960 File Offset: 0x00002B60
1949 private void pictureBox114_Click(object sender, EventArgs e)
1950 {
1951 string script = this.webLoader.DownloadString("https://pastebin.com/raw/6sA8kvmm");
1952 this.exec(script);
1953 }
1954
1955 // Token: 0x06000114 RID: 276 RVA: 0x00002714 File Offset: 0x00000914
1956 private void label117_Click(object sender, EventArgs e)
1957 {
1958 Process.Start("https://www.roblox.com/games/23578803/Hotel-Elephant");
1959 }
1960
1961 // Token: 0x06000115 RID: 277 RVA: 0x00004988 File Offset: 0x00002B88
1962 private void pictureBox115_Click(object sender, EventArgs e)
1963 {
1964 string script = this.webLoader.DownloadString("https://pastebin.com/raw/2XxY4tLJ");
1965 this.exec(script);
1966 }
1967
1968 // Token: 0x06000116 RID: 278 RVA: 0x000049B0 File Offset: 0x00002BB0
1969 private void pictureBox116_Click(object sender, EventArgs e)
1970 {
1971 string script = this.webLoader.DownloadString("https://pastebin.com/raw/MghRgHnM");
1972 this.exec(script);
1973 }
1974
1975 // Token: 0x06000117 RID: 279 RVA: 0x00002721 File Offset: 0x00000921
1976 private void label118_Click(object sender, EventArgs e)
1977 {
1978 Process.Start("https://www.roblox.com/games/2990100290/2X-EXP-RPG-Simulator-UPDATE-8");
1979 }
1980
1981 // Token: 0x06000118 RID: 280 RVA: 0x0000272E File Offset: 0x0000092E
1982 private void label119_Click(object sender, EventArgs e)
1983 {
1984 Process.Start("https://www.roblox.com/games/1111083356/Robot-64-Import-levels");
1985 }
1986
1987 // Token: 0x06000119 RID: 281 RVA: 0x000049D8 File Offset: 0x00002BD8
1988 private void pictureBox117_Click(object sender, EventArgs e)
1989 {
1990 string script = this.webLoader.DownloadString("https://pastebin.com/raw/jv5tV9Ff");
1991 this.exec(script);
1992 }
1993
1994 // Token: 0x0600011A RID: 282 RVA: 0x00004A00 File Offset: 0x00002C00
1995 private void pictureBox118_Click(object sender, EventArgs e)
1996 {
1997 string script = this.webLoader.DownloadString("https://pastebin.com/raw/h9mgPtyE");
1998 this.exec(script);
1999 }
2000
2001 // Token: 0x0600011B RID: 283 RVA: 0x0000273B File Offset: 0x0000093B
2002 private void label120_Click(object sender, EventArgs e)
2003 {
2004 Process.Start("https://www.roblox.com/games/2866967438/Fishing-Simulator?nl=true");
2005 }
2006
2007 // Token: 0x0600011C RID: 284 RVA: 0x00002748 File Offset: 0x00000948
2008 private void label121_Click(object sender, EventArgs e)
2009 {
2010 Process.Start("https://www.roblox.com/games/3101667897/Legends-Of-Speed");
2011 }
2012
2013 // Token: 0x0600011D RID: 285 RVA: 0x00004A28 File Offset: 0x00002C28
2014 private void pictureBox119_Click(object sender, EventArgs e)
2015 {
2016 string script = this.webLoader.DownloadString("https://pastebin.com/raw/wZsEjz5E");
2017 this.exec(script);
2018 }
2019
2020 // Token: 0x0600011E RID: 286 RVA: 0x00002755 File Offset: 0x00000955
2021 private void label122_Click(object sender, EventArgs e)
2022 {
2023 Process.Start("https://www.roblox.com/games/2571965166/Billionaire-Simulator");
2024 }
2025
2026 // Token: 0x0600011F RID: 287 RVA: 0x00002762 File Offset: 0x00000962
2027 protected override void Dispose(bool disposing)
2028 {
2029 if (disposing && this.components != null)
2030 {
2031 this.components.Dispose();
2032 }
2033 base.Dispose(disposing);
2034 }
2035
2036 // Token: 0x06000120 RID: 288 RVA: 0x00004A50 File Offset: 0x00002C50
2037 private void InitializeComponent()
2038 {
2039 this.components = new Container();
2040 ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(Form1));
2041 this.topBar = new Panel();
2042 this.label3 = new Label();
2043 this.label2 = new Label();
2044 this.label1 = new Label();
2045 this.pictureBox1 = new PictureBox();
2046 this.button5 = new Button();
2047 this.border3 = new Panel();
2048 this.border1 = new Panel();
2049 this.border2 = new Panel();
2050 this.furkTabs = new TabControl();
2051 this.execPage = new TabPage();
2052 this.listBox1 = new ListBox();
2053 this.button10 = new Button();
2054 this.button8 = new Button();
2055 this.button6 = new Button();
2056 this.button3 = new Button();
2057 this.button4 = new Button();
2058 this.button1 = new Button();
2059 this.Monaco = new WebBrowser();
2060 this.button2 = new Button();
2061 this.scriptHub = new TabPage();
2062 this.button11 = new Button();
2063 this.button9 = new Button();
2064 this.flowLayoutPanel1 = new FlowLayoutPanel();
2065 this.panel6 = new Panel();
2066 this.label5 = new Label();
2067 this.pictureBox3 = new PictureBox();
2068 this.panel5 = new Panel();
2069 this.pictureBox4 = new PictureBox();
2070 this.label4 = new Label();
2071 this.panel7 = new Panel();
2072 this.pictureBox5 = new PictureBox();
2073 this.label6 = new Label();
2074 this.panel8 = new Panel();
2075 this.pictureBox6 = new PictureBox();
2076 this.label7 = new Label();
2077 this.panel9 = new Panel();
2078 this.pictureBox7 = new PictureBox();
2079 this.label8 = new Label();
2080 this.panel10 = new Panel();
2081 this.pictureBox8 = new PictureBox();
2082 this.label9 = new Label();
2083 this.panel11 = new Panel();
2084 this.pictureBox9 = new PictureBox();
2085 this.label10 = new Label();
2086 this.panel12 = new Panel();
2087 this.label11 = new Label();
2088 this.pictureBox10 = new PictureBox();
2089 this.panel13 = new Panel();
2090 this.label12 = new Label();
2091 this.pictureBox11 = new PictureBox();
2092 this.panel14 = new Panel();
2093 this.label13 = new Label();
2094 this.pictureBox12 = new PictureBox();
2095 this.panel20 = new Panel();
2096 this.label21 = new Label();
2097 this.pictureBox17 = new PictureBox();
2098 this.panel19 = new Panel();
2099 this.label20 = new Label();
2100 this.pictureBox16 = new PictureBox();
2101 this.panel18 = new Panel();
2102 this.label19 = new Label();
2103 this.pictureBox15 = new PictureBox();
2104 this.panel17 = new Panel();
2105 this.label18 = new Label();
2106 this.pictureBox2 = new PictureBox();
2107 this.panel15 = new Panel();
2108 this.label14 = new Label();
2109 this.pictureBox14 = new PictureBox();
2110 this.panel25 = new Panel();
2111 this.label26 = new Label();
2112 this.pictureBox22 = new PictureBox();
2113 this.panel23 = new Panel();
2114 this.label24 = new Label();
2115 this.pictureBox20 = new PictureBox();
2116 this.panel22 = new Panel();
2117 this.label23 = new Label();
2118 this.pictureBox19 = new PictureBox();
2119 this.panel21 = new Panel();
2120 this.label22 = new Label();
2121 this.pictureBox18 = new PictureBox();
2122 this.panel24 = new Panel();
2123 this.label25 = new Label();
2124 this.pictureBox21 = new PictureBox();
2125 this.panel16 = new Panel();
2126 this.label15 = new Label();
2127 this.pictureBox13 = new PictureBox();
2128 this.panel26 = new Panel();
2129 this.label27 = new Label();
2130 this.pictureBox23 = new PictureBox();
2131 this.panel27 = new Panel();
2132 this.label28 = new Label();
2133 this.pictureBox24 = new PictureBox();
2134 this.panel29 = new Panel();
2135 this.label30 = new Label();
2136 this.pictureBox26 = new PictureBox();
2137 this.panel30 = new Panel();
2138 this.label31 = new Label();
2139 this.pictureBox27 = new PictureBox();
2140 this.panel31 = new Panel();
2141 this.label32 = new Label();
2142 this.pictureBox28 = new PictureBox();
2143 this.panel32 = new Panel();
2144 this.label33 = new Label();
2145 this.pictureBox29 = new PictureBox();
2146 this.panel33 = new Panel();
2147 this.label34 = new Label();
2148 this.pictureBox30 = new PictureBox();
2149 this.panel34 = new Panel();
2150 this.label35 = new Label();
2151 this.pictureBox31 = new PictureBox();
2152 this.panel35 = new Panel();
2153 this.label36 = new Label();
2154 this.pictureBox32 = new PictureBox();
2155 this.panel36 = new Panel();
2156 this.label37 = new Label();
2157 this.pictureBox33 = new PictureBox();
2158 this.panel37 = new Panel();
2159 this.label38 = new Label();
2160 this.pictureBox34 = new PictureBox();
2161 this.panel38 = new Panel();
2162 this.label39 = new Label();
2163 this.pictureBox35 = new PictureBox();
2164 this.panel39 = new Panel();
2165 this.label40 = new Label();
2166 this.pictureBox36 = new PictureBox();
2167 this.panel40 = new Panel();
2168 this.label41 = new Label();
2169 this.pictureBox37 = new PictureBox();
2170 this.panel41 = new Panel();
2171 this.label42 = new Label();
2172 this.pictureBox38 = new PictureBox();
2173 this.panel42 = new Panel();
2174 this.label43 = new Label();
2175 this.pictureBox39 = new PictureBox();
2176 this.panel43 = new Panel();
2177 this.label44 = new Label();
2178 this.pictureBox40 = new PictureBox();
2179 this.panel44 = new Panel();
2180 this.label45 = new Label();
2181 this.pictureBox41 = new PictureBox();
2182 this.panel45 = new Panel();
2183 this.label46 = new Label();
2184 this.pictureBox42 = new PictureBox();
2185 this.panel46 = new Panel();
2186 this.label47 = new Label();
2187 this.pictureBox43 = new PictureBox();
2188 this.panel47 = new Panel();
2189 this.label48 = new Label();
2190 this.pictureBox44 = new PictureBox();
2191 this.panel48 = new Panel();
2192 this.label49 = new Label();
2193 this.pictureBox45 = new PictureBox();
2194 this.panel49 = new Panel();
2195 this.label50 = new Label();
2196 this.pictureBox46 = new PictureBox();
2197 this.panel50 = new Panel();
2198 this.label51 = new Label();
2199 this.pictureBox47 = new PictureBox();
2200 this.panel51 = new Panel();
2201 this.label52 = new Label();
2202 this.pictureBox48 = new PictureBox();
2203 this.panel52 = new Panel();
2204 this.label53 = new Label();
2205 this.pictureBox49 = new PictureBox();
2206 this.panel53 = new Panel();
2207 this.label54 = new Label();
2208 this.pictureBox50 = new PictureBox();
2209 this.panel54 = new Panel();
2210 this.label55 = new Label();
2211 this.pictureBox51 = new PictureBox();
2212 this.panel55 = new Panel();
2213 this.label56 = new Label();
2214 this.pictureBox52 = new PictureBox();
2215 this.panel56 = new Panel();
2216 this.label57 = new Label();
2217 this.pictureBox53 = new PictureBox();
2218 this.panel57 = new Panel();
2219 this.label58 = new Label();
2220 this.pictureBox54 = new PictureBox();
2221 this.panel60 = new Panel();
2222 this.label61 = new Label();
2223 this.pictureBox57 = new PictureBox();
2224 this.panel61 = new Panel();
2225 this.label62 = new Label();
2226 this.pictureBox58 = new PictureBox();
2227 this.panel62 = new Panel();
2228 this.label63 = new Label();
2229 this.pictureBox59 = new PictureBox();
2230 this.panel63 = new Panel();
2231 this.label64 = new Label();
2232 this.pictureBox60 = new PictureBox();
2233 this.panel64 = new Panel();
2234 this.label65 = new Label();
2235 this.pictureBox61 = new PictureBox();
2236 this.panel65 = new Panel();
2237 this.label17 = new Label();
2238 this.pictureBox62 = new PictureBox();
2239 this.panel66 = new Panel();
2240 this.label66 = new Label();
2241 this.pictureBox63 = new PictureBox();
2242 this.panel28 = new Panel();
2243 this.label29 = new Label();
2244 this.pictureBox25 = new PictureBox();
2245 this.panel58 = new Panel();
2246 this.label59 = new Label();
2247 this.pictureBox55 = new PictureBox();
2248 this.panel67 = new Panel();
2249 this.label67 = new Label();
2250 this.pictureBox64 = new PictureBox();
2251 this.panel68 = new Panel();
2252 this.label68 = new Label();
2253 this.pictureBox65 = new PictureBox();
2254 this.panel69 = new Panel();
2255 this.label69 = new Label();
2256 this.pictureBox66 = new PictureBox();
2257 this.panel70 = new Panel();
2258 this.label70 = new Label();
2259 this.pictureBox67 = new PictureBox();
2260 this.panel72 = new Panel();
2261 this.label72 = new Label();
2262 this.pictureBox69 = new PictureBox();
2263 this.panel73 = new Panel();
2264 this.label73 = new Label();
2265 this.pictureBox70 = new PictureBox();
2266 this.panel74 = new Panel();
2267 this.label74 = new Label();
2268 this.pictureBox71 = new PictureBox();
2269 this.panel75 = new Panel();
2270 this.label75 = new Label();
2271 this.pictureBox72 = new PictureBox();
2272 this.panel76 = new Panel();
2273 this.label76 = new Label();
2274 this.pictureBox73 = new PictureBox();
2275 this.panel77 = new Panel();
2276 this.label77 = new Label();
2277 this.pictureBox74 = new PictureBox();
2278 this.panel78 = new Panel();
2279 this.label78 = new Label();
2280 this.pictureBox75 = new PictureBox();
2281 this.panel79 = new Panel();
2282 this.label79 = new Label();
2283 this.pictureBox76 = new PictureBox();
2284 this.panel80 = new Panel();
2285 this.label80 = new Label();
2286 this.pictureBox77 = new PictureBox();
2287 this.panel81 = new Panel();
2288 this.label81 = new Label();
2289 this.pictureBox78 = new PictureBox();
2290 this.panel82 = new Panel();
2291 this.label82 = new Label();
2292 this.pictureBox79 = new PictureBox();
2293 this.panel83 = new Panel();
2294 this.label83 = new Label();
2295 this.pictureBox80 = new PictureBox();
2296 this.panel84 = new Panel();
2297 this.label84 = new Label();
2298 this.pictureBox81 = new PictureBox();
2299 this.panel85 = new Panel();
2300 this.label85 = new Label();
2301 this.pictureBox82 = new PictureBox();
2302 this.panel86 = new Panel();
2303 this.label86 = new Label();
2304 this.pictureBox83 = new PictureBox();
2305 this.panel87 = new Panel();
2306 this.label87 = new Label();
2307 this.pictureBox84 = new PictureBox();
2308 this.panel88 = new Panel();
2309 this.label88 = new Label();
2310 this.pictureBox85 = new PictureBox();
2311 this.panel89 = new Panel();
2312 this.label89 = new Label();
2313 this.pictureBox86 = new PictureBox();
2314 this.panel90 = new Panel();
2315 this.label90 = new Label();
2316 this.pictureBox87 = new PictureBox();
2317 this.panel91 = new Panel();
2318 this.label91 = new Label();
2319 this.pictureBox88 = new PictureBox();
2320 this.panel93 = new Panel();
2321 this.label93 = new Label();
2322 this.pictureBox90 = new PictureBox();
2323 this.panel94 = new Panel();
2324 this.label94 = new Label();
2325 this.pictureBox91 = new PictureBox();
2326 this.panel95 = new Panel();
2327 this.label95 = new Label();
2328 this.pictureBox92 = new PictureBox();
2329 this.panel97 = new Panel();
2330 this.label97 = new Label();
2331 this.pictureBox94 = new PictureBox();
2332 this.panel98 = new Panel();
2333 this.label98 = new Label();
2334 this.pictureBox95 = new PictureBox();
2335 this.panel99 = new Panel();
2336 this.label99 = new Label();
2337 this.pictureBox96 = new PictureBox();
2338 this.panel96 = new Panel();
2339 this.label96 = new Label();
2340 this.pictureBox93 = new PictureBox();
2341 this.panel100 = new Panel();
2342 this.label100 = new Label();
2343 this.pictureBox97 = new PictureBox();
2344 this.panel103 = new Panel();
2345 this.label102 = new Label();
2346 this.pictureBox100 = new PictureBox();
2347 this.panel101 = new Panel();
2348 this.label101 = new Label();
2349 this.pictureBox98 = new PictureBox();
2350 this.panel104 = new Panel();
2351 this.label103 = new Label();
2352 this.pictureBox101 = new PictureBox();
2353 this.panel105 = new Panel();
2354 this.label104 = new Label();
2355 this.pictureBox102 = new PictureBox();
2356 this.panel107 = new Panel();
2357 this.label106 = new Label();
2358 this.pictureBox104 = new PictureBox();
2359 this.panel108 = new Panel();
2360 this.label107 = new Label();
2361 this.pictureBox105 = new PictureBox();
2362 this.panel106 = new Panel();
2363 this.label105 = new Label();
2364 this.pictureBox103 = new PictureBox();
2365 this.panel102 = new Panel();
2366 this.label16 = new Label();
2367 this.pictureBox99 = new PictureBox();
2368 this.panel71 = new Panel();
2369 this.label71 = new Label();
2370 this.pictureBox68 = new PictureBox();
2371 this.panel109 = new Panel();
2372 this.label108 = new Label();
2373 this.pictureBox106 = new PictureBox();
2374 this.panel110 = new Panel();
2375 this.label109 = new Label();
2376 this.pictureBox107 = new PictureBox();
2377 this.panel111 = new Panel();
2378 this.label110 = new Label();
2379 this.pictureBox108 = new PictureBox();
2380 this.panel112 = new Panel();
2381 this.label111 = new Label();
2382 this.pictureBox109 = new PictureBox();
2383 this.panel113 = new Panel();
2384 this.label112 = new Label();
2385 this.pictureBox110 = new PictureBox();
2386 this.panel92 = new Panel();
2387 this.label92 = new Label();
2388 this.pictureBox89 = new PictureBox();
2389 this.panel114 = new Panel();
2390 this.label113 = new Label();
2391 this.pictureBox111 = new PictureBox();
2392 this.panel59 = new Panel();
2393 this.label60 = new Label();
2394 this.pictureBox56 = new PictureBox();
2395 this.panel115 = new Panel();
2396 this.label114 = new Label();
2397 this.pictureBox112 = new PictureBox();
2398 this.panel116 = new Panel();
2399 this.label115 = new Label();
2400 this.pictureBox113 = new PictureBox();
2401 this.panel117 = new Panel();
2402 this.label116 = new Label();
2403 this.pictureBox114 = new PictureBox();
2404 this.button7 = new Button();
2405 this.panel1 = new Panel();
2406 this.panel2 = new Panel();
2407 this.panel3 = new Panel();
2408 this.panel4 = new Panel();
2409 this.contextMenuStrip1 = new ContextMenuStrip(this.components);
2410 this.timer1 = new Timer(this.components);
2411 this.panel118 = new Panel();
2412 this.label117 = new Label();
2413 this.pictureBox115 = new PictureBox();
2414 this.panel119 = new Panel();
2415 this.label118 = new Label();
2416 this.pictureBox116 = new PictureBox();
2417 this.panel120 = new Panel();
2418 this.label119 = new Label();
2419 this.pictureBox117 = new PictureBox();
2420 this.panel121 = new Panel();
2421 this.label120 = new Label();
2422 this.pictureBox118 = new PictureBox();
2423 this.panel122 = new Panel();
2424 this.label121 = new Label();
2425 this.pictureBox119 = new PictureBox();
2426 this.panel123 = new Panel();
2427 this.label122 = new Label();
2428 this.pictureBox120 = new PictureBox();
2429 this.topBar.SuspendLayout();
2430 ((ISupportInitialize)this.pictureBox1).BeginInit();
2431 this.furkTabs.SuspendLayout();
2432 this.execPage.SuspendLayout();
2433 this.scriptHub.SuspendLayout();
2434 this.flowLayoutPanel1.SuspendLayout();
2435 this.panel6.SuspendLayout();
2436 ((ISupportInitialize)this.pictureBox3).BeginInit();
2437 this.panel5.SuspendLayout();
2438 ((ISupportInitialize)this.pictureBox4).BeginInit();
2439 this.panel7.SuspendLayout();
2440 ((ISupportInitialize)this.pictureBox5).BeginInit();
2441 this.panel8.SuspendLayout();
2442 ((ISupportInitialize)this.pictureBox6).BeginInit();
2443 this.panel9.SuspendLayout();
2444 ((ISupportInitialize)this.pictureBox7).BeginInit();
2445 this.panel10.SuspendLayout();
2446 ((ISupportInitialize)this.pictureBox8).BeginInit();
2447 this.panel11.SuspendLayout();
2448 ((ISupportInitialize)this.pictureBox9).BeginInit();
2449 this.panel12.SuspendLayout();
2450 ((ISupportInitialize)this.pictureBox10).BeginInit();
2451 this.panel13.SuspendLayout();
2452 ((ISupportInitialize)this.pictureBox11).BeginInit();
2453 this.panel14.SuspendLayout();
2454 ((ISupportInitialize)this.pictureBox12).BeginInit();
2455 this.panel20.SuspendLayout();
2456 ((ISupportInitialize)this.pictureBox17).BeginInit();
2457 this.panel19.SuspendLayout();
2458 ((ISupportInitialize)this.pictureBox16).BeginInit();
2459 this.panel18.SuspendLayout();
2460 ((ISupportInitialize)this.pictureBox15).BeginInit();
2461 this.panel17.SuspendLayout();
2462 ((ISupportInitialize)this.pictureBox2).BeginInit();
2463 this.panel15.SuspendLayout();
2464 ((ISupportInitialize)this.pictureBox14).BeginInit();
2465 this.panel25.SuspendLayout();
2466 ((ISupportInitialize)this.pictureBox22).BeginInit();
2467 this.panel23.SuspendLayout();
2468 ((ISupportInitialize)this.pictureBox20).BeginInit();
2469 this.panel22.SuspendLayout();
2470 ((ISupportInitialize)this.pictureBox19).BeginInit();
2471 this.panel21.SuspendLayout();
2472 ((ISupportInitialize)this.pictureBox18).BeginInit();
2473 this.panel24.SuspendLayout();
2474 ((ISupportInitialize)this.pictureBox21).BeginInit();
2475 this.panel16.SuspendLayout();
2476 ((ISupportInitialize)this.pictureBox13).BeginInit();
2477 this.panel26.SuspendLayout();
2478 ((ISupportInitialize)this.pictureBox23).BeginInit();
2479 this.panel27.SuspendLayout();
2480 ((ISupportInitialize)this.pictureBox24).BeginInit();
2481 this.panel29.SuspendLayout();
2482 ((ISupportInitialize)this.pictureBox26).BeginInit();
2483 this.panel30.SuspendLayout();
2484 ((ISupportInitialize)this.pictureBox27).BeginInit();
2485 this.panel31.SuspendLayout();
2486 ((ISupportInitialize)this.pictureBox28).BeginInit();
2487 this.panel32.SuspendLayout();
2488 ((ISupportInitialize)this.pictureBox29).BeginInit();
2489 this.panel33.SuspendLayout();
2490 ((ISupportInitialize)this.pictureBox30).BeginInit();
2491 this.panel34.SuspendLayout();
2492 ((ISupportInitialize)this.pictureBox31).BeginInit();
2493 this.panel35.SuspendLayout();
2494 ((ISupportInitialize)this.pictureBox32).BeginInit();
2495 this.panel36.SuspendLayout();
2496 ((ISupportInitialize)this.pictureBox33).BeginInit();
2497 this.panel37.SuspendLayout();
2498 ((ISupportInitialize)this.pictureBox34).BeginInit();
2499 this.panel38.SuspendLayout();
2500 ((ISupportInitialize)this.pictureBox35).BeginInit();
2501 this.panel39.SuspendLayout();
2502 ((ISupportInitialize)this.pictureBox36).BeginInit();
2503 this.panel40.SuspendLayout();
2504 ((ISupportInitialize)this.pictureBox37).BeginInit();
2505 this.panel41.SuspendLayout();
2506 ((ISupportInitialize)this.pictureBox38).BeginInit();
2507 this.panel42.SuspendLayout();
2508 ((ISupportInitialize)this.pictureBox39).BeginInit();
2509 this.panel43.SuspendLayout();
2510 ((ISupportInitialize)this.pictureBox40).BeginInit();
2511 this.panel44.SuspendLayout();
2512 ((ISupportInitialize)this.pictureBox41).BeginInit();
2513 this.panel45.SuspendLayout();
2514 ((ISupportInitialize)this.pictureBox42).BeginInit();
2515 this.panel46.SuspendLayout();
2516 ((ISupportInitialize)this.pictureBox43).BeginInit();
2517 this.panel47.SuspendLayout();
2518 ((ISupportInitialize)this.pictureBox44).BeginInit();
2519 this.panel48.SuspendLayout();
2520 ((ISupportInitialize)this.pictureBox45).BeginInit();
2521 this.panel49.SuspendLayout();
2522 ((ISupportInitialize)this.pictureBox46).BeginInit();
2523 this.panel50.SuspendLayout();
2524 ((ISupportInitialize)this.pictureBox47).BeginInit();
2525 this.panel51.SuspendLayout();
2526 ((ISupportInitialize)this.pictureBox48).BeginInit();
2527 this.panel52.SuspendLayout();
2528 ((ISupportInitialize)this.pictureBox49).BeginInit();
2529 this.panel53.SuspendLayout();
2530 ((ISupportInitialize)this.pictureBox50).BeginInit();
2531 this.panel54.SuspendLayout();
2532 ((ISupportInitialize)this.pictureBox51).BeginInit();
2533 this.panel55.SuspendLayout();
2534 ((ISupportInitialize)this.pictureBox52).BeginInit();
2535 this.panel56.SuspendLayout();
2536 ((ISupportInitialize)this.pictureBox53).BeginInit();
2537 this.panel57.SuspendLayout();
2538 ((ISupportInitialize)this.pictureBox54).BeginInit();
2539 this.panel60.SuspendLayout();
2540 ((ISupportInitialize)this.pictureBox57).BeginInit();
2541 this.panel61.SuspendLayout();
2542 ((ISupportInitialize)this.pictureBox58).BeginInit();
2543 this.panel62.SuspendLayout();
2544 ((ISupportInitialize)this.pictureBox59).BeginInit();
2545 this.panel63.SuspendLayout();
2546 ((ISupportInitialize)this.pictureBox60).BeginInit();
2547 this.panel64.SuspendLayout();
2548 ((ISupportInitialize)this.pictureBox61).BeginInit();
2549 this.panel65.SuspendLayout();
2550 ((ISupportInitialize)this.pictureBox62).BeginInit();
2551 this.panel66.SuspendLayout();
2552 ((ISupportInitialize)this.pictureBox63).BeginInit();
2553 this.panel28.SuspendLayout();
2554 ((ISupportInitialize)this.pictureBox25).BeginInit();
2555 this.panel58.SuspendLayout();
2556 ((ISupportInitialize)this.pictureBox55).BeginInit();
2557 this.panel67.SuspendLayout();
2558 ((ISupportInitialize)this.pictureBox64).BeginInit();
2559 this.panel68.SuspendLayout();
2560 ((ISupportInitialize)this.pictureBox65).BeginInit();
2561 this.panel69.SuspendLayout();
2562 ((ISupportInitialize)this.pictureBox66).BeginInit();
2563 this.panel70.SuspendLayout();
2564 ((ISupportInitialize)this.pictureBox67).BeginInit();
2565 this.panel72.SuspendLayout();
2566 ((ISupportInitialize)this.pictureBox69).BeginInit();
2567 this.panel73.SuspendLayout();
2568 ((ISupportInitialize)this.pictureBox70).BeginInit();
2569 this.panel74.SuspendLayout();
2570 ((ISupportInitialize)this.pictureBox71).BeginInit();
2571 this.panel75.SuspendLayout();
2572 ((ISupportInitialize)this.pictureBox72).BeginInit();
2573 this.panel76.SuspendLayout();
2574 ((ISupportInitialize)this.pictureBox73).BeginInit();
2575 this.panel77.SuspendLayout();
2576 ((ISupportInitialize)this.pictureBox74).BeginInit();
2577 this.panel78.SuspendLayout();
2578 ((ISupportInitialize)this.pictureBox75).BeginInit();
2579 this.panel79.SuspendLayout();
2580 ((ISupportInitialize)this.pictureBox76).BeginInit();
2581 this.panel80.SuspendLayout();
2582 ((ISupportInitialize)this.pictureBox77).BeginInit();
2583 this.panel81.SuspendLayout();
2584 ((ISupportInitialize)this.pictureBox78).BeginInit();
2585 this.panel82.SuspendLayout();
2586 ((ISupportInitialize)this.pictureBox79).BeginInit();
2587 this.panel83.SuspendLayout();
2588 ((ISupportInitialize)this.pictureBox80).BeginInit();
2589 this.panel84.SuspendLayout();
2590 ((ISupportInitialize)this.pictureBox81).BeginInit();
2591 this.panel85.SuspendLayout();
2592 ((ISupportInitialize)this.pictureBox82).BeginInit();
2593 this.panel86.SuspendLayout();
2594 ((ISupportInitialize)this.pictureBox83).BeginInit();
2595 this.panel87.SuspendLayout();
2596 ((ISupportInitialize)this.pictureBox84).BeginInit();
2597 this.panel88.SuspendLayout();
2598 ((ISupportInitialize)this.pictureBox85).BeginInit();
2599 this.panel89.SuspendLayout();
2600 ((ISupportInitialize)this.pictureBox86).BeginInit();
2601 this.panel90.SuspendLayout();
2602 ((ISupportInitialize)this.pictureBox87).BeginInit();
2603 this.panel91.SuspendLayout();
2604 ((ISupportInitialize)this.pictureBox88).BeginInit();
2605 this.panel93.SuspendLayout();
2606 ((ISupportInitialize)this.pictureBox90).BeginInit();
2607 this.panel94.SuspendLayout();
2608 ((ISupportInitialize)this.pictureBox91).BeginInit();
2609 this.panel95.SuspendLayout();
2610 ((ISupportInitialize)this.pictureBox92).BeginInit();
2611 this.panel97.SuspendLayout();
2612 ((ISupportInitialize)this.pictureBox94).BeginInit();
2613 this.panel98.SuspendLayout();
2614 ((ISupportInitialize)this.pictureBox95).BeginInit();
2615 this.panel99.SuspendLayout();
2616 ((ISupportInitialize)this.pictureBox96).BeginInit();
2617 this.panel96.SuspendLayout();
2618 ((ISupportInitialize)this.pictureBox93).BeginInit();
2619 this.panel100.SuspendLayout();
2620 ((ISupportInitialize)this.pictureBox97).BeginInit();
2621 this.panel103.SuspendLayout();
2622 ((ISupportInitialize)this.pictureBox100).BeginInit();
2623 this.panel101.SuspendLayout();
2624 ((ISupportInitialize)this.pictureBox98).BeginInit();
2625 this.panel104.SuspendLayout();
2626 ((ISupportInitialize)this.pictureBox101).BeginInit();
2627 this.panel105.SuspendLayout();
2628 ((ISupportInitialize)this.pictureBox102).BeginInit();
2629 this.panel107.SuspendLayout();
2630 ((ISupportInitialize)this.pictureBox104).BeginInit();
2631 this.panel108.SuspendLayout();
2632 ((ISupportInitialize)this.pictureBox105).BeginInit();
2633 this.panel106.SuspendLayout();
2634 ((ISupportInitialize)this.pictureBox103).BeginInit();
2635 this.panel102.SuspendLayout();
2636 ((ISupportInitialize)this.pictureBox99).BeginInit();
2637 this.panel71.SuspendLayout();
2638 ((ISupportInitialize)this.pictureBox68).BeginInit();
2639 this.panel109.SuspendLayout();
2640 ((ISupportInitialize)this.pictureBox106).BeginInit();
2641 this.panel110.SuspendLayout();
2642 ((ISupportInitialize)this.pictureBox107).BeginInit();
2643 this.panel111.SuspendLayout();
2644 ((ISupportInitialize)this.pictureBox108).BeginInit();
2645 this.panel112.SuspendLayout();
2646 ((ISupportInitialize)this.pictureBox109).BeginInit();
2647 this.panel113.SuspendLayout();
2648 ((ISupportInitialize)this.pictureBox110).BeginInit();
2649 this.panel92.SuspendLayout();
2650 ((ISupportInitialize)this.pictureBox89).BeginInit();
2651 this.panel114.SuspendLayout();
2652 ((ISupportInitialize)this.pictureBox111).BeginInit();
2653 this.panel59.SuspendLayout();
2654 ((ISupportInitialize)this.pictureBox56).BeginInit();
2655 this.panel115.SuspendLayout();
2656 ((ISupportInitialize)this.pictureBox112).BeginInit();
2657 this.panel116.SuspendLayout();
2658 ((ISupportInitialize)this.pictureBox113).BeginInit();
2659 this.panel117.SuspendLayout();
2660 ((ISupportInitialize)this.pictureBox114).BeginInit();
2661 this.panel118.SuspendLayout();
2662 ((ISupportInitialize)this.pictureBox115).BeginInit();
2663 this.panel119.SuspendLayout();
2664 ((ISupportInitialize)this.pictureBox116).BeginInit();
2665 this.panel120.SuspendLayout();
2666 ((ISupportInitialize)this.pictureBox117).BeginInit();
2667 this.panel121.SuspendLayout();
2668 ((ISupportInitialize)this.pictureBox118).BeginInit();
2669 this.panel122.SuspendLayout();
2670 ((ISupportInitialize)this.pictureBox119).BeginInit();
2671 this.panel123.SuspendLayout();
2672 ((ISupportInitialize)this.pictureBox120).BeginInit();
2673 base.SuspendLayout();
2674 this.topBar.BackColor = Color.FromArgb(200, 40, 30);
2675 this.topBar.Controls.Add(this.label3);
2676 this.topBar.Controls.Add(this.label2);
2677 this.topBar.Controls.Add(this.label1);
2678 this.topBar.Controls.Add(this.pictureBox1);
2679 this.topBar.Controls.Add(this.button5);
2680 this.topBar.Dock = DockStyle.Top;
2681 this.topBar.Location = new Point(0, 0);
2682 this.topBar.Name = "topBar";
2683 this.topBar.Size = new Size(800, 30);
2684 this.topBar.TabIndex = 0;
2685 this.topBar.MouseDown += this.dragUi;
2686 this.label3.Anchor = AnchorStyles.None;
2687 this.label3.Font = new Font("Segoe UI", 12f, FontStyle.Regular, GraphicsUnit.Point, 0);
2688 this.label3.Location = new Point(350, 0);
2689 this.label3.Name = "label3";
2690 this.label3.Size = new Size(100, 30);
2691 this.label3.TabIndex = 3;
2692 this.label3.Text = "Furk OS";
2693 this.label3.TextAlign = ContentAlignment.MiddleCenter;
2694 this.label3.MouseDown += this.dragUi;
2695 this.label2.AutoSize = true;
2696 this.label2.Font = new Font("Segoe UI Semilight", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
2697 this.label2.ForeColor = Color.White;
2698 this.label2.Location = new Point(766, 7);
2699 this.label2.Name = "label2";
2700 this.label2.Size = new Size(13, 17);
2701 this.label2.TabIndex = 2;
2702 this.label2.Text = "_";
2703 this.label2.TextAlign = ContentAlignment.TopRight;
2704 this.label2.Click += this.Label2_Click;
2705 this.label1.AutoSize = true;
2706 this.label1.Font = new Font("Segoe UI Semilight", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
2707 this.label1.ForeColor = Color.White;
2708 this.label1.Location = new Point(782, 7);
2709 this.label1.Name = "label1";
2710 this.label1.Size = new Size(15, 17);
2711 this.label1.TabIndex = 1;
2712 this.label1.Text = "X";
2713 this.label1.Click += this.Label1_Click;
2714 this.pictureBox1.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox1.BackgroundImage");
2715 this.pictureBox1.BackgroundImageLayout = ImageLayout.Stretch;
2716 this.pictureBox1.Location = new Point(3, 3);
2717 this.pictureBox1.Name = "pictureBox1";
2718 this.pictureBox1.Size = new Size(25, 25);
2719 this.pictureBox1.TabIndex = 0;
2720 this.pictureBox1.TabStop = false;
2721 this.pictureBox1.MouseDown += this.dragUi;
2722 this.button5.BackColor = Color.FromArgb(200, 40, 30);
2723 this.button5.FlatAppearance.BorderSize = 0;
2724 this.button5.FlatStyle = FlatStyle.Flat;
2725 this.button5.Font = new Font("Segoe UI Semilight", 9.75f);
2726 this.button5.ForeColor = Color.White;
2727 this.button5.Location = new Point(707, 2);
2728 this.button5.Name = "button5";
2729 this.button5.Size = new Size(53, 26);
2730 this.button5.TabIndex = 6;
2731 this.button5.Text = "Attach";
2732 this.button5.UseVisualStyleBackColor = false;
2733 this.button5.Click += this.Button5_Click;
2734 this.border3.BackColor = Color.FromArgb(200, 40, 30);
2735 this.border3.Dock = DockStyle.Left;
2736 this.border3.Location = new Point(0, 30);
2737 this.border3.Name = "border3";
2738 this.border3.Size = new Size(5, 420);
2739 this.border3.TabIndex = 1;
2740 this.border1.BackColor = Color.FromArgb(200, 40, 30);
2741 this.border1.Dock = DockStyle.Right;
2742 this.border1.Location = new Point(795, 30);
2743 this.border1.Name = "border1";
2744 this.border1.Size = new Size(5, 420);
2745 this.border1.TabIndex = 2;
2746 this.border2.BackColor = Color.FromArgb(200, 40, 30);
2747 this.border2.Dock = DockStyle.Bottom;
2748 this.border2.Location = new Point(5, 445);
2749 this.border2.Name = "border2";
2750 this.border2.Size = new Size(790, 5);
2751 this.border2.TabIndex = 3;
2752 this.furkTabs.Appearance = TabAppearance.FlatButtons;
2753 this.furkTabs.Controls.Add(this.execPage);
2754 this.furkTabs.Controls.Add(this.scriptHub);
2755 this.furkTabs.ItemSize = new Size(0, 1);
2756 this.furkTabs.Location = new Point(12, 38);
2757 this.furkTabs.Name = "furkTabs";
2758 this.furkTabs.SelectedIndex = 0;
2759 this.furkTabs.Size = new Size(777, 400);
2760 this.furkTabs.TabIndex = 4;
2761 this.execPage.BackColor = Color.FromArgb(33, 33, 33);
2762 this.execPage.Controls.Add(this.listBox1);
2763 this.execPage.Controls.Add(this.button10);
2764 this.execPage.Controls.Add(this.button8);
2765 this.execPage.Controls.Add(this.button6);
2766 this.execPage.Controls.Add(this.button3);
2767 this.execPage.Controls.Add(this.button4);
2768 this.execPage.Controls.Add(this.button1);
2769 this.execPage.Controls.Add(this.Monaco);
2770 this.execPage.Controls.Add(this.button2);
2771 this.execPage.Location = new Point(4, 5);
2772 this.execPage.Name = "execPage";
2773 this.execPage.Padding = new Padding(3);
2774 this.execPage.Size = new Size(769, 391);
2775 this.execPage.TabIndex = 0;
2776 this.execPage.Text = "tabPage1";
2777 this.execPage.Click += this.execPage_Click;
2778 this.listBox1.BackColor = Color.FromArgb(25, 25, 25);
2779 this.listBox1.BorderStyle = BorderStyle.None;
2780 this.listBox1.Font = new Font("Segoe UI Semilight", 9.75f);
2781 this.listBox1.ForeColor = Color.White;
2782 this.listBox1.FormattingEnabled = true;
2783 this.listBox1.ItemHeight = 17;
2784 this.listBox1.Location = new Point(632, 7);
2785 this.listBox1.Name = "listBox1";
2786 this.listBox1.Size = new Size(130, 306);
2787 this.listBox1.TabIndex = 10;
2788 this.listBox1.DoubleClick += this.listBox1_DoubleClick;
2789 this.listBox1.MouseUp += this.listBox1_MouseUp;
2790 this.button10.BackColor = Color.Lime;
2791 this.button10.FlatAppearance.BorderSize = 0;
2792 this.button10.FlatStyle = FlatStyle.Flat;
2793 this.button10.Font = new Font("Segoe UI Semilight", 9.75f);
2794 this.button10.ForeColor = Color.Black;
2795 this.button10.Location = new Point(637, 330);
2796 this.button10.Name = "button10";
2797 this.button10.Size = new Size(119, 26);
2798 this.button10.TabIndex = 9;
2799 this.button10.Text = "Free Robux!";
2800 this.button10.UseVisualStyleBackColor = false;
2801 this.button10.Click += this.button10_Click_1;
2802 this.button8.BackColor = Color.FromArgb(50, 50, 50);
2803 this.button8.FlatAppearance.BorderSize = 0;
2804 this.button8.FlatStyle = FlatStyle.Flat;
2805 this.button8.Font = new Font("Segoe UI Semilight", 9.75f);
2806 this.button8.ForeColor = Color.White;
2807 this.button8.Location = new Point(637, 362);
2808 this.button8.Name = "button8";
2809 this.button8.Size = new Size(119, 26);
2810 this.button8.TabIndex = 8;
2811 this.button8.Text = "WeAreDevs";
2812 this.button8.UseVisualStyleBackColor = false;
2813 this.button8.Click += this.button8_Click_1;
2814 this.button6.BackColor = Color.FromArgb(50, 50, 50);
2815 this.button6.FlatAppearance.BorderSize = 0;
2816 this.button6.FlatStyle = FlatStyle.Flat;
2817 this.button6.Font = new Font("Segoe UI Semilight", 9.75f);
2818 this.button6.ForeColor = Color.White;
2819 this.button6.Location = new Point(507, 362);
2820 this.button6.Name = "button6";
2821 this.button6.Size = new Size(119, 26);
2822 this.button6.TabIndex = 7;
2823 this.button6.Text = "Game Hub";
2824 this.button6.UseVisualStyleBackColor = false;
2825 this.button6.Click += this.Button6_Click;
2826 this.button3.BackColor = Color.FromArgb(50, 50, 50);
2827 this.button3.FlatAppearance.BorderSize = 0;
2828 this.button3.FlatStyle = FlatStyle.Flat;
2829 this.button3.Font = new Font("Segoe UI Semilight", 9.75f);
2830 this.button3.ForeColor = Color.White;
2831 this.button3.Location = new Point(382, 362);
2832 this.button3.Name = "button3";
2833 this.button3.Size = new Size(119, 26);
2834 this.button3.TabIndex = 5;
2835 this.button3.Text = "Save File";
2836 this.button3.UseVisualStyleBackColor = false;
2837 this.button3.Click += this.Button3_Click;
2838 this.button4.BackColor = Color.FromArgb(50, 50, 50);
2839 this.button4.FlatAppearance.BorderSize = 0;
2840 this.button4.FlatStyle = FlatStyle.Flat;
2841 this.button4.Font = new Font("Segoe UI Semilight", 9.75f);
2842 this.button4.ForeColor = Color.White;
2843 this.button4.Location = new Point(257, 362);
2844 this.button4.Name = "button4";
2845 this.button4.Size = new Size(119, 26);
2846 this.button4.TabIndex = 4;
2847 this.button4.Text = "Open File";
2848 this.button4.UseVisualStyleBackColor = false;
2849 this.button4.Click += this.Button4_Click;
2850 this.button1.BackColor = Color.FromArgb(50, 50, 50);
2851 this.button1.FlatAppearance.BorderSize = 0;
2852 this.button1.FlatStyle = FlatStyle.Flat;
2853 this.button1.Font = new Font("Segoe UI Semilight", 9.75f);
2854 this.button1.ForeColor = Color.White;
2855 this.button1.Location = new Point(132, 362);
2856 this.button1.Name = "button1";
2857 this.button1.Size = new Size(119, 26);
2858 this.button1.TabIndex = 3;
2859 this.button1.Text = "Clear";
2860 this.button1.UseVisualStyleBackColor = false;
2861 this.button1.Click += this.Button1_Click;
2862 this.Monaco.AllowWebBrowserDrop = false;
2863 this.Monaco.Location = new Point(7, 7);
2864 this.Monaco.MinimumSize = new Size(20, 20);
2865 this.Monaco.Name = "Monaco";
2866 this.Monaco.Size = new Size(619, 343);
2867 this.Monaco.TabIndex = 2;
2868 this.Monaco.DocumentCompleted += this.Monaco_DocumentCompleted;
2869 this.button2.BackColor = Color.FromArgb(50, 50, 50);
2870 this.button2.FlatAppearance.BorderSize = 0;
2871 this.button2.FlatStyle = FlatStyle.Flat;
2872 this.button2.Font = new Font("Segoe UI Semilight", 9.75f);
2873 this.button2.ForeColor = Color.White;
2874 this.button2.Location = new Point(7, 362);
2875 this.button2.Name = "button2";
2876 this.button2.Size = new Size(119, 26);
2877 this.button2.TabIndex = 1;
2878 this.button2.Text = "Execute";
2879 this.button2.UseVisualStyleBackColor = false;
2880 this.button2.Click += this.Button2_Click;
2881 this.scriptHub.BackColor = Color.FromArgb(33, 33, 33);
2882 this.scriptHub.Controls.Add(this.button11);
2883 this.scriptHub.Controls.Add(this.button9);
2884 this.scriptHub.Controls.Add(this.flowLayoutPanel1);
2885 this.scriptHub.Controls.Add(this.button7);
2886 this.scriptHub.Location = new Point(4, 5);
2887 this.scriptHub.Name = "scriptHub";
2888 this.scriptHub.Padding = new Padding(3);
2889 this.scriptHub.Size = new Size(769, 391);
2890 this.scriptHub.TabIndex = 1;
2891 this.scriptHub.Text = "tabPage2";
2892 this.scriptHub.Click += this.scriptHub_Click;
2893 this.button11.BackColor = Color.FromArgb(50, 50, 50);
2894 this.button11.FlatAppearance.BorderSize = 0;
2895 this.button11.FlatStyle = FlatStyle.Flat;
2896 this.button11.Font = new Font("Segoe UI Semilight", 9.75f, FontStyle.Bold);
2897 this.button11.ForeColor = Color.White;
2898 this.button11.Location = new Point(606, 119);
2899 this.button11.Name = "button11";
2900 this.button11.Size = new Size(147, 46);
2901 this.button11.TabIndex = 105;
2902 this.button11.Text = "Re-Install Roblox";
2903 this.button11.UseMnemonic = false;
2904 this.button11.UseVisualStyleBackColor = false;
2905 this.button11.Click += this.button11_Click_1;
2906 this.button9.BackColor = Color.FromArgb(50, 50, 50);
2907 this.button9.FlatAppearance.BorderSize = 0;
2908 this.button9.FlatStyle = FlatStyle.Flat;
2909 this.button9.Font = new Font("Segoe UI Semilight", 9.75f, FontStyle.Bold);
2910 this.button9.ForeColor = Color.White;
2911 this.button9.Location = new Point(606, 67);
2912 this.button9.Name = "button9";
2913 this.button9.Size = new Size(147, 46);
2914 this.button9.TabIndex = 10;
2915 this.button9.Text = "Kill Roblox";
2916 this.button9.UseMnemonic = false;
2917 this.button9.UseVisualStyleBackColor = false;
2918 this.button9.Click += this.button9_Click_1;
2919 this.flowLayoutPanel1.AutoScroll = true;
2920 this.flowLayoutPanel1.Controls.Add(this.panel6);
2921 this.flowLayoutPanel1.Controls.Add(this.panel5);
2922 this.flowLayoutPanel1.Controls.Add(this.panel7);
2923 this.flowLayoutPanel1.Controls.Add(this.panel8);
2924 this.flowLayoutPanel1.Controls.Add(this.panel9);
2925 this.flowLayoutPanel1.Controls.Add(this.panel10);
2926 this.flowLayoutPanel1.Controls.Add(this.panel11);
2927 this.flowLayoutPanel1.Controls.Add(this.panel12);
2928 this.flowLayoutPanel1.Controls.Add(this.panel13);
2929 this.flowLayoutPanel1.Controls.Add(this.panel14);
2930 this.flowLayoutPanel1.Controls.Add(this.panel20);
2931 this.flowLayoutPanel1.Controls.Add(this.panel19);
2932 this.flowLayoutPanel1.Controls.Add(this.panel18);
2933 this.flowLayoutPanel1.Controls.Add(this.panel17);
2934 this.flowLayoutPanel1.Controls.Add(this.panel15);
2935 this.flowLayoutPanel1.Controls.Add(this.panel25);
2936 this.flowLayoutPanel1.Controls.Add(this.panel23);
2937 this.flowLayoutPanel1.Controls.Add(this.panel22);
2938 this.flowLayoutPanel1.Controls.Add(this.panel21);
2939 this.flowLayoutPanel1.Controls.Add(this.panel24);
2940 this.flowLayoutPanel1.Controls.Add(this.panel16);
2941 this.flowLayoutPanel1.Controls.Add(this.panel26);
2942 this.flowLayoutPanel1.Controls.Add(this.panel27);
2943 this.flowLayoutPanel1.Controls.Add(this.panel29);
2944 this.flowLayoutPanel1.Controls.Add(this.panel30);
2945 this.flowLayoutPanel1.Controls.Add(this.panel31);
2946 this.flowLayoutPanel1.Controls.Add(this.panel32);
2947 this.flowLayoutPanel1.Controls.Add(this.panel33);
2948 this.flowLayoutPanel1.Controls.Add(this.panel34);
2949 this.flowLayoutPanel1.Controls.Add(this.panel35);
2950 this.flowLayoutPanel1.Controls.Add(this.panel36);
2951 this.flowLayoutPanel1.Controls.Add(this.panel37);
2952 this.flowLayoutPanel1.Controls.Add(this.panel38);
2953 this.flowLayoutPanel1.Controls.Add(this.panel39);
2954 this.flowLayoutPanel1.Controls.Add(this.panel40);
2955 this.flowLayoutPanel1.Controls.Add(this.panel41);
2956 this.flowLayoutPanel1.Controls.Add(this.panel42);
2957 this.flowLayoutPanel1.Controls.Add(this.panel43);
2958 this.flowLayoutPanel1.Controls.Add(this.panel44);
2959 this.flowLayoutPanel1.Controls.Add(this.panel45);
2960 this.flowLayoutPanel1.Controls.Add(this.panel46);
2961 this.flowLayoutPanel1.Controls.Add(this.panel47);
2962 this.flowLayoutPanel1.Controls.Add(this.panel48);
2963 this.flowLayoutPanel1.Controls.Add(this.panel49);
2964 this.flowLayoutPanel1.Controls.Add(this.panel50);
2965 this.flowLayoutPanel1.Controls.Add(this.panel51);
2966 this.flowLayoutPanel1.Controls.Add(this.panel52);
2967 this.flowLayoutPanel1.Controls.Add(this.panel53);
2968 this.flowLayoutPanel1.Controls.Add(this.panel54);
2969 this.flowLayoutPanel1.Controls.Add(this.panel55);
2970 this.flowLayoutPanel1.Controls.Add(this.panel56);
2971 this.flowLayoutPanel1.Controls.Add(this.panel57);
2972 this.flowLayoutPanel1.Controls.Add(this.panel60);
2973 this.flowLayoutPanel1.Controls.Add(this.panel61);
2974 this.flowLayoutPanel1.Controls.Add(this.panel62);
2975 this.flowLayoutPanel1.Controls.Add(this.panel63);
2976 this.flowLayoutPanel1.Controls.Add(this.panel64);
2977 this.flowLayoutPanel1.Controls.Add(this.panel65);
2978 this.flowLayoutPanel1.Controls.Add(this.panel66);
2979 this.flowLayoutPanel1.Controls.Add(this.panel28);
2980 this.flowLayoutPanel1.Controls.Add(this.panel58);
2981 this.flowLayoutPanel1.Controls.Add(this.panel67);
2982 this.flowLayoutPanel1.Controls.Add(this.panel68);
2983 this.flowLayoutPanel1.Controls.Add(this.panel69);
2984 this.flowLayoutPanel1.Controls.Add(this.panel70);
2985 this.flowLayoutPanel1.Controls.Add(this.panel72);
2986 this.flowLayoutPanel1.Controls.Add(this.panel73);
2987 this.flowLayoutPanel1.Controls.Add(this.panel74);
2988 this.flowLayoutPanel1.Controls.Add(this.panel75);
2989 this.flowLayoutPanel1.Controls.Add(this.panel76);
2990 this.flowLayoutPanel1.Controls.Add(this.panel77);
2991 this.flowLayoutPanel1.Controls.Add(this.panel78);
2992 this.flowLayoutPanel1.Controls.Add(this.panel79);
2993 this.flowLayoutPanel1.Controls.Add(this.panel80);
2994 this.flowLayoutPanel1.Controls.Add(this.panel81);
2995 this.flowLayoutPanel1.Controls.Add(this.panel82);
2996 this.flowLayoutPanel1.Controls.Add(this.panel83);
2997 this.flowLayoutPanel1.Controls.Add(this.panel84);
2998 this.flowLayoutPanel1.Controls.Add(this.panel85);
2999 this.flowLayoutPanel1.Controls.Add(this.panel86);
3000 this.flowLayoutPanel1.Controls.Add(this.panel87);
3001 this.flowLayoutPanel1.Controls.Add(this.panel88);
3002 this.flowLayoutPanel1.Controls.Add(this.panel89);
3003 this.flowLayoutPanel1.Controls.Add(this.panel90);
3004 this.flowLayoutPanel1.Controls.Add(this.panel91);
3005 this.flowLayoutPanel1.Controls.Add(this.panel93);
3006 this.flowLayoutPanel1.Controls.Add(this.panel94);
3007 this.flowLayoutPanel1.Controls.Add(this.panel95);
3008 this.flowLayoutPanel1.Controls.Add(this.panel97);
3009 this.flowLayoutPanel1.Controls.Add(this.panel98);
3010 this.flowLayoutPanel1.Controls.Add(this.panel99);
3011 this.flowLayoutPanel1.Controls.Add(this.panel96);
3012 this.flowLayoutPanel1.Controls.Add(this.panel100);
3013 this.flowLayoutPanel1.Controls.Add(this.panel103);
3014 this.flowLayoutPanel1.Controls.Add(this.panel101);
3015 this.flowLayoutPanel1.Controls.Add(this.panel104);
3016 this.flowLayoutPanel1.Controls.Add(this.panel105);
3017 this.flowLayoutPanel1.Controls.Add(this.panel107);
3018 this.flowLayoutPanel1.Controls.Add(this.panel108);
3019 this.flowLayoutPanel1.Controls.Add(this.panel106);
3020 this.flowLayoutPanel1.Controls.Add(this.panel102);
3021 this.flowLayoutPanel1.Controls.Add(this.panel71);
3022 this.flowLayoutPanel1.Controls.Add(this.panel109);
3023 this.flowLayoutPanel1.Controls.Add(this.panel110);
3024 this.flowLayoutPanel1.Controls.Add(this.panel111);
3025 this.flowLayoutPanel1.Controls.Add(this.panel112);
3026 this.flowLayoutPanel1.Controls.Add(this.panel113);
3027 this.flowLayoutPanel1.Controls.Add(this.panel92);
3028 this.flowLayoutPanel1.Controls.Add(this.panel114);
3029 this.flowLayoutPanel1.Controls.Add(this.panel59);
3030 this.flowLayoutPanel1.Controls.Add(this.panel115);
3031 this.flowLayoutPanel1.Controls.Add(this.panel116);
3032 this.flowLayoutPanel1.Controls.Add(this.panel117);
3033 this.flowLayoutPanel1.Controls.Add(this.panel118);
3034 this.flowLayoutPanel1.Controls.Add(this.panel119);
3035 this.flowLayoutPanel1.Controls.Add(this.panel120);
3036 this.flowLayoutPanel1.Controls.Add(this.panel121);
3037 this.flowLayoutPanel1.Controls.Add(this.panel122);
3038 this.flowLayoutPanel1.Controls.Add(this.panel123);
3039 this.flowLayoutPanel1.Location = new Point(7, 7);
3040 this.flowLayoutPanel1.Name = "flowLayoutPanel1";
3041 this.flowLayoutPanel1.Size = new Size(578, 377);
3042 this.flowLayoutPanel1.TabIndex = 9;
3043 this.flowLayoutPanel1.Paint += this.flowLayoutPanel1_Paint;
3044 this.panel6.Controls.Add(this.label5);
3045 this.panel6.Controls.Add(this.pictureBox3);
3046 this.panel6.Location = new Point(3, 3);
3047 this.panel6.Name = "panel6";
3048 this.panel6.Size = new Size(105, 125);
3049 this.panel6.TabIndex = 14;
3050 this.label5.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3051 this.label5.ForeColor = Color.White;
3052 this.label5.Location = new Point(4, 106);
3053 this.label5.Name = "label5";
3054 this.label5.Size = new Size(98, 19);
3055 this.label5.TabIndex = 1;
3056 this.label5.Text = "Ninja Legends";
3057 this.label5.TextAlign = ContentAlignment.MiddleCenter;
3058 this.label5.Click += this.label5_Click;
3059 this.pictureBox3.BackgroundImage = Resources.ninjaaa;
3060 this.pictureBox3.BackgroundImageLayout = ImageLayout.Stretch;
3061 this.pictureBox3.Location = new Point(3, 3);
3062 this.pictureBox3.Name = "pictureBox3";
3063 this.pictureBox3.Size = new Size(100, 100);
3064 this.pictureBox3.TabIndex = 0;
3065 this.pictureBox3.TabStop = false;
3066 this.pictureBox3.Click += this.pictureBox3_Click_1;
3067 this.panel5.Controls.Add(this.pictureBox4);
3068 this.panel5.Controls.Add(this.label4);
3069 this.panel5.Location = new Point(114, 3);
3070 this.panel5.Name = "panel5";
3071 this.panel5.Size = new Size(105, 125);
3072 this.panel5.TabIndex = 13;
3073 this.pictureBox4.BackgroundImage = Resources.redwood;
3074 this.pictureBox4.BackgroundImageLayout = ImageLayout.Stretch;
3075 this.pictureBox4.Location = new Point(3, 3);
3076 this.pictureBox4.Name = "pictureBox4";
3077 this.pictureBox4.Size = new Size(100, 100);
3078 this.pictureBox4.TabIndex = 2;
3079 this.pictureBox4.TabStop = false;
3080 this.pictureBox4.Click += this.pictureBox4_Click;
3081 this.label4.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3082 this.label4.ForeColor = Color.White;
3083 this.label4.Location = new Point(4, 106);
3084 this.label4.Name = "label4";
3085 this.label4.Size = new Size(98, 19);
3086 this.label4.TabIndex = 1;
3087 this.label4.Text = "Redwood Prison";
3088 this.label4.TextAlign = ContentAlignment.MiddleCenter;
3089 this.label4.Click += this.label4_Click;
3090 this.panel7.Controls.Add(this.pictureBox5);
3091 this.panel7.Controls.Add(this.label6);
3092 this.panel7.Location = new Point(225, 3);
3093 this.panel7.Name = "panel7";
3094 this.panel7.Size = new Size(105, 125);
3095 this.panel7.TabIndex = 15;
3096 this.pictureBox5.BackgroundImage = Resources.prison;
3097 this.pictureBox5.BackgroundImageLayout = ImageLayout.Stretch;
3098 this.pictureBox5.Location = new Point(2, 3);
3099 this.pictureBox5.Name = "pictureBox5";
3100 this.pictureBox5.Size = new Size(100, 100);
3101 this.pictureBox5.TabIndex = 3;
3102 this.pictureBox5.TabStop = false;
3103 this.pictureBox5.Click += this.pictureBox5_Click;
3104 this.label6.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3105 this.label6.ForeColor = Color.White;
3106 this.label6.Location = new Point(4, 106);
3107 this.label6.Name = "label6";
3108 this.label6.Size = new Size(98, 19);
3109 this.label6.TabIndex = 1;
3110 this.label6.Text = "Prison Life";
3111 this.label6.TextAlign = ContentAlignment.MiddleCenter;
3112 this.label6.Click += this.label6_Click;
3113 this.panel8.Controls.Add(this.pictureBox6);
3114 this.panel8.Controls.Add(this.label7);
3115 this.panel8.Location = new Point(336, 3);
3116 this.panel8.Name = "panel8";
3117 this.panel8.Size = new Size(105, 125);
3118 this.panel8.TabIndex = 16;
3119 this.pictureBox6.BackgroundImage = Resources.magnet;
3120 this.pictureBox6.BackgroundImageLayout = ImageLayout.Stretch;
3121 this.pictureBox6.Location = new Point(3, 3);
3122 this.pictureBox6.Name = "pictureBox6";
3123 this.pictureBox6.Size = new Size(100, 100);
3124 this.pictureBox6.TabIndex = 4;
3125 this.pictureBox6.TabStop = false;
3126 this.pictureBox6.Click += this.pictureBox6_Click;
3127 this.label7.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3128 this.label7.ForeColor = Color.White;
3129 this.label7.Location = new Point(4, 106);
3130 this.label7.Name = "label7";
3131 this.label7.Size = new Size(98, 19);
3132 this.label7.TabIndex = 1;
3133 this.label7.Text = "Magnet Simulator";
3134 this.label7.TextAlign = ContentAlignment.MiddleCenter;
3135 this.label7.Click += this.label7_Click;
3136 this.panel9.Controls.Add(this.pictureBox7);
3137 this.panel9.Controls.Add(this.label8);
3138 this.panel9.Location = new Point(447, 3);
3139 this.panel9.Name = "panel9";
3140 this.panel9.Size = new Size(105, 125);
3141 this.panel9.TabIndex = 17;
3142 this.pictureBox7.BackgroundImage = Resources.Lumberjpg;
3143 this.pictureBox7.BackgroundImageLayout = ImageLayout.Stretch;
3144 this.pictureBox7.Location = new Point(3, 3);
3145 this.pictureBox7.Name = "pictureBox7";
3146 this.pictureBox7.Size = new Size(100, 100);
3147 this.pictureBox7.TabIndex = 5;
3148 this.pictureBox7.TabStop = false;
3149 this.pictureBox7.Click += this.pictureBox7_Click;
3150 this.label8.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3151 this.label8.ForeColor = Color.White;
3152 this.label8.Location = new Point(4, 106);
3153 this.label8.Name = "label8";
3154 this.label8.Size = new Size(98, 19);
3155 this.label8.TabIndex = 1;
3156 this.label8.Text = "Lumber Tycoon 2";
3157 this.label8.TextAlign = ContentAlignment.MiddleCenter;
3158 this.label8.Click += this.label8_Click;
3159 this.panel10.Controls.Add(this.pictureBox8);
3160 this.panel10.Controls.Add(this.label9);
3161 this.panel10.Location = new Point(3, 134);
3162 this.panel10.Name = "panel10";
3163 this.panel10.Size = new Size(105, 125);
3164 this.panel10.TabIndex = 18;
3165 this.pictureBox8.BackgroundImage = Resources.images;
3166 this.pictureBox8.BackgroundImageLayout = ImageLayout.Stretch;
3167 this.pictureBox8.Location = new Point(2, 3);
3168 this.pictureBox8.Name = "pictureBox8";
3169 this.pictureBox8.Size = new Size(100, 100);
3170 this.pictureBox8.TabIndex = 6;
3171 this.pictureBox8.TabStop = false;
3172 this.pictureBox8.Click += this.pictureBox8_Click;
3173 this.label9.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3174 this.label9.ForeColor = Color.White;
3175 this.label9.Location = new Point(4, 106);
3176 this.label9.Name = "label9";
3177 this.label9.Size = new Size(98, 19);
3178 this.label9.TabIndex = 1;
3179 this.label9.Text = "Vehicle Simulator";
3180 this.label9.TextAlign = ContentAlignment.MiddleCenter;
3181 this.label9.Click += this.label9_Click;
3182 this.panel11.Controls.Add(this.pictureBox9);
3183 this.panel11.Controls.Add(this.label10);
3184 this.panel11.Location = new Point(114, 134);
3185 this.panel11.Name = "panel11";
3186 this.panel11.Size = new Size(105, 125);
3187 this.panel11.TabIndex = 19;
3188 this.pictureBox9.BackgroundImage = Resources.fsdlfds;
3189 this.pictureBox9.BackgroundImageLayout = ImageLayout.Stretch;
3190 this.pictureBox9.Location = new Point(2, 3);
3191 this.pictureBox9.Name = "pictureBox9";
3192 this.pictureBox9.Size = new Size(100, 100);
3193 this.pictureBox9.TabIndex = 7;
3194 this.pictureBox9.TabStop = false;
3195 this.pictureBox9.Click += this.pictureBox9_Click;
3196 this.label10.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3197 this.label10.ForeColor = Color.White;
3198 this.label10.Location = new Point(4, 106);
3199 this.label10.Name = "label10";
3200 this.label10.Size = new Size(98, 19);
3201 this.label10.TabIndex = 1;
3202 this.label10.Text = "Lifting Simulator";
3203 this.label10.TextAlign = ContentAlignment.MiddleCenter;
3204 this.label10.Click += this.label10_Click;
3205 this.panel12.Controls.Add(this.label11);
3206 this.panel12.Controls.Add(this.pictureBox10);
3207 this.panel12.Location = new Point(225, 134);
3208 this.panel12.Name = "panel12";
3209 this.panel12.Size = new Size(105, 125);
3210 this.panel12.TabIndex = 20;
3211 this.label11.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3212 this.label11.ForeColor = Color.White;
3213 this.label11.Location = new Point(4, 106);
3214 this.label11.Name = "label11";
3215 this.label11.Size = new Size(98, 19);
3216 this.label11.TabIndex = 1;
3217 this.label11.Text = "BIG Paintball";
3218 this.label11.TextAlign = ContentAlignment.MiddleCenter;
3219 this.label11.Click += this.label11_Click;
3220 this.pictureBox10.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox10.BackgroundImage");
3221 this.pictureBox10.BackgroundImageLayout = ImageLayout.Stretch;
3222 this.pictureBox10.Location = new Point(2, 3);
3223 this.pictureBox10.Name = "pictureBox10";
3224 this.pictureBox10.Size = new Size(100, 100);
3225 this.pictureBox10.TabIndex = 8;
3226 this.pictureBox10.TabStop = false;
3227 this.pictureBox10.Click += this.pictureBox10_Click;
3228 this.panel13.Controls.Add(this.label12);
3229 this.panel13.Controls.Add(this.pictureBox11);
3230 this.panel13.Location = new Point(336, 134);
3231 this.panel13.Name = "panel13";
3232 this.panel13.Size = new Size(105, 125);
3233 this.panel13.TabIndex = 21;
3234 this.label12.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3235 this.label12.ForeColor = Color.White;
3236 this.label12.Location = new Point(4, 106);
3237 this.label12.Name = "label12";
3238 this.label12.Size = new Size(98, 19);
3239 this.label12.TabIndex = 1;
3240 this.label12.Text = "Strucid";
3241 this.label12.TextAlign = ContentAlignment.MiddleCenter;
3242 this.label12.Click += this.label12_Click;
3243 this.pictureBox11.BackgroundImage = Resources.f8ddcd72a04817e9b075d6533379c3e4;
3244 this.pictureBox11.BackgroundImageLayout = ImageLayout.Stretch;
3245 this.pictureBox11.Location = new Point(3, 3);
3246 this.pictureBox11.Name = "pictureBox11";
3247 this.pictureBox11.Size = new Size(100, 100);
3248 this.pictureBox11.TabIndex = 9;
3249 this.pictureBox11.TabStop = false;
3250 this.pictureBox11.Click += this.pictureBox11_Click;
3251 this.panel14.Controls.Add(this.label13);
3252 this.panel14.Controls.Add(this.pictureBox12);
3253 this.panel14.Location = new Point(447, 134);
3254 this.panel14.Name = "panel14";
3255 this.panel14.Size = new Size(105, 125);
3256 this.panel14.TabIndex = 22;
3257 this.label13.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3258 this.label13.ForeColor = Color.White;
3259 this.label13.Location = new Point(4, 106);
3260 this.label13.Name = "label13";
3261 this.label13.Size = new Size(98, 19);
3262 this.label13.TabIndex = 1;
3263 this.label13.Text = "Ro Ghoul";
3264 this.label13.TextAlign = ContentAlignment.MiddleCenter;
3265 this.label13.Click += this.label13_Click;
3266 this.pictureBox12.BackgroundImage = Resources.f7bd0c6d4ca6983b62344084b026ee9c;
3267 this.pictureBox12.BackgroundImageLayout = ImageLayout.Stretch;
3268 this.pictureBox12.Location = new Point(3, 3);
3269 this.pictureBox12.Name = "pictureBox12";
3270 this.pictureBox12.Size = new Size(100, 100);
3271 this.pictureBox12.TabIndex = 10;
3272 this.pictureBox12.TabStop = false;
3273 this.pictureBox12.Click += this.pictureBox12_Click;
3274 this.panel20.Controls.Add(this.label21);
3275 this.panel20.Controls.Add(this.pictureBox17);
3276 this.panel20.Location = new Point(3, 265);
3277 this.panel20.Name = "panel20";
3278 this.panel20.Size = new Size(105, 125);
3279 this.panel20.TabIndex = 25;
3280 this.label21.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3281 this.label21.ForeColor = Color.White;
3282 this.label21.Location = new Point(4, 106);
3283 this.label21.Name = "label21";
3284 this.label21.Size = new Size(98, 19);
3285 this.label21.TabIndex = 1;
3286 this.label21.Text = "Iron Man Sim";
3287 this.label21.TextAlign = ContentAlignment.MiddleCenter;
3288 this.label21.Click += this.label21_Click;
3289 this.pictureBox17.BackgroundImage = Resources.f395bf04bca4904e39606e7b39f071d8;
3290 this.pictureBox17.BackgroundImageLayout = ImageLayout.Stretch;
3291 this.pictureBox17.Location = new Point(3, 3);
3292 this.pictureBox17.Name = "pictureBox17";
3293 this.pictureBox17.Size = new Size(100, 100);
3294 this.pictureBox17.TabIndex = 11;
3295 this.pictureBox17.TabStop = false;
3296 this.pictureBox17.Click += this.pictureBox17_Click;
3297 this.panel19.Controls.Add(this.label20);
3298 this.panel19.Controls.Add(this.pictureBox16);
3299 this.panel19.Location = new Point(114, 265);
3300 this.panel19.Name = "panel19";
3301 this.panel19.Size = new Size(105, 125);
3302 this.panel19.TabIndex = 25;
3303 this.label20.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3304 this.label20.ForeColor = Color.White;
3305 this.label20.Location = new Point(4, 106);
3306 this.label20.Name = "label20";
3307 this.label20.Size = new Size(98, 19);
3308 this.label20.TabIndex = 1;
3309 this.label20.Text = "Pet Ranch Sim 2";
3310 this.label20.TextAlign = ContentAlignment.MiddleCenter;
3311 this.label20.Click += this.label20_Click;
3312 this.pictureBox16.BackgroundImage = Resources._1847c2b377e751feb83ac4afe372d94f;
3313 this.pictureBox16.BackgroundImageLayout = ImageLayout.Stretch;
3314 this.pictureBox16.Location = new Point(3, 3);
3315 this.pictureBox16.Name = "pictureBox16";
3316 this.pictureBox16.Size = new Size(100, 100);
3317 this.pictureBox16.TabIndex = 11;
3318 this.pictureBox16.TabStop = false;
3319 this.pictureBox16.Click += this.pictureBox16_Click;
3320 this.panel18.Controls.Add(this.label19);
3321 this.panel18.Controls.Add(this.pictureBox15);
3322 this.panel18.Location = new Point(225, 265);
3323 this.panel18.Name = "panel18";
3324 this.panel18.Size = new Size(105, 125);
3325 this.panel18.TabIndex = 25;
3326 this.label19.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3327 this.label19.ForeColor = Color.White;
3328 this.label19.Location = new Point(4, 106);
3329 this.label19.Name = "label19";
3330 this.label19.Size = new Size(98, 19);
3331 this.label19.TabIndex = 1;
3332 this.label19.Text = "Pet Simulator 2";
3333 this.label19.TextAlign = ContentAlignment.MiddleCenter;
3334 this.label19.Click += this.label19_Click;
3335 this.pictureBox15.BackgroundImage = Resources.c5c72d2d6a6563944e53f8aee3666cc4;
3336 this.pictureBox15.BackgroundImageLayout = ImageLayout.Stretch;
3337 this.pictureBox15.Location = new Point(3, 3);
3338 this.pictureBox15.Name = "pictureBox15";
3339 this.pictureBox15.Size = new Size(100, 100);
3340 this.pictureBox15.TabIndex = 11;
3341 this.pictureBox15.TabStop = false;
3342 this.pictureBox15.Click += this.pictureBox15_Click;
3343 this.panel17.Controls.Add(this.label18);
3344 this.panel17.Controls.Add(this.pictureBox2);
3345 this.panel17.Location = new Point(336, 265);
3346 this.panel17.Name = "panel17";
3347 this.panel17.Size = new Size(105, 125);
3348 this.panel17.TabIndex = 25;
3349 this.label18.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3350 this.label18.ForeColor = Color.White;
3351 this.label18.Location = new Point(4, 106);
3352 this.label18.Name = "label18";
3353 this.label18.Size = new Size(98, 19);
3354 this.label18.TabIndex = 1;
3355 this.label18.Text = "Gun Simulator";
3356 this.label18.TextAlign = ContentAlignment.MiddleCenter;
3357 this.label18.Click += this.label18_Click;
3358 this.pictureBox2.BackgroundImage = Resources._9f88f6c03c9e7a26df5f2dc7d1890c88;
3359 this.pictureBox2.BackgroundImageLayout = ImageLayout.Stretch;
3360 this.pictureBox2.Location = new Point(3, 3);
3361 this.pictureBox2.Name = "pictureBox2";
3362 this.pictureBox2.Size = new Size(100, 100);
3363 this.pictureBox2.TabIndex = 11;
3364 this.pictureBox2.TabStop = false;
3365 this.pictureBox2.Click += this.pictureBox2_Click_1;
3366 this.panel15.Controls.Add(this.label14);
3367 this.panel15.Controls.Add(this.pictureBox14);
3368 this.panel15.Location = new Point(447, 265);
3369 this.panel15.Name = "panel15";
3370 this.panel15.Size = new Size(105, 125);
3371 this.panel15.TabIndex = 23;
3372 this.label14.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3373 this.label14.ForeColor = Color.White;
3374 this.label14.Location = new Point(4, 106);
3375 this.label14.Name = "label14";
3376 this.label14.Size = new Size(98, 19);
3377 this.label14.TabIndex = 1;
3378 this.label14.Text = "BeeSwarm Sim";
3379 this.label14.TextAlign = ContentAlignment.MiddleCenter;
3380 this.label14.Click += this.label14_Click;
3381 this.pictureBox14.BackgroundImage = Resources.bee;
3382 this.pictureBox14.BackgroundImageLayout = ImageLayout.Stretch;
3383 this.pictureBox14.Location = new Point(3, 3);
3384 this.pictureBox14.Name = "pictureBox14";
3385 this.pictureBox14.Size = new Size(100, 100);
3386 this.pictureBox14.TabIndex = 12;
3387 this.pictureBox14.TabStop = false;
3388 this.pictureBox14.Click += this.pictureBox14_Click;
3389 this.panel25.Controls.Add(this.label26);
3390 this.panel25.Controls.Add(this.pictureBox22);
3391 this.panel25.Location = new Point(3, 396);
3392 this.panel25.Name = "panel25";
3393 this.panel25.Size = new Size(105, 125);
3394 this.panel25.TabIndex = 25;
3395 this.label26.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3396 this.label26.ForeColor = Color.White;
3397 this.label26.Location = new Point(4, 106);
3398 this.label26.Name = "label26";
3399 this.label26.Size = new Size(98, 19);
3400 this.label26.TabIndex = 1;
3401 this.label26.Text = "Giant Survival";
3402 this.label26.TextAlign = ContentAlignment.MiddleCenter;
3403 this.label26.Click += this.label26_Click;
3404 this.pictureBox22.BackgroundImage = Resources.dfsf;
3405 this.pictureBox22.BackgroundImageLayout = ImageLayout.Stretch;
3406 this.pictureBox22.Location = new Point(3, 3);
3407 this.pictureBox22.Name = "pictureBox22";
3408 this.pictureBox22.Size = new Size(100, 100);
3409 this.pictureBox22.TabIndex = 11;
3410 this.pictureBox22.TabStop = false;
3411 this.pictureBox22.Click += this.pictureBox22_Click;
3412 this.panel23.Controls.Add(this.label24);
3413 this.panel23.Controls.Add(this.pictureBox20);
3414 this.panel23.Location = new Point(114, 396);
3415 this.panel23.Name = "panel23";
3416 this.panel23.Size = new Size(105, 125);
3417 this.panel23.TabIndex = 25;
3418 this.label24.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3419 this.label24.ForeColor = Color.White;
3420 this.label24.Location = new Point(4, 106);
3421 this.label24.Name = "label24";
3422 this.label24.Size = new Size(98, 19);
3423 this.label24.TabIndex = 1;
3424 this.label24.Text = "Wood Chop Sim";
3425 this.label24.TextAlign = ContentAlignment.MiddleCenter;
3426 this.label24.Click += this.label24_Click;
3427 this.pictureBox20.BackgroundImage = Resources.d84456ed26187f08623d68521995ac72;
3428 this.pictureBox20.BackgroundImageLayout = ImageLayout.Stretch;
3429 this.pictureBox20.Location = new Point(3, 3);
3430 this.pictureBox20.Name = "pictureBox20";
3431 this.pictureBox20.Size = new Size(100, 100);
3432 this.pictureBox20.TabIndex = 11;
3433 this.pictureBox20.TabStop = false;
3434 this.pictureBox20.Click += this.pictureBox20_Click;
3435 this.panel22.Controls.Add(this.label23);
3436 this.panel22.Controls.Add(this.pictureBox19);
3437 this.panel22.Location = new Point(225, 396);
3438 this.panel22.Name = "panel22";
3439 this.panel22.Size = new Size(105, 125);
3440 this.panel22.TabIndex = 25;
3441 this.label23.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3442 this.label23.ForeColor = Color.White;
3443 this.label23.Location = new Point(4, 106);
3444 this.label23.Name = "label23";
3445 this.label23.Size = new Size(98, 19);
3446 this.label23.TabIndex = 1;
3447 this.label23.Text = "Booga Booga";
3448 this.label23.TextAlign = ContentAlignment.MiddleCenter;
3449 this.label23.Click += this.label23_Click;
3450 this.pictureBox19.BackgroundImage = Resources.booga_booga;
3451 this.pictureBox19.BackgroundImageLayout = ImageLayout.Stretch;
3452 this.pictureBox19.Location = new Point(3, 3);
3453 this.pictureBox19.Name = "pictureBox19";
3454 this.pictureBox19.Size = new Size(100, 100);
3455 this.pictureBox19.TabIndex = 11;
3456 this.pictureBox19.TabStop = false;
3457 this.pictureBox19.Click += this.pictureBox19_Click;
3458 this.panel21.Controls.Add(this.label22);
3459 this.panel21.Controls.Add(this.pictureBox18);
3460 this.panel21.Location = new Point(336, 396);
3461 this.panel21.Name = "panel21";
3462 this.panel21.Size = new Size(105, 125);
3463 this.panel21.TabIndex = 25;
3464 this.label22.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3465 this.label22.ForeColor = Color.White;
3466 this.label22.Location = new Point(4, 106);
3467 this.label22.Name = "label22";
3468 this.label22.Size = new Size(98, 19);
3469 this.label22.TabIndex = 1;
3470 this.label22.Text = "SkyWars";
3471 this.label22.TextAlign = ContentAlignment.MiddleCenter;
3472 this.label22.Click += this.label22_Click;
3473 this.pictureBox18.BackgroundImage = Resources.d60d6ba407d619041e0236c8aaece1381;
3474 this.pictureBox18.BackgroundImageLayout = ImageLayout.Stretch;
3475 this.pictureBox18.Location = new Point(3, 3);
3476 this.pictureBox18.Name = "pictureBox18";
3477 this.pictureBox18.Size = new Size(100, 100);
3478 this.pictureBox18.TabIndex = 11;
3479 this.pictureBox18.TabStop = false;
3480 this.pictureBox18.Click += this.pictureBox18_Click;
3481 this.panel24.Controls.Add(this.label25);
3482 this.panel24.Controls.Add(this.pictureBox21);
3483 this.panel24.Location = new Point(447, 396);
3484 this.panel24.Name = "panel24";
3485 this.panel24.Size = new Size(105, 125);
3486 this.panel24.TabIndex = 25;
3487 this.label25.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3488 this.label25.ForeColor = Color.White;
3489 this.label25.Location = new Point(4, 106);
3490 this.label25.Name = "label25";
3491 this.label25.Size = new Size(98, 19);
3492 this.label25.TabIndex = 1;
3493 this.label25.Text = "Robot INC";
3494 this.label25.TextAlign = ContentAlignment.MiddleCenter;
3495 this.label25.Click += this.label25_Click;
3496 this.pictureBox21.BackgroundImage = Resources.dc4ac845fe71e7de2498a90ae35bab62;
3497 this.pictureBox21.BackgroundImageLayout = ImageLayout.Stretch;
3498 this.pictureBox21.Location = new Point(3, 3);
3499 this.pictureBox21.Name = "pictureBox21";
3500 this.pictureBox21.Size = new Size(100, 100);
3501 this.pictureBox21.TabIndex = 11;
3502 this.pictureBox21.TabStop = false;
3503 this.pictureBox21.Click += this.pictureBox21_Click;
3504 this.panel16.Controls.Add(this.label15);
3505 this.panel16.Controls.Add(this.pictureBox13);
3506 this.panel16.Location = new Point(3, 527);
3507 this.panel16.Name = "panel16";
3508 this.panel16.Size = new Size(105, 125);
3509 this.panel16.TabIndex = 24;
3510 this.label15.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3511 this.label15.ForeColor = Color.White;
3512 this.label15.Location = new Point(4, 106);
3513 this.label15.Name = "label15";
3514 this.label15.Size = new Size(98, 19);
3515 this.label15.TabIndex = 1;
3516 this.label15.Text = "Flight Simulator";
3517 this.label15.TextAlign = ContentAlignment.MiddleCenter;
3518 this.label15.Click += this.label15_Click;
3519 this.pictureBox13.BackgroundImage = Resources.d60d6ba407d619041e0236c8aaece1382;
3520 this.pictureBox13.BackgroundImageLayout = ImageLayout.Stretch;
3521 this.pictureBox13.Location = new Point(3, 3);
3522 this.pictureBox13.Name = "pictureBox13";
3523 this.pictureBox13.Size = new Size(100, 100);
3524 this.pictureBox13.TabIndex = 11;
3525 this.pictureBox13.TabStop = false;
3526 this.pictureBox13.Click += this.pictureBox13_Click;
3527 this.panel26.Controls.Add(this.label27);
3528 this.panel26.Controls.Add(this.pictureBox23);
3529 this.panel26.Location = new Point(114, 527);
3530 this.panel26.Name = "panel26";
3531 this.panel26.Size = new Size(105, 125);
3532 this.panel26.TabIndex = 25;
3533 this.label27.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3534 this.label27.ForeColor = Color.White;
3535 this.label27.Location = new Point(4, 106);
3536 this.label27.Name = "label27";
3537 this.label27.Size = new Size(98, 19);
3538 this.label27.TabIndex = 1;
3539 this.label27.Text = "Counter Blox";
3540 this.label27.TextAlign = ContentAlignment.MiddleCenter;
3541 this.label27.Click += this.label27_Click;
3542 this.pictureBox23.BackgroundImage = Resources.dfsfdsf;
3543 this.pictureBox23.BackgroundImageLayout = ImageLayout.Stretch;
3544 this.pictureBox23.Location = new Point(3, 3);
3545 this.pictureBox23.Name = "pictureBox23";
3546 this.pictureBox23.Size = new Size(100, 100);
3547 this.pictureBox23.TabIndex = 11;
3548 this.pictureBox23.TabStop = false;
3549 this.pictureBox23.Click += this.pictureBox23_Click;
3550 this.panel27.Controls.Add(this.label28);
3551 this.panel27.Controls.Add(this.pictureBox24);
3552 this.panel27.Location = new Point(225, 527);
3553 this.panel27.Name = "panel27";
3554 this.panel27.Size = new Size(105, 125);
3555 this.panel27.TabIndex = 26;
3556 this.label28.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3557 this.label28.ForeColor = Color.White;
3558 this.label28.Location = new Point(4, 106);
3559 this.label28.Name = "label28";
3560 this.label28.Size = new Size(98, 19);
3561 this.label28.TabIndex = 1;
3562 this.label28.Text = "Arsenal";
3563 this.label28.TextAlign = ContentAlignment.MiddleCenter;
3564 this.label28.Click += this.label28_Click;
3565 this.pictureBox24.BackgroundImage = Resources._1617f9f8912b0d63f5cb5184ebe7dc6e;
3566 this.pictureBox24.BackgroundImageLayout = ImageLayout.Stretch;
3567 this.pictureBox24.Location = new Point(3, 3);
3568 this.pictureBox24.Name = "pictureBox24";
3569 this.pictureBox24.Size = new Size(100, 100);
3570 this.pictureBox24.TabIndex = 11;
3571 this.pictureBox24.TabStop = false;
3572 this.pictureBox24.Click += this.pictureBox24_Click;
3573 this.panel29.Controls.Add(this.label30);
3574 this.panel29.Controls.Add(this.pictureBox26);
3575 this.panel29.Location = new Point(336, 527);
3576 this.panel29.Name = "panel29";
3577 this.panel29.Size = new Size(105, 125);
3578 this.panel29.TabIndex = 25;
3579 this.label30.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3580 this.label30.ForeColor = Color.White;
3581 this.label30.Location = new Point(4, 106);
3582 this.label30.Name = "label30";
3583 this.label30.Size = new Size(98, 19);
3584 this.label30.TabIndex = 1;
3585 this.label30.Text = "SharkBite";
3586 this.label30.TextAlign = ContentAlignment.MiddleCenter;
3587 this.label30.Click += this.label30_Click;
3588 this.pictureBox26.BackgroundImage = Resources._15f5d853013d415795a53c2e7870eb91;
3589 this.pictureBox26.BackgroundImageLayout = ImageLayout.Stretch;
3590 this.pictureBox26.Location = new Point(3, 3);
3591 this.pictureBox26.Name = "pictureBox26";
3592 this.pictureBox26.Size = new Size(100, 100);
3593 this.pictureBox26.TabIndex = 11;
3594 this.pictureBox26.TabStop = false;
3595 this.pictureBox26.Click += this.pictureBox26_Click;
3596 this.panel30.Controls.Add(this.label31);
3597 this.panel30.Controls.Add(this.pictureBox27);
3598 this.panel30.Location = new Point(447, 527);
3599 this.panel30.Name = "panel30";
3600 this.panel30.Size = new Size(105, 125);
3601 this.panel30.TabIndex = 26;
3602 this.label31.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3603 this.label31.ForeColor = Color.White;
3604 this.label31.Location = new Point(4, 106);
3605 this.label31.Name = "label31";
3606 this.label31.Size = new Size(98, 19);
3607 this.label31.TabIndex = 1;
3608 this.label31.Text = "APOC";
3609 this.label31.TextAlign = ContentAlignment.MiddleCenter;
3610 this.label31.Click += this.label31_Click;
3611 this.pictureBox27.BackgroundImage = Resources._015364f5314ba1321ac237cc2a4488c6;
3612 this.pictureBox27.BackgroundImageLayout = ImageLayout.Stretch;
3613 this.pictureBox27.Location = new Point(3, 3);
3614 this.pictureBox27.Name = "pictureBox27";
3615 this.pictureBox27.Size = new Size(100, 100);
3616 this.pictureBox27.TabIndex = 11;
3617 this.pictureBox27.TabStop = false;
3618 this.pictureBox27.Click += this.pictureBox27_Click;
3619 this.panel31.Controls.Add(this.label32);
3620 this.panel31.Controls.Add(this.pictureBox28);
3621 this.panel31.Location = new Point(3, 658);
3622 this.panel31.Name = "panel31";
3623 this.panel31.Size = new Size(105, 125);
3624 this.panel31.TabIndex = 27;
3625 this.label32.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3626 this.label32.ForeColor = Color.White;
3627 this.label32.Location = new Point(4, 106);
3628 this.label32.Name = "label32";
3629 this.label32.Size = new Size(98, 19);
3630 this.label32.TabIndex = 1;
3631 this.label32.Text = "Work At Pizza";
3632 this.label32.TextAlign = ContentAlignment.MiddleCenter;
3633 this.label32.Click += this.label32_Click;
3634 this.pictureBox28.BackgroundImage = Resources._1c8744b9e106c7f9f28eb49c4407654a;
3635 this.pictureBox28.BackgroundImageLayout = ImageLayout.Stretch;
3636 this.pictureBox28.Location = new Point(3, 3);
3637 this.pictureBox28.Name = "pictureBox28";
3638 this.pictureBox28.Size = new Size(100, 100);
3639 this.pictureBox28.TabIndex = 11;
3640 this.pictureBox28.TabStop = false;
3641 this.pictureBox28.Click += this.pictureBox28_Click;
3642 this.panel32.Controls.Add(this.label33);
3643 this.panel32.Controls.Add(this.pictureBox29);
3644 this.panel32.Location = new Point(114, 658);
3645 this.panel32.Name = "panel32";
3646 this.panel32.Size = new Size(105, 125);
3647 this.panel32.TabIndex = 28;
3648 this.label33.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3649 this.label33.ForeColor = Color.White;
3650 this.label33.Location = new Point(4, 106);
3651 this.label33.Name = "label33";
3652 this.label33.Size = new Size(98, 19);
3653 this.label33.TabIndex = 1;
3654 this.label33.Text = "Gift Simulator";
3655 this.label33.TextAlign = ContentAlignment.MiddleCenter;
3656 this.label33.Click += this.label33_Click;
3657 this.pictureBox29.BackgroundImage = Resources._1fe536b2e88be3e11568505119b8ee02;
3658 this.pictureBox29.BackgroundImageLayout = ImageLayout.Stretch;
3659 this.pictureBox29.Location = new Point(3, 3);
3660 this.pictureBox29.Name = "pictureBox29";
3661 this.pictureBox29.Size = new Size(100, 100);
3662 this.pictureBox29.TabIndex = 11;
3663 this.pictureBox29.TabStop = false;
3664 this.pictureBox29.Click += this.pictureBox29_Click;
3665 this.panel33.Controls.Add(this.label34);
3666 this.panel33.Controls.Add(this.pictureBox30);
3667 this.panel33.Location = new Point(225, 658);
3668 this.panel33.Name = "panel33";
3669 this.panel33.Size = new Size(105, 125);
3670 this.panel33.TabIndex = 29;
3671 this.label34.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3672 this.label34.ForeColor = Color.White;
3673 this.label34.Location = new Point(4, 106);
3674 this.label34.Name = "label34";
3675 this.label34.Size = new Size(98, 19);
3676 this.label34.TabIndex = 1;
3677 this.label34.Text = "Boxing Sim.";
3678 this.label34.TextAlign = ContentAlignment.MiddleCenter;
3679 this.label34.Click += this.label34_Click;
3680 this.pictureBox30.BackgroundImage = Resources._274f77ff1808b0239fa7edfb71534d36;
3681 this.pictureBox30.BackgroundImageLayout = ImageLayout.Stretch;
3682 this.pictureBox30.Location = new Point(3, 3);
3683 this.pictureBox30.Name = "pictureBox30";
3684 this.pictureBox30.Size = new Size(100, 100);
3685 this.pictureBox30.TabIndex = 11;
3686 this.pictureBox30.TabStop = false;
3687 this.pictureBox30.Click += this.pictureBox30_Click;
3688 this.panel34.Controls.Add(this.label35);
3689 this.panel34.Controls.Add(this.pictureBox31);
3690 this.panel34.Location = new Point(336, 658);
3691 this.panel34.Name = "panel34";
3692 this.panel34.Size = new Size(105, 125);
3693 this.panel34.TabIndex = 30;
3694 this.label35.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3695 this.label35.ForeColor = Color.White;
3696 this.label35.Location = new Point(4, 106);
3697 this.label35.Name = "label35";
3698 this.label35.Size = new Size(98, 19);
3699 this.label35.TabIndex = 1;
3700 this.label35.Text = "Anime Fighting sim";
3701 this.label35.TextAlign = ContentAlignment.MiddleCenter;
3702 this.label35.Click += this.label35_Click;
3703 this.pictureBox31.BackgroundImage = Resources._506e1ecd4dd23fd14b94c9ba02633f9b;
3704 this.pictureBox31.BackgroundImageLayout = ImageLayout.Stretch;
3705 this.pictureBox31.Location = new Point(3, 3);
3706 this.pictureBox31.Name = "pictureBox31";
3707 this.pictureBox31.Size = new Size(100, 100);
3708 this.pictureBox31.TabIndex = 11;
3709 this.pictureBox31.TabStop = false;
3710 this.pictureBox31.Click += this.pictureBox31_Click;
3711 this.panel35.Controls.Add(this.label36);
3712 this.panel35.Controls.Add(this.pictureBox32);
3713 this.panel35.Location = new Point(447, 658);
3714 this.panel35.Name = "panel35";
3715 this.panel35.Size = new Size(105, 125);
3716 this.panel35.TabIndex = 31;
3717 this.label36.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3718 this.label36.ForeColor = Color.White;
3719 this.label36.Location = new Point(4, 106);
3720 this.label36.Name = "label36";
3721 this.label36.Size = new Size(98, 19);
3722 this.label36.TabIndex = 1;
3723 this.label36.Text = "Magician Simulator";
3724 this.label36.TextAlign = ContentAlignment.MiddleCenter;
3725 this.label36.Click += this.label36_Click;
3726 this.pictureBox32.BackgroundImage = Resources._61ca09902b126f71443f1af73aef12e3;
3727 this.pictureBox32.BackgroundImageLayout = ImageLayout.Stretch;
3728 this.pictureBox32.Location = new Point(3, 3);
3729 this.pictureBox32.Name = "pictureBox32";
3730 this.pictureBox32.Size = new Size(100, 100);
3731 this.pictureBox32.TabIndex = 11;
3732 this.pictureBox32.TabStop = false;
3733 this.pictureBox32.Click += this.pictureBox32_Click;
3734 this.panel36.Controls.Add(this.label37);
3735 this.panel36.Controls.Add(this.pictureBox33);
3736 this.panel36.Location = new Point(3, 789);
3737 this.panel36.Name = "panel36";
3738 this.panel36.Size = new Size(105, 125);
3739 this.panel36.TabIndex = 32;
3740 this.label37.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3741 this.label37.ForeColor = Color.White;
3742 this.label37.Location = new Point(4, 106);
3743 this.label37.Name = "label37";
3744 this.label37.Size = new Size(98, 19);
3745 this.label37.TabIndex = 1;
3746 this.label37.Text = "OPU";
3747 this.label37.TextAlign = ContentAlignment.MiddleCenter;
3748 this.label37.Click += this.label37_Click;
3749 this.pictureBox33.BackgroundImage = Resources._7e3a31541d42756220318cab44925c80;
3750 this.pictureBox33.BackgroundImageLayout = ImageLayout.Stretch;
3751 this.pictureBox33.Location = new Point(3, 3);
3752 this.pictureBox33.Name = "pictureBox33";
3753 this.pictureBox33.Size = new Size(100, 100);
3754 this.pictureBox33.TabIndex = 11;
3755 this.pictureBox33.TabStop = false;
3756 this.pictureBox33.Click += this.pictureBox33_Click;
3757 this.panel37.Controls.Add(this.label38);
3758 this.panel37.Controls.Add(this.pictureBox34);
3759 this.panel37.Location = new Point(114, 789);
3760 this.panel37.Name = "panel37";
3761 this.panel37.Size = new Size(105, 125);
3762 this.panel37.TabIndex = 33;
3763 this.label38.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3764 this.label38.ForeColor = Color.White;
3765 this.label38.Location = new Point(4, 106);
3766 this.label38.Name = "label38";
3767 this.label38.Size = new Size(98, 19);
3768 this.label38.TabIndex = 1;
3769 this.label38.Text = "A Bizzare Day";
3770 this.label38.TextAlign = ContentAlignment.MiddleCenter;
3771 this.label38.Click += this.label38_Click;
3772 this.pictureBox34.BackgroundImage = Resources._817c75fe957d713f974fc9a3aa33a2f4;
3773 this.pictureBox34.BackgroundImageLayout = ImageLayout.Stretch;
3774 this.pictureBox34.Location = new Point(3, 3);
3775 this.pictureBox34.Name = "pictureBox34";
3776 this.pictureBox34.Size = new Size(100, 100);
3777 this.pictureBox34.TabIndex = 11;
3778 this.pictureBox34.TabStop = false;
3779 this.pictureBox34.Click += this.pictureBox34_Click;
3780 this.panel38.Controls.Add(this.label39);
3781 this.panel38.Controls.Add(this.pictureBox35);
3782 this.panel38.Location = new Point(225, 789);
3783 this.panel38.Name = "panel38";
3784 this.panel38.Size = new Size(105, 125);
3785 this.panel38.TabIndex = 34;
3786 this.label39.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3787 this.label39.ForeColor = Color.White;
3788 this.label39.Location = new Point(4, 106);
3789 this.label39.Name = "label39";
3790 this.label39.Size = new Size(98, 19);
3791 this.label39.TabIndex = 1;
3792 this.label39.Text = "Present Simulator";
3793 this.label39.TextAlign = ContentAlignment.MiddleCenter;
3794 this.label39.Click += this.label39_Click;
3795 this.pictureBox35.BackgroundImage = Resources._8598b74f3137cc24cc10ed4fb64ff29b;
3796 this.pictureBox35.BackgroundImageLayout = ImageLayout.Stretch;
3797 this.pictureBox35.Location = new Point(3, 3);
3798 this.pictureBox35.Name = "pictureBox35";
3799 this.pictureBox35.Size = new Size(100, 100);
3800 this.pictureBox35.TabIndex = 11;
3801 this.pictureBox35.TabStop = false;
3802 this.pictureBox35.Click += this.pictureBox35_Click;
3803 this.panel39.Controls.Add(this.label40);
3804 this.panel39.Controls.Add(this.pictureBox36);
3805 this.panel39.Location = new Point(336, 789);
3806 this.panel39.Name = "panel39";
3807 this.panel39.Size = new Size(105, 125);
3808 this.panel39.TabIndex = 35;
3809 this.label40.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3810 this.label40.ForeColor = Color.White;
3811 this.label40.Location = new Point(4, 106);
3812 this.label40.Name = "label40";
3813 this.label40.Size = new Size(98, 19);
3814 this.label40.TabIndex = 1;
3815 this.label40.Text = "Zombie Strike";
3816 this.label40.TextAlign = ContentAlignment.MiddleCenter;
3817 this.label40.Click += this.label40_Click;
3818 this.pictureBox36.BackgroundImage = Resources._8dc8b7b1ed2c4c5b5dfbd9cc2cfc92a6;
3819 this.pictureBox36.BackgroundImageLayout = ImageLayout.Stretch;
3820 this.pictureBox36.Location = new Point(3, 3);
3821 this.pictureBox36.Name = "pictureBox36";
3822 this.pictureBox36.Size = new Size(100, 100);
3823 this.pictureBox36.TabIndex = 11;
3824 this.pictureBox36.TabStop = false;
3825 this.pictureBox36.Click += this.pictureBox36_Click;
3826 this.panel40.Controls.Add(this.label41);
3827 this.panel40.Controls.Add(this.pictureBox37);
3828 this.panel40.Location = new Point(447, 789);
3829 this.panel40.Name = "panel40";
3830 this.panel40.Size = new Size(105, 125);
3831 this.panel40.TabIndex = 36;
3832 this.label41.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3833 this.label41.ForeColor = Color.White;
3834 this.label41.Location = new Point(4, 106);
3835 this.label41.Name = "label41";
3836 this.label41.Size = new Size(98, 19);
3837 this.label41.TabIndex = 1;
3838 this.label41.Text = "SPTS";
3839 this.label41.TextAlign = ContentAlignment.MiddleCenter;
3840 this.label41.Click += this.label41_Click;
3841 this.pictureBox37.BackgroundImage = Resources._9e4d984df21f159f14907f8b6f5e4b09;
3842 this.pictureBox37.BackgroundImageLayout = ImageLayout.Stretch;
3843 this.pictureBox37.Location = new Point(3, 3);
3844 this.pictureBox37.Name = "pictureBox37";
3845 this.pictureBox37.Size = new Size(100, 100);
3846 this.pictureBox37.TabIndex = 11;
3847 this.pictureBox37.TabStop = false;
3848 this.pictureBox37.Click += this.pictureBox37_Click;
3849 this.panel41.Controls.Add(this.label42);
3850 this.panel41.Controls.Add(this.pictureBox38);
3851 this.panel41.Location = new Point(3, 920);
3852 this.panel41.Name = "panel41";
3853 this.panel41.Size = new Size(105, 125);
3854 this.panel41.TabIndex = 37;
3855 this.label42.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3856 this.label42.ForeColor = Color.White;
3857 this.label42.Location = new Point(4, 106);
3858 this.label42.Name = "label42";
3859 this.label42.Size = new Size(98, 19);
3860 this.label42.TabIndex = 1;
3861 this.label42.Text = "LOL Tycoon";
3862 this.label42.TextAlign = ContentAlignment.MiddleCenter;
3863 this.label42.Click += this.label42_Click;
3864 this.pictureBox38.BackgroundImage = Resources.aae658dca2004734c0b946c3d4c76b4b;
3865 this.pictureBox38.BackgroundImageLayout = ImageLayout.Stretch;
3866 this.pictureBox38.Location = new Point(3, 3);
3867 this.pictureBox38.Name = "pictureBox38";
3868 this.pictureBox38.Size = new Size(100, 100);
3869 this.pictureBox38.TabIndex = 11;
3870 this.pictureBox38.TabStop = false;
3871 this.pictureBox38.Click += this.pictureBox38_Click;
3872 this.panel42.Controls.Add(this.label43);
3873 this.panel42.Controls.Add(this.pictureBox39);
3874 this.panel42.Location = new Point(114, 920);
3875 this.panel42.Name = "panel42";
3876 this.panel42.Size = new Size(105, 125);
3877 this.panel42.TabIndex = 38;
3878 this.label43.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3879 this.label43.ForeColor = Color.White;
3880 this.label43.Location = new Point(4, 106);
3881 this.label43.Name = "label43";
3882 this.label43.Size = new Size(98, 19);
3883 this.label43.TabIndex = 1;
3884 this.label43.Text = "D-DAY";
3885 this.label43.TextAlign = ContentAlignment.MiddleCenter;
3886 this.label43.Click += this.label43_Click;
3887 this.pictureBox39.BackgroundImage = Resources.b420438f7a2152d53147cff9bb813e10;
3888 this.pictureBox39.BackgroundImageLayout = ImageLayout.Stretch;
3889 this.pictureBox39.Location = new Point(3, 3);
3890 this.pictureBox39.Name = "pictureBox39";
3891 this.pictureBox39.Size = new Size(100, 100);
3892 this.pictureBox39.TabIndex = 11;
3893 this.pictureBox39.TabStop = false;
3894 this.pictureBox39.Click += this.pictureBox39_Click;
3895 this.panel43.Controls.Add(this.label44);
3896 this.panel43.Controls.Add(this.pictureBox40);
3897 this.panel43.Location = new Point(225, 920);
3898 this.panel43.Name = "panel43";
3899 this.panel43.Size = new Size(105, 125);
3900 this.panel43.TabIndex = 39;
3901 this.label44.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3902 this.label44.ForeColor = Color.White;
3903 this.label44.Location = new Point(4, 106);
3904 this.label44.Name = "label44";
3905 this.label44.Size = new Size(98, 19);
3906 this.label44.TabIndex = 1;
3907 this.label44.Text = "Slicing Simulator";
3908 this.label44.TextAlign = ContentAlignment.MiddleCenter;
3909 this.label44.Click += this.label44_Click;
3910 this.pictureBox40.BackgroundImage = Resources.ba9ecd2c396a513d938103dd4d5f8495;
3911 this.pictureBox40.BackgroundImageLayout = ImageLayout.Stretch;
3912 this.pictureBox40.Location = new Point(3, 3);
3913 this.pictureBox40.Name = "pictureBox40";
3914 this.pictureBox40.Size = new Size(100, 100);
3915 this.pictureBox40.TabIndex = 11;
3916 this.pictureBox40.TabStop = false;
3917 this.pictureBox40.Click += this.pictureBox40_Click;
3918 this.panel44.Controls.Add(this.label45);
3919 this.panel44.Controls.Add(this.pictureBox41);
3920 this.panel44.Location = new Point(336, 920);
3921 this.panel44.Name = "panel44";
3922 this.panel44.Size = new Size(105, 125);
3923 this.panel44.TabIndex = 40;
3924 this.label45.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3925 this.label45.ForeColor = Color.White;
3926 this.label45.Location = new Point(4, 106);
3927 this.label45.Name = "label45";
3928 this.label45.Size = new Size(98, 19);
3929 this.label45.TabIndex = 1;
3930 this.label45.Text = "Magic Simulator";
3931 this.label45.TextAlign = ContentAlignment.MiddleCenter;
3932 this.label45.Click += this.label45_Click_1;
3933 this.pictureBox41.BackgroundImage = Resources.bec607b36039edbde75b314779f8c318;
3934 this.pictureBox41.BackgroundImageLayout = ImageLayout.Stretch;
3935 this.pictureBox41.Location = new Point(3, 3);
3936 this.pictureBox41.Name = "pictureBox41";
3937 this.pictureBox41.Size = new Size(100, 100);
3938 this.pictureBox41.TabIndex = 11;
3939 this.pictureBox41.TabStop = false;
3940 this.pictureBox41.Click += this.pictureBox41_Click;
3941 this.panel45.Controls.Add(this.label46);
3942 this.panel45.Controls.Add(this.pictureBox42);
3943 this.panel45.Location = new Point(447, 920);
3944 this.panel45.Name = "panel45";
3945 this.panel45.Size = new Size(105, 125);
3946 this.panel45.TabIndex = 41;
3947 this.label46.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3948 this.label46.ForeColor = Color.White;
3949 this.label46.Location = new Point(4, 106);
3950 this.label46.Name = "label46";
3951 this.label46.Size = new Size(98, 19);
3952 this.label46.TabIndex = 1;
3953 this.label46.Text = "Saber Simulator";
3954 this.label46.TextAlign = ContentAlignment.MiddleCenter;
3955 this.label46.Click += this.label46_Click;
3956 this.pictureBox42.BackgroundImage = Resources.download1;
3957 this.pictureBox42.BackgroundImageLayout = ImageLayout.Stretch;
3958 this.pictureBox42.Location = new Point(3, 3);
3959 this.pictureBox42.Name = "pictureBox42";
3960 this.pictureBox42.Size = new Size(100, 100);
3961 this.pictureBox42.TabIndex = 11;
3962 this.pictureBox42.TabStop = false;
3963 this.pictureBox42.Click += this.pictureBox42_Click;
3964 this.panel46.Controls.Add(this.label47);
3965 this.panel46.Controls.Add(this.pictureBox43);
3966 this.panel46.Location = new Point(3, 1051);
3967 this.panel46.Name = "panel46";
3968 this.panel46.Size = new Size(105, 125);
3969 this.panel46.TabIndex = 42;
3970 this.label47.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3971 this.label47.ForeColor = Color.White;
3972 this.label47.Location = new Point(4, 106);
3973 this.label47.Name = "label47";
3974 this.label47.Size = new Size(98, 19);
3975 this.label47.TabIndex = 1;
3976 this.label47.Text = "Fighting Simulator";
3977 this.label47.TextAlign = ContentAlignment.MiddleCenter;
3978 this.label47.Click += this.label47_Click;
3979 this.pictureBox43.BackgroundImage = Resources.fighting;
3980 this.pictureBox43.BackgroundImageLayout = ImageLayout.Stretch;
3981 this.pictureBox43.Location = new Point(3, 3);
3982 this.pictureBox43.Name = "pictureBox43";
3983 this.pictureBox43.Size = new Size(100, 100);
3984 this.pictureBox43.TabIndex = 11;
3985 this.pictureBox43.TabStop = false;
3986 this.pictureBox43.Click += this.pictureBox43_Click;
3987 this.panel47.Controls.Add(this.label48);
3988 this.panel47.Controls.Add(this.pictureBox44);
3989 this.panel47.Location = new Point(114, 1051);
3990 this.panel47.Name = "panel47";
3991 this.panel47.Size = new Size(105, 125);
3992 this.panel47.TabIndex = 43;
3993 this.label48.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
3994 this.label48.ForeColor = Color.White;
3995 this.label48.Location = new Point(4, 106);
3996 this.label48.Name = "label48";
3997 this.label48.Size = new Size(98, 19);
3998 this.label48.TabIndex = 1;
3999 this.label48.Text = "Jailbreak";
4000 this.label48.TextAlign = ContentAlignment.MiddleCenter;
4001 this.label48.Click += this.label48_Click;
4002 this.pictureBox44.BackgroundImage = Resources.jail;
4003 this.pictureBox44.BackgroundImageLayout = ImageLayout.Stretch;
4004 this.pictureBox44.Location = new Point(3, 3);
4005 this.pictureBox44.Name = "pictureBox44";
4006 this.pictureBox44.Size = new Size(100, 100);
4007 this.pictureBox44.TabIndex = 11;
4008 this.pictureBox44.TabStop = false;
4009 this.pictureBox44.Click += this.pictureBox44_Click;
4010 this.panel48.Controls.Add(this.label49);
4011 this.panel48.Controls.Add(this.pictureBox45);
4012 this.panel48.Location = new Point(225, 1051);
4013 this.panel48.Name = "panel48";
4014 this.panel48.Size = new Size(105, 125);
4015 this.panel48.TabIndex = 44;
4016 this.label49.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4017 this.label49.ForeColor = Color.White;
4018 this.label49.Location = new Point(4, 106);
4019 this.label49.Name = "label49";
4020 this.label49.Size = new Size(98, 19);
4021 this.label49.TabIndex = 1;
4022 this.label49.Text = "MadCity";
4023 this.label49.TextAlign = ContentAlignment.MiddleCenter;
4024 this.label49.Click += this.label49_Click;
4025 this.pictureBox45.BackgroundImage = Resources.mad;
4026 this.pictureBox45.BackgroundImageLayout = ImageLayout.Stretch;
4027 this.pictureBox45.Location = new Point(3, 3);
4028 this.pictureBox45.Name = "pictureBox45";
4029 this.pictureBox45.Size = new Size(100, 100);
4030 this.pictureBox45.TabIndex = 11;
4031 this.pictureBox45.TabStop = false;
4032 this.pictureBox45.Click += this.pictureBox45_Click;
4033 this.panel49.Controls.Add(this.label50);
4034 this.panel49.Controls.Add(this.pictureBox46);
4035 this.panel49.Location = new Point(336, 1051);
4036 this.panel49.Name = "panel49";
4037 this.panel49.Size = new Size(105, 125);
4038 this.panel49.TabIndex = 45;
4039 this.label50.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4040 this.label50.ForeColor = Color.White;
4041 this.label50.Location = new Point(4, 106);
4042 this.label50.Name = "label50";
4043 this.label50.Size = new Size(98, 19);
4044 this.label50.TabIndex = 1;
4045 this.label50.Text = "Murder Mystery 2";
4046 this.label50.TextAlign = ContentAlignment.MiddleCenter;
4047 this.label50.Click += this.label50_Click;
4048 this.pictureBox46.BackgroundImage = Resources.murder;
4049 this.pictureBox46.BackgroundImageLayout = ImageLayout.Stretch;
4050 this.pictureBox46.Location = new Point(3, 3);
4051 this.pictureBox46.Name = "pictureBox46";
4052 this.pictureBox46.Size = new Size(100, 100);
4053 this.pictureBox46.TabIndex = 11;
4054 this.pictureBox46.TabStop = false;
4055 this.pictureBox46.Click += this.pictureBox46_Click;
4056 this.panel50.Controls.Add(this.label51);
4057 this.panel50.Controls.Add(this.pictureBox47);
4058 this.panel50.Location = new Point(447, 1051);
4059 this.panel50.Name = "panel50";
4060 this.panel50.Size = new Size(105, 125);
4061 this.panel50.TabIndex = 45;
4062 this.label51.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4063 this.label51.ForeColor = Color.White;
4064 this.label51.Location = new Point(4, 106);
4065 this.label51.Name = "label51";
4066 this.label51.Size = new Size(98, 19);
4067 this.label51.TabIndex = 1;
4068 this.label51.Text = "Zombie Rush";
4069 this.label51.TextAlign = ContentAlignment.MiddleCenter;
4070 this.label51.Click += this.label51_Click;
4071 this.pictureBox47.BackgroundImage = Resources.zombie_rush;
4072 this.pictureBox47.BackgroundImageLayout = ImageLayout.Stretch;
4073 this.pictureBox47.Location = new Point(3, 3);
4074 this.pictureBox47.Name = "pictureBox47";
4075 this.pictureBox47.Size = new Size(100, 100);
4076 this.pictureBox47.TabIndex = 11;
4077 this.pictureBox47.TabStop = false;
4078 this.pictureBox47.Click += this.pictureBox47_Click;
4079 this.panel51.Controls.Add(this.label52);
4080 this.panel51.Controls.Add(this.pictureBox48);
4081 this.panel51.Location = new Point(3, 1182);
4082 this.panel51.Name = "panel51";
4083 this.panel51.Size = new Size(105, 125);
4084 this.panel51.TabIndex = 46;
4085 this.label52.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4086 this.label52.ForeColor = Color.White;
4087 this.label52.Location = new Point(4, 106);
4088 this.label52.Name = "label52";
4089 this.label52.Size = new Size(98, 19);
4090 this.label52.TabIndex = 1;
4091 this.label52.Text = "Restaurant Tyc. 2";
4092 this.label52.TextAlign = ContentAlignment.MiddleCenter;
4093 this.label52.Click += this.label52_Click;
4094 this.pictureBox48.BackgroundImage = Resources.restaurant;
4095 this.pictureBox48.BackgroundImageLayout = ImageLayout.Stretch;
4096 this.pictureBox48.Location = new Point(3, 3);
4097 this.pictureBox48.Name = "pictureBox48";
4098 this.pictureBox48.Size = new Size(100, 100);
4099 this.pictureBox48.TabIndex = 11;
4100 this.pictureBox48.TabStop = false;
4101 this.pictureBox48.Click += this.pictureBox48_Click;
4102 this.panel52.Controls.Add(this.label53);
4103 this.panel52.Controls.Add(this.pictureBox49);
4104 this.panel52.Location = new Point(114, 1182);
4105 this.panel52.Name = "panel52";
4106 this.panel52.Size = new Size(105, 125);
4107 this.panel52.TabIndex = 47;
4108 this.label53.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4109 this.label53.ForeColor = Color.White;
4110 this.label53.Location = new Point(4, 106);
4111 this.label53.Name = "label53";
4112 this.label53.Size = new Size(98, 19);
4113 this.label53.TabIndex = 1;
4114 this.label53.Text = "Tree Planting Sim";
4115 this.label53.TextAlign = ContentAlignment.MiddleCenter;
4116 this.label53.Click += this.label53_Click;
4117 this.pictureBox49.BackgroundImage = Resources._50537b73101fb40d098aaa8537c31894;
4118 this.pictureBox49.BackgroundImageLayout = ImageLayout.Stretch;
4119 this.pictureBox49.Location = new Point(3, 3);
4120 this.pictureBox49.Name = "pictureBox49";
4121 this.pictureBox49.Size = new Size(100, 100);
4122 this.pictureBox49.TabIndex = 11;
4123 this.pictureBox49.TabStop = false;
4124 this.pictureBox49.Click += this.pictureBox49_Click;
4125 this.panel53.Controls.Add(this.label54);
4126 this.panel53.Controls.Add(this.pictureBox50);
4127 this.panel53.Location = new Point(225, 1182);
4128 this.panel53.Name = "panel53";
4129 this.panel53.Size = new Size(105, 125);
4130 this.panel53.TabIndex = 48;
4131 this.label54.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4132 this.label54.ForeColor = Color.White;
4133 this.label54.Location = new Point(4, 106);
4134 this.label54.Name = "label54";
4135 this.label54.Size = new Size(98, 19);
4136 this.label54.TabIndex = 1;
4137 this.label54.Text = "Blade Simulator";
4138 this.label54.TextAlign = ContentAlignment.MiddleCenter;
4139 this.label54.Click += this.label54_Click;
4140 this.pictureBox50.BackgroundImage = Resources._67e6ea80b2846b86007fd0851600736b;
4141 this.pictureBox50.BackgroundImageLayout = ImageLayout.Stretch;
4142 this.pictureBox50.Location = new Point(3, 3);
4143 this.pictureBox50.Name = "pictureBox50";
4144 this.pictureBox50.Size = new Size(100, 100);
4145 this.pictureBox50.TabIndex = 11;
4146 this.pictureBox50.TabStop = false;
4147 this.pictureBox50.Click += this.pictureBox50_Click;
4148 this.panel54.Controls.Add(this.label55);
4149 this.panel54.Controls.Add(this.pictureBox51);
4150 this.panel54.Location = new Point(336, 1182);
4151 this.panel54.Name = "panel54";
4152 this.panel54.Size = new Size(105, 125);
4153 this.panel54.TabIndex = 49;
4154 this.label55.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4155 this.label55.ForeColor = Color.White;
4156 this.label55.Location = new Point(4, 106);
4157 this.label55.Name = "label55";
4158 this.label55.Size = new Size(98, 19);
4159 this.label55.TabIndex = 1;
4160 this.label55.Text = "Champion Sim.";
4161 this.label55.TextAlign = ContentAlignment.MiddleCenter;
4162 this.label55.Click += this.label55_Click;
4163 this.pictureBox51.BackgroundImage = Resources.a03adb8c82e566968f553f61c1a7bbaf;
4164 this.pictureBox51.BackgroundImageLayout = ImageLayout.Stretch;
4165 this.pictureBox51.Location = new Point(3, 3);
4166 this.pictureBox51.Name = "pictureBox51";
4167 this.pictureBox51.Size = new Size(100, 100);
4168 this.pictureBox51.TabIndex = 11;
4169 this.pictureBox51.TabStop = false;
4170 this.pictureBox51.Click += this.pictureBox51_Click;
4171 this.panel55.Controls.Add(this.label56);
4172 this.panel55.Controls.Add(this.pictureBox52);
4173 this.panel55.Location = new Point(447, 1182);
4174 this.panel55.Name = "panel55";
4175 this.panel55.Size = new Size(105, 125);
4176 this.panel55.TabIndex = 50;
4177 this.label56.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4178 this.label56.ForeColor = Color.White;
4179 this.label56.Location = new Point(4, 106);
4180 this.label56.Name = "label56";
4181 this.label56.Size = new Size(98, 19);
4182 this.label56.TabIndex = 1;
4183 this.label56.Text = "Mad Paintball";
4184 this.label56.TextAlign = ContentAlignment.MiddleCenter;
4185 this.label56.Click += this.label56_Click;
4186 this.pictureBox52.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox52.BackgroundImage");
4187 this.pictureBox52.BackgroundImageLayout = ImageLayout.Stretch;
4188 this.pictureBox52.Location = new Point(3, 3);
4189 this.pictureBox52.Name = "pictureBox52";
4190 this.pictureBox52.Size = new Size(100, 100);
4191 this.pictureBox52.TabIndex = 11;
4192 this.pictureBox52.TabStop = false;
4193 this.pictureBox52.Click += this.pictureBox52_Click;
4194 this.panel56.Controls.Add(this.label57);
4195 this.panel56.Controls.Add(this.pictureBox53);
4196 this.panel56.Location = new Point(3, 1313);
4197 this.panel56.Name = "panel56";
4198 this.panel56.Size = new Size(105, 125);
4199 this.panel56.TabIndex = 51;
4200 this.label57.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4201 this.label57.ForeColor = Color.White;
4202 this.label57.Location = new Point(4, 106);
4203 this.label57.Name = "label57";
4204 this.label57.Size = new Size(98, 19);
4205 this.label57.TabIndex = 1;
4206 this.label57.Text = "Texting Simulator";
4207 this.label57.TextAlign = ContentAlignment.MiddleCenter;
4208 this.label57.Click += this.label57_Click;
4209 this.pictureBox53.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox53.BackgroundImage");
4210 this.pictureBox53.BackgroundImageLayout = ImageLayout.Stretch;
4211 this.pictureBox53.Location = new Point(3, 3);
4212 this.pictureBox53.Name = "pictureBox53";
4213 this.pictureBox53.Size = new Size(100, 100);
4214 this.pictureBox53.TabIndex = 11;
4215 this.pictureBox53.TabStop = false;
4216 this.pictureBox53.Click += this.pictureBox53_Click;
4217 this.panel57.Controls.Add(this.label58);
4218 this.panel57.Controls.Add(this.pictureBox54);
4219 this.panel57.Location = new Point(114, 1313);
4220 this.panel57.Name = "panel57";
4221 this.panel57.Size = new Size(105, 125);
4222 this.panel57.TabIndex = 52;
4223 this.label58.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4224 this.label58.ForeColor = Color.White;
4225 this.label58.Location = new Point(4, 106);
4226 this.label58.Name = "label58";
4227 this.label58.Size = new Size(98, 19);
4228 this.label58.TabIndex = 1;
4229 this.label58.Text = "Flee The Facility";
4230 this.label58.TextAlign = ContentAlignment.MiddleCenter;
4231 this.label58.Click += this.label58_Click;
4232 this.pictureBox54.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox54.BackgroundImage");
4233 this.pictureBox54.BackgroundImageLayout = ImageLayout.Stretch;
4234 this.pictureBox54.Location = new Point(3, 3);
4235 this.pictureBox54.Name = "pictureBox54";
4236 this.pictureBox54.Size = new Size(100, 100);
4237 this.pictureBox54.TabIndex = 11;
4238 this.pictureBox54.TabStop = false;
4239 this.pictureBox54.Click += this.pictureBox54_Click;
4240 this.panel60.Controls.Add(this.label61);
4241 this.panel60.Controls.Add(this.pictureBox57);
4242 this.panel60.Location = new Point(225, 1313);
4243 this.panel60.Name = "panel60";
4244 this.panel60.Size = new Size(105, 125);
4245 this.panel60.TabIndex = 55;
4246 this.label61.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4247 this.label61.ForeColor = Color.White;
4248 this.label61.Location = new Point(4, 106);
4249 this.label61.Name = "label61";
4250 this.label61.Size = new Size(98, 19);
4251 this.label61.TabIndex = 1;
4252 this.label61.Text = "Speed City";
4253 this.label61.TextAlign = ContentAlignment.MiddleCenter;
4254 this.label61.Click += this.label61_Click;
4255 this.pictureBox57.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox57.BackgroundImage");
4256 this.pictureBox57.BackgroundImageLayout = ImageLayout.Stretch;
4257 this.pictureBox57.Location = new Point(3, 3);
4258 this.pictureBox57.Name = "pictureBox57";
4259 this.pictureBox57.Size = new Size(100, 100);
4260 this.pictureBox57.TabIndex = 11;
4261 this.pictureBox57.TabStop = false;
4262 this.pictureBox57.Click += this.pictureBox57_Click;
4263 this.panel61.Controls.Add(this.label62);
4264 this.panel61.Controls.Add(this.pictureBox58);
4265 this.panel61.Location = new Point(336, 1313);
4266 this.panel61.Name = "panel61";
4267 this.panel61.Size = new Size(105, 125);
4268 this.panel61.TabIndex = 56;
4269 this.label62.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4270 this.label62.ForeColor = Color.White;
4271 this.label62.Location = new Point(4, 106);
4272 this.label62.Name = "label62";
4273 this.label62.Size = new Size(98, 19);
4274 this.label62.TabIndex = 1;
4275 this.label62.Text = "Blox Piece";
4276 this.label62.TextAlign = ContentAlignment.MiddleCenter;
4277 this.label62.Click += this.label62_Click;
4278 this.pictureBox58.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox58.BackgroundImage");
4279 this.pictureBox58.BackgroundImageLayout = ImageLayout.Stretch;
4280 this.pictureBox58.Location = new Point(3, 3);
4281 this.pictureBox58.Name = "pictureBox58";
4282 this.pictureBox58.Size = new Size(100, 100);
4283 this.pictureBox58.TabIndex = 11;
4284 this.pictureBox58.TabStop = false;
4285 this.pictureBox58.Click += this.pictureBox58_Click;
4286 this.panel62.Controls.Add(this.label63);
4287 this.panel62.Controls.Add(this.pictureBox59);
4288 this.panel62.Location = new Point(447, 1313);
4289 this.panel62.Name = "panel62";
4290 this.panel62.Size = new Size(105, 125);
4291 this.panel62.TabIndex = 57;
4292 this.label63.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4293 this.label63.ForeColor = Color.White;
4294 this.label63.Location = new Point(4, 106);
4295 this.label63.Name = "label63";
4296 this.label63.Size = new Size(98, 19);
4297 this.label63.TabIndex = 1;
4298 this.label63.Text = "SnowMan Sim.";
4299 this.label63.TextAlign = ContentAlignment.MiddleCenter;
4300 this.label63.Click += this.label63_Click;
4301 this.pictureBox59.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox59.BackgroundImage");
4302 this.pictureBox59.BackgroundImageLayout = ImageLayout.Stretch;
4303 this.pictureBox59.Location = new Point(3, 3);
4304 this.pictureBox59.Name = "pictureBox59";
4305 this.pictureBox59.Size = new Size(100, 100);
4306 this.pictureBox59.TabIndex = 11;
4307 this.pictureBox59.TabStop = false;
4308 this.pictureBox59.Click += this.pictureBox59_Click;
4309 this.panel63.Controls.Add(this.label64);
4310 this.panel63.Controls.Add(this.pictureBox60);
4311 this.panel63.Location = new Point(3, 1444);
4312 this.panel63.Name = "panel63";
4313 this.panel63.Size = new Size(105, 125);
4314 this.panel63.TabIndex = 58;
4315 this.label64.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4316 this.label64.ForeColor = Color.White;
4317 this.label64.Location = new Point(4, 106);
4318 this.label64.Name = "label64";
4319 this.label64.Size = new Size(98, 19);
4320 this.label64.TabIndex = 1;
4321 this.label64.Text = "Boss Fight Sim.";
4322 this.label64.TextAlign = ContentAlignment.MiddleCenter;
4323 this.label64.Click += this.label64_Click;
4324 this.pictureBox60.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox60.BackgroundImage");
4325 this.pictureBox60.BackgroundImageLayout = ImageLayout.Stretch;
4326 this.pictureBox60.Location = new Point(3, 3);
4327 this.pictureBox60.Name = "pictureBox60";
4328 this.pictureBox60.Size = new Size(100, 100);
4329 this.pictureBox60.TabIndex = 11;
4330 this.pictureBox60.TabStop = false;
4331 this.pictureBox60.Click += this.pictureBox60_Click;
4332 this.panel64.Controls.Add(this.label65);
4333 this.panel64.Controls.Add(this.pictureBox61);
4334 this.panel64.Location = new Point(114, 1444);
4335 this.panel64.Name = "panel64";
4336 this.panel64.Size = new Size(105, 125);
4337 this.panel64.TabIndex = 59;
4338 this.label65.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4339 this.label65.ForeColor = Color.White;
4340 this.label65.Location = new Point(4, 106);
4341 this.label65.Name = "label65";
4342 this.label65.Size = new Size(98, 19);
4343 this.label65.TabIndex = 1;
4344 this.label65.Text = "Sprinting Sim.";
4345 this.label65.TextAlign = ContentAlignment.MiddleCenter;
4346 this.label65.Click += this.label65_Click;
4347 this.pictureBox61.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox61.BackgroundImage");
4348 this.pictureBox61.BackgroundImageLayout = ImageLayout.Stretch;
4349 this.pictureBox61.Location = new Point(3, 3);
4350 this.pictureBox61.Name = "pictureBox61";
4351 this.pictureBox61.Size = new Size(100, 100);
4352 this.pictureBox61.TabIndex = 11;
4353 this.pictureBox61.TabStop = false;
4354 this.pictureBox61.Click += this.pictureBox61_Click;
4355 this.panel65.Controls.Add(this.label17);
4356 this.panel65.Controls.Add(this.pictureBox62);
4357 this.panel65.Location = new Point(225, 1444);
4358 this.panel65.Name = "panel65";
4359 this.panel65.Size = new Size(105, 125);
4360 this.panel65.TabIndex = 60;
4361 this.label17.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4362 this.label17.ForeColor = Color.White;
4363 this.label17.Location = new Point(4, 106);
4364 this.label17.Name = "label17";
4365 this.label17.Size = new Size(98, 19);
4366 this.label17.TabIndex = 1;
4367 this.label17.Text = "Treasure Quest";
4368 this.label17.TextAlign = ContentAlignment.MiddleCenter;
4369 this.label17.Click += this.label17_Click;
4370 this.pictureBox62.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox62.BackgroundImage");
4371 this.pictureBox62.BackgroundImageLayout = ImageLayout.Stretch;
4372 this.pictureBox62.Location = new Point(3, 3);
4373 this.pictureBox62.Name = "pictureBox62";
4374 this.pictureBox62.Size = new Size(100, 100);
4375 this.pictureBox62.TabIndex = 11;
4376 this.pictureBox62.TabStop = false;
4377 this.pictureBox62.Click += this.pictureBox62_Click;
4378 this.panel66.Controls.Add(this.label66);
4379 this.panel66.Controls.Add(this.pictureBox63);
4380 this.panel66.Location = new Point(336, 1444);
4381 this.panel66.Name = "panel66";
4382 this.panel66.Size = new Size(105, 125);
4383 this.panel66.TabIndex = 61;
4384 this.label66.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4385 this.label66.ForeColor = Color.White;
4386 this.label66.Location = new Point(4, 106);
4387 this.label66.Name = "label66";
4388 this.label66.Size = new Size(98, 19);
4389 this.label66.TabIndex = 1;
4390 this.label66.Text = "Project Jojo";
4391 this.label66.TextAlign = ContentAlignment.MiddleCenter;
4392 this.label66.Click += this.label66_Click;
4393 this.pictureBox63.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox63.BackgroundImage");
4394 this.pictureBox63.BackgroundImageLayout = ImageLayout.Stretch;
4395 this.pictureBox63.Location = new Point(3, 3);
4396 this.pictureBox63.Name = "pictureBox63";
4397 this.pictureBox63.Size = new Size(100, 100);
4398 this.pictureBox63.TabIndex = 11;
4399 this.pictureBox63.TabStop = false;
4400 this.pictureBox63.Click += this.pictureBox63_Click;
4401 this.panel28.Controls.Add(this.label29);
4402 this.panel28.Controls.Add(this.pictureBox25);
4403 this.panel28.Location = new Point(447, 1444);
4404 this.panel28.Name = "panel28";
4405 this.panel28.Size = new Size(105, 131);
4406 this.panel28.TabIndex = 62;
4407 this.label29.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4408 this.label29.ForeColor = Color.White;
4409 this.label29.Location = new Point(4, 106);
4410 this.label29.Name = "label29";
4411 this.label29.Size = new Size(98, 19);
4412 this.label29.TabIndex = 1;
4413 this.label29.Text = "Meep City";
4414 this.label29.TextAlign = ContentAlignment.MiddleCenter;
4415 this.label29.Click += this.label29_Click_1;
4416 this.pictureBox25.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox25.BackgroundImage");
4417 this.pictureBox25.BackgroundImageLayout = ImageLayout.Stretch;
4418 this.pictureBox25.Location = new Point(3, 3);
4419 this.pictureBox25.Name = "pictureBox25";
4420 this.pictureBox25.Size = new Size(100, 100);
4421 this.pictureBox25.TabIndex = 11;
4422 this.pictureBox25.TabStop = false;
4423 this.pictureBox25.Click += this.pictureBox25_Click_1;
4424 this.panel58.Controls.Add(this.label59);
4425 this.panel58.Controls.Add(this.pictureBox55);
4426 this.panel58.Location = new Point(3, 1581);
4427 this.panel58.Name = "panel58";
4428 this.panel58.Size = new Size(105, 131);
4429 this.panel58.TabIndex = 63;
4430 this.label59.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4431 this.label59.ForeColor = Color.White;
4432 this.label59.Location = new Point(4, 106);
4433 this.label59.Name = "label59";
4434 this.label59.Size = new Size(98, 19);
4435 this.label59.TabIndex = 1;
4436 this.label59.Text = "ILUM 2";
4437 this.label59.TextAlign = ContentAlignment.MiddleCenter;
4438 this.label59.Click += this.label59_Click_1;
4439 this.pictureBox55.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox55.BackgroundImage");
4440 this.pictureBox55.BackgroundImageLayout = ImageLayout.Stretch;
4441 this.pictureBox55.Location = new Point(3, 3);
4442 this.pictureBox55.Name = "pictureBox55";
4443 this.pictureBox55.Size = new Size(100, 100);
4444 this.pictureBox55.TabIndex = 11;
4445 this.pictureBox55.TabStop = false;
4446 this.pictureBox55.Click += this.pictureBox55_Click_1;
4447 this.panel67.Controls.Add(this.label67);
4448 this.panel67.Controls.Add(this.pictureBox64);
4449 this.panel67.Location = new Point(114, 1581);
4450 this.panel67.Name = "panel67";
4451 this.panel67.Size = new Size(105, 131);
4452 this.panel67.TabIndex = 64;
4453 this.label67.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4454 this.label67.ForeColor = Color.White;
4455 this.label67.Location = new Point(4, 106);
4456 this.label67.Name = "label67";
4457 this.label67.Size = new Size(98, 19);
4458 this.label67.TabIndex = 1;
4459 this.label67.Text = "Dungeon Simulator";
4460 this.label67.TextAlign = ContentAlignment.MiddleCenter;
4461 this.label67.Click += this.label67_Click;
4462 this.pictureBox64.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox64.BackgroundImage");
4463 this.pictureBox64.BackgroundImageLayout = ImageLayout.Stretch;
4464 this.pictureBox64.Location = new Point(3, 3);
4465 this.pictureBox64.Name = "pictureBox64";
4466 this.pictureBox64.Size = new Size(100, 100);
4467 this.pictureBox64.TabIndex = 11;
4468 this.pictureBox64.TabStop = false;
4469 this.pictureBox64.Click += this.pictureBox64_Click;
4470 this.panel68.Controls.Add(this.label68);
4471 this.panel68.Controls.Add(this.pictureBox65);
4472 this.panel68.Location = new Point(225, 1581);
4473 this.panel68.Name = "panel68";
4474 this.panel68.Size = new Size(105, 131);
4475 this.panel68.TabIndex = 65;
4476 this.label68.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4477 this.label68.ForeColor = Color.White;
4478 this.label68.Location = new Point(4, 106);
4479 this.label68.Name = "label68";
4480 this.label68.Size = new Size(98, 19);
4481 this.label68.TabIndex = 1;
4482 this.label68.Text = "Drifting Simulator";
4483 this.label68.TextAlign = ContentAlignment.MiddleCenter;
4484 this.label68.Click += this.label68_Click;
4485 this.pictureBox65.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox65.BackgroundImage");
4486 this.pictureBox65.BackgroundImageLayout = ImageLayout.Stretch;
4487 this.pictureBox65.Location = new Point(3, 3);
4488 this.pictureBox65.Name = "pictureBox65";
4489 this.pictureBox65.Size = new Size(100, 100);
4490 this.pictureBox65.TabIndex = 11;
4491 this.pictureBox65.TabStop = false;
4492 this.pictureBox65.Click += this.pictureBox65_Click;
4493 this.panel69.Controls.Add(this.label69);
4494 this.panel69.Controls.Add(this.pictureBox66);
4495 this.panel69.Location = new Point(336, 1581);
4496 this.panel69.Name = "panel69";
4497 this.panel69.Size = new Size(105, 131);
4498 this.panel69.TabIndex = 66;
4499 this.label69.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4500 this.label69.ForeColor = Color.White;
4501 this.label69.Location = new Point(4, 106);
4502 this.label69.Name = "label69";
4503 this.label69.Size = new Size(98, 19);
4504 this.label69.TabIndex = 1;
4505 this.label69.Text = "Rumble Quest";
4506 this.label69.TextAlign = ContentAlignment.MiddleCenter;
4507 this.label69.Click += this.label69_Click;
4508 this.pictureBox66.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox66.BackgroundImage");
4509 this.pictureBox66.BackgroundImageLayout = ImageLayout.Stretch;
4510 this.pictureBox66.Location = new Point(3, 3);
4511 this.pictureBox66.Name = "pictureBox66";
4512 this.pictureBox66.Size = new Size(100, 100);
4513 this.pictureBox66.TabIndex = 11;
4514 this.pictureBox66.TabStop = false;
4515 this.pictureBox66.Click += this.pictureBox66_Click;
4516 this.panel70.Controls.Add(this.label70);
4517 this.panel70.Controls.Add(this.pictureBox67);
4518 this.panel70.Location = new Point(447, 1581);
4519 this.panel70.Name = "panel70";
4520 this.panel70.Size = new Size(105, 131);
4521 this.panel70.TabIndex = 67;
4522 this.label70.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4523 this.label70.ForeColor = Color.White;
4524 this.label70.Location = new Point(4, 106);
4525 this.label70.Name = "label70";
4526 this.label70.Size = new Size(98, 19);
4527 this.label70.TabIndex = 1;
4528 this.label70.Text = "Assassin!";
4529 this.label70.TextAlign = ContentAlignment.MiddleCenter;
4530 this.label70.Click += this.label70_Click;
4531 this.pictureBox67.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox67.BackgroundImage");
4532 this.pictureBox67.BackgroundImageLayout = ImageLayout.Stretch;
4533 this.pictureBox67.Location = new Point(3, 3);
4534 this.pictureBox67.Name = "pictureBox67";
4535 this.pictureBox67.Size = new Size(100, 100);
4536 this.pictureBox67.TabIndex = 11;
4537 this.pictureBox67.TabStop = false;
4538 this.pictureBox67.Click += this.pictureBox67_Click;
4539 this.panel72.Controls.Add(this.label72);
4540 this.panel72.Controls.Add(this.pictureBox69);
4541 this.panel72.Location = new Point(3, 1718);
4542 this.panel72.Name = "panel72";
4543 this.panel72.Size = new Size(105, 131);
4544 this.panel72.TabIndex = 69;
4545 this.label72.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4546 this.label72.ForeColor = Color.White;
4547 this.label72.Location = new Point(4, 106);
4548 this.label72.Name = "label72";
4549 this.label72.Size = new Size(98, 19);
4550 this.label72.TabIndex = 1;
4551 this.label72.Text = "Naruto Tycoon";
4552 this.label72.TextAlign = ContentAlignment.MiddleCenter;
4553 this.label72.Click += this.label72_Click_1;
4554 this.pictureBox69.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox69.BackgroundImage");
4555 this.pictureBox69.BackgroundImageLayout = ImageLayout.Stretch;
4556 this.pictureBox69.Location = new Point(3, 3);
4557 this.pictureBox69.Name = "pictureBox69";
4558 this.pictureBox69.Size = new Size(100, 100);
4559 this.pictureBox69.TabIndex = 11;
4560 this.pictureBox69.TabStop = false;
4561 this.pictureBox69.Click += this.pictureBox69_Click;
4562 this.panel73.Controls.Add(this.label73);
4563 this.panel73.Controls.Add(this.pictureBox70);
4564 this.panel73.Location = new Point(114, 1718);
4565 this.panel73.Name = "panel73";
4566 this.panel73.Size = new Size(105, 131);
4567 this.panel73.TabIndex = 70;
4568 this.label73.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4569 this.label73.ForeColor = Color.White;
4570 this.label73.Location = new Point(4, 106);
4571 this.label73.Name = "label73";
4572 this.label73.Size = new Size(98, 19);
4573 this.label73.TabIndex = 1;
4574 this.label73.Text = "Rocitizens";
4575 this.label73.TextAlign = ContentAlignment.MiddleCenter;
4576 this.label73.Click += this.label73_Click;
4577 this.pictureBox70.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox70.BackgroundImage");
4578 this.pictureBox70.BackgroundImageLayout = ImageLayout.Stretch;
4579 this.pictureBox70.Location = new Point(3, 3);
4580 this.pictureBox70.Name = "pictureBox70";
4581 this.pictureBox70.Size = new Size(100, 100);
4582 this.pictureBox70.TabIndex = 11;
4583 this.pictureBox70.TabStop = false;
4584 this.pictureBox70.Click += this.pictureBox70_Click;
4585 this.panel74.Controls.Add(this.label74);
4586 this.panel74.Controls.Add(this.pictureBox71);
4587 this.panel74.Location = new Point(225, 1718);
4588 this.panel74.Name = "panel74";
4589 this.panel74.Size = new Size(105, 131);
4590 this.panel74.TabIndex = 71;
4591 this.label74.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4592 this.label74.ForeColor = Color.White;
4593 this.label74.Location = new Point(4, 106);
4594 this.label74.Name = "label74";
4595 this.label74.Size = new Size(98, 19);
4596 this.label74.TabIndex = 1;
4597 this.label74.Text = "Rogue Lineage";
4598 this.label74.TextAlign = ContentAlignment.MiddleCenter;
4599 this.label74.Click += this.label74_Click;
4600 this.pictureBox71.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox71.BackgroundImage");
4601 this.pictureBox71.BackgroundImageLayout = ImageLayout.Stretch;
4602 this.pictureBox71.Location = new Point(3, 3);
4603 this.pictureBox71.Name = "pictureBox71";
4604 this.pictureBox71.Size = new Size(100, 100);
4605 this.pictureBox71.TabIndex = 11;
4606 this.pictureBox71.TabStop = false;
4607 this.pictureBox71.Click += this.pictureBox71_Click;
4608 this.panel75.Controls.Add(this.label75);
4609 this.panel75.Controls.Add(this.pictureBox72);
4610 this.panel75.Location = new Point(336, 1718);
4611 this.panel75.Name = "panel75";
4612 this.panel75.Size = new Size(105, 131);
4613 this.panel75.TabIndex = 72;
4614 this.label75.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4615 this.label75.ForeColor = Color.White;
4616 this.label75.Location = new Point(4, 106);
4617 this.label75.Name = "label75";
4618 this.label75.Size = new Size(98, 19);
4619 this.label75.TabIndex = 1;
4620 this.label75.Text = "WeightLifting Sim. 3";
4621 this.label75.TextAlign = ContentAlignment.MiddleCenter;
4622 this.label75.Click += this.label75_Click;
4623 this.pictureBox72.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox72.BackgroundImage");
4624 this.pictureBox72.BackgroundImageLayout = ImageLayout.Stretch;
4625 this.pictureBox72.Location = new Point(3, 3);
4626 this.pictureBox72.Name = "pictureBox72";
4627 this.pictureBox72.Size = new Size(100, 100);
4628 this.pictureBox72.TabIndex = 11;
4629 this.pictureBox72.TabStop = false;
4630 this.pictureBox72.Click += this.pictureBox72_Click;
4631 this.panel76.Controls.Add(this.label76);
4632 this.panel76.Controls.Add(this.pictureBox73);
4633 this.panel76.Location = new Point(447, 1718);
4634 this.panel76.Name = "panel76";
4635 this.panel76.Size = new Size(105, 131);
4636 this.panel76.TabIndex = 73;
4637 this.label76.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4638 this.label76.ForeColor = Color.White;
4639 this.label76.Location = new Point(4, 106);
4640 this.label76.Name = "label76";
4641 this.label76.Size = new Size(98, 19);
4642 this.label76.TabIndex = 1;
4643 this.label76.Text = "Gas Station Sim.";
4644 this.label76.TextAlign = ContentAlignment.MiddleCenter;
4645 this.label76.Click += this.label76_Click;
4646 this.pictureBox73.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox73.BackgroundImage");
4647 this.pictureBox73.BackgroundImageLayout = ImageLayout.Stretch;
4648 this.pictureBox73.Location = new Point(3, 3);
4649 this.pictureBox73.Name = "pictureBox73";
4650 this.pictureBox73.Size = new Size(100, 100);
4651 this.pictureBox73.TabIndex = 11;
4652 this.pictureBox73.TabStop = false;
4653 this.pictureBox73.Click += this.pictureBox73_Click;
4654 this.panel77.Controls.Add(this.label77);
4655 this.panel77.Controls.Add(this.pictureBox74);
4656 this.panel77.Location = new Point(3, 1855);
4657 this.panel77.Name = "panel77";
4658 this.panel77.Size = new Size(105, 131);
4659 this.panel77.TabIndex = 74;
4660 this.label77.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4661 this.label77.ForeColor = Color.White;
4662 this.label77.Location = new Point(4, 106);
4663 this.label77.Name = "label77";
4664 this.label77.Size = new Size(98, 19);
4665 this.label77.TabIndex = 1;
4666 this.label77.Text = "Island Royale";
4667 this.label77.TextAlign = ContentAlignment.MiddleCenter;
4668 this.label77.Click += this.label77_Click;
4669 this.pictureBox74.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox74.BackgroundImage");
4670 this.pictureBox74.BackgroundImageLayout = ImageLayout.Stretch;
4671 this.pictureBox74.Location = new Point(3, 3);
4672 this.pictureBox74.Name = "pictureBox74";
4673 this.pictureBox74.Size = new Size(100, 100);
4674 this.pictureBox74.TabIndex = 11;
4675 this.pictureBox74.TabStop = false;
4676 this.pictureBox74.Click += this.pictureBox74_Click;
4677 this.panel78.Controls.Add(this.label78);
4678 this.panel78.Controls.Add(this.pictureBox75);
4679 this.panel78.Location = new Point(114, 1855);
4680 this.panel78.Name = "panel78";
4681 this.panel78.Size = new Size(105, 131);
4682 this.panel78.TabIndex = 75;
4683 this.label78.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4684 this.label78.ForeColor = Color.White;
4685 this.label78.Location = new Point(4, 106);
4686 this.label78.Name = "label78";
4687 this.label78.Size = new Size(98, 19);
4688 this.label78.TabIndex = 1;
4689 this.label78.Text = "Dragon Ball Rage";
4690 this.label78.TextAlign = ContentAlignment.MiddleCenter;
4691 this.label78.Click += this.label78_Click;
4692 this.pictureBox75.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox75.BackgroundImage");
4693 this.pictureBox75.BackgroundImageLayout = ImageLayout.Stretch;
4694 this.pictureBox75.Location = new Point(3, 3);
4695 this.pictureBox75.Name = "pictureBox75";
4696 this.pictureBox75.Size = new Size(100, 100);
4697 this.pictureBox75.TabIndex = 11;
4698 this.pictureBox75.TabStop = false;
4699 this.pictureBox75.Click += this.pictureBox75_Click;
4700 this.panel79.Controls.Add(this.label79);
4701 this.panel79.Controls.Add(this.pictureBox76);
4702 this.panel79.Location = new Point(225, 1855);
4703 this.panel79.Name = "panel79";
4704 this.panel79.Size = new Size(105, 131);
4705 this.panel79.TabIndex = 76;
4706 this.label79.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4707 this.label79.ForeColor = Color.White;
4708 this.label79.Location = new Point(4, 106);
4709 this.label79.Name = "label79";
4710 this.label79.Size = new Size(98, 19);
4711 this.label79.TabIndex = 1;
4712 this.label79.Text = "Faction Defence ";
4713 this.label79.TextAlign = ContentAlignment.MiddleCenter;
4714 this.label79.Click += this.label79_Click;
4715 this.pictureBox76.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox76.BackgroundImage");
4716 this.pictureBox76.BackgroundImageLayout = ImageLayout.Stretch;
4717 this.pictureBox76.Location = new Point(3, 3);
4718 this.pictureBox76.Name = "pictureBox76";
4719 this.pictureBox76.Size = new Size(100, 100);
4720 this.pictureBox76.TabIndex = 11;
4721 this.pictureBox76.TabStop = false;
4722 this.pictureBox76.Click += this.pictureBox76_Click;
4723 this.panel80.Controls.Add(this.label80);
4724 this.panel80.Controls.Add(this.pictureBox77);
4725 this.panel80.Location = new Point(336, 1855);
4726 this.panel80.Name = "panel80";
4727 this.panel80.Size = new Size(105, 131);
4728 this.panel80.TabIndex = 77;
4729 this.label80.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4730 this.label80.ForeColor = Color.White;
4731 this.label80.Location = new Point(4, 106);
4732 this.label80.Name = "label80";
4733 this.label80.Size = new Size(98, 19);
4734 this.label80.TabIndex = 1;
4735 this.label80.Text = "Da Hood";
4736 this.label80.TextAlign = ContentAlignment.MiddleCenter;
4737 this.label80.Click += this.label80_Click;
4738 this.pictureBox77.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox77.BackgroundImage");
4739 this.pictureBox77.BackgroundImageLayout = ImageLayout.Stretch;
4740 this.pictureBox77.Location = new Point(3, 3);
4741 this.pictureBox77.Name = "pictureBox77";
4742 this.pictureBox77.Size = new Size(100, 100);
4743 this.pictureBox77.TabIndex = 11;
4744 this.pictureBox77.TabStop = false;
4745 this.pictureBox77.Click += this.pictureBox77_Click;
4746 this.panel81.Controls.Add(this.label81);
4747 this.panel81.Controls.Add(this.pictureBox78);
4748 this.panel81.Location = new Point(447, 1855);
4749 this.panel81.Name = "panel81";
4750 this.panel81.Size = new Size(105, 131);
4751 this.panel81.TabIndex = 78;
4752 this.label81.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4753 this.label81.ForeColor = Color.White;
4754 this.label81.Location = new Point(4, 106);
4755 this.label81.Name = "label81";
4756 this.label81.Size = new Size(98, 19);
4757 this.label81.TabIndex = 1;
4758 this.label81.Text = "Thanos Is Eating";
4759 this.label81.TextAlign = ContentAlignment.MiddleCenter;
4760 this.label81.Click += this.label81_Click;
4761 this.pictureBox78.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox78.BackgroundImage");
4762 this.pictureBox78.BackgroundImageLayout = ImageLayout.Stretch;
4763 this.pictureBox78.Location = new Point(3, 3);
4764 this.pictureBox78.Name = "pictureBox78";
4765 this.pictureBox78.Size = new Size(100, 100);
4766 this.pictureBox78.TabIndex = 11;
4767 this.pictureBox78.TabStop = false;
4768 this.pictureBox78.Click += this.pictureBox78_Click;
4769 this.panel82.Controls.Add(this.label82);
4770 this.panel82.Controls.Add(this.pictureBox79);
4771 this.panel82.Location = new Point(3, 1992);
4772 this.panel82.Name = "panel82";
4773 this.panel82.Size = new Size(105, 131);
4774 this.panel82.TabIndex = 79;
4775 this.label82.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4776 this.label82.ForeColor = Color.White;
4777 this.label82.Location = new Point(4, 106);
4778 this.label82.Name = "label82";
4779 this.label82.Size = new Size(98, 19);
4780 this.label82.TabIndex = 1;
4781 this.label82.Text = "Dr. Seuss Simulator";
4782 this.label82.TextAlign = ContentAlignment.MiddleCenter;
4783 this.label82.Click += this.label82_Click;
4784 this.pictureBox79.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox79.BackgroundImage");
4785 this.pictureBox79.BackgroundImageLayout = ImageLayout.Stretch;
4786 this.pictureBox79.Location = new Point(3, 3);
4787 this.pictureBox79.Name = "pictureBox79";
4788 this.pictureBox79.Size = new Size(100, 100);
4789 this.pictureBox79.TabIndex = 11;
4790 this.pictureBox79.TabStop = false;
4791 this.pictureBox79.Click += this.pictureBox79_Click;
4792 this.panel83.Controls.Add(this.label83);
4793 this.panel83.Controls.Add(this.pictureBox80);
4794 this.panel83.Location = new Point(114, 1992);
4795 this.panel83.Name = "panel83";
4796 this.panel83.Size = new Size(105, 131);
4797 this.panel83.TabIndex = 80;
4798 this.label83.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4799 this.label83.ForeColor = Color.White;
4800 this.label83.Location = new Point(4, 106);
4801 this.label83.Name = "label83";
4802 this.label83.Size = new Size(98, 19);
4803 this.label83.TabIndex = 1;
4804 this.label83.Text = "Extreme Sprinting";
4805 this.label83.TextAlign = ContentAlignment.MiddleCenter;
4806 this.label83.Click += this.label83_Click;
4807 this.pictureBox80.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox80.BackgroundImage");
4808 this.pictureBox80.BackgroundImageLayout = ImageLayout.Stretch;
4809 this.pictureBox80.Location = new Point(3, 3);
4810 this.pictureBox80.Name = "pictureBox80";
4811 this.pictureBox80.Size = new Size(100, 100);
4812 this.pictureBox80.TabIndex = 11;
4813 this.pictureBox80.TabStop = false;
4814 this.pictureBox80.Click += this.pictureBox80_Click;
4815 this.panel84.Controls.Add(this.label84);
4816 this.panel84.Controls.Add(this.pictureBox81);
4817 this.panel84.Location = new Point(225, 1992);
4818 this.panel84.Name = "panel84";
4819 this.panel84.Size = new Size(105, 131);
4820 this.panel84.TabIndex = 81;
4821 this.label84.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4822 this.label84.ForeColor = Color.White;
4823 this.label84.Location = new Point(4, 106);
4824 this.label84.Name = "label84";
4825 this.label84.Size = new Size(98, 19);
4826 this.label84.TabIndex = 1;
4827 this.label84.Text = "KAT";
4828 this.label84.TextAlign = ContentAlignment.MiddleCenter;
4829 this.label84.Click += this.label84_Click;
4830 this.pictureBox81.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox81.BackgroundImage");
4831 this.pictureBox81.BackgroundImageLayout = ImageLayout.Stretch;
4832 this.pictureBox81.Location = new Point(3, 3);
4833 this.pictureBox81.Name = "pictureBox81";
4834 this.pictureBox81.Size = new Size(100, 100);
4835 this.pictureBox81.TabIndex = 11;
4836 this.pictureBox81.TabStop = false;
4837 this.pictureBox81.Click += this.pictureBox81_Click;
4838 this.panel85.Controls.Add(this.label85);
4839 this.panel85.Controls.Add(this.pictureBox82);
4840 this.panel85.Location = new Point(336, 1992);
4841 this.panel85.Name = "panel85";
4842 this.panel85.Size = new Size(105, 131);
4843 this.panel85.TabIndex = 82;
4844 this.label85.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4845 this.label85.ForeColor = Color.White;
4846 this.label85.Location = new Point(4, 106);
4847 this.label85.Name = "label85";
4848 this.label85.Size = new Size(98, 19);
4849 this.label85.TabIndex = 1;
4850 this.label85.Text = "Sprinting Heroes";
4851 this.label85.TextAlign = ContentAlignment.MiddleCenter;
4852 this.label85.Click += this.label85_Click;
4853 this.pictureBox82.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox82.BackgroundImage");
4854 this.pictureBox82.BackgroundImageLayout = ImageLayout.Stretch;
4855 this.pictureBox82.Location = new Point(3, 3);
4856 this.pictureBox82.Name = "pictureBox82";
4857 this.pictureBox82.Size = new Size(100, 100);
4858 this.pictureBox82.TabIndex = 11;
4859 this.pictureBox82.TabStop = false;
4860 this.pictureBox82.Click += this.pictureBox82_Click;
4861 this.panel86.Controls.Add(this.label86);
4862 this.panel86.Controls.Add(this.pictureBox83);
4863 this.panel86.Location = new Point(447, 1992);
4864 this.panel86.Name = "panel86";
4865 this.panel86.Size = new Size(105, 131);
4866 this.panel86.TabIndex = 83;
4867 this.label86.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4868 this.label86.ForeColor = Color.White;
4869 this.label86.Location = new Point(4, 106);
4870 this.label86.Name = "label86";
4871 this.label86.Size = new Size(98, 19);
4872 this.label86.TabIndex = 1;
4873 this.label86.Text = "Donut Story Tyc.";
4874 this.label86.TextAlign = ContentAlignment.MiddleCenter;
4875 this.label86.Click += this.label86_Click;
4876 this.pictureBox83.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox83.BackgroundImage");
4877 this.pictureBox83.BackgroundImageLayout = ImageLayout.Stretch;
4878 this.pictureBox83.Location = new Point(3, 3);
4879 this.pictureBox83.Name = "pictureBox83";
4880 this.pictureBox83.Size = new Size(100, 100);
4881 this.pictureBox83.TabIndex = 11;
4882 this.pictureBox83.TabStop = false;
4883 this.pictureBox83.Click += this.pictureBox83_Click;
4884 this.panel87.Controls.Add(this.label87);
4885 this.panel87.Controls.Add(this.pictureBox84);
4886 this.panel87.Location = new Point(3, 2129);
4887 this.panel87.Name = "panel87";
4888 this.panel87.Size = new Size(105, 131);
4889 this.panel87.TabIndex = 84;
4890 this.label87.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4891 this.label87.ForeColor = Color.White;
4892 this.label87.Location = new Point(4, 106);
4893 this.label87.Name = "label87";
4894 this.label87.Size = new Size(98, 19);
4895 this.label87.TabIndex = 1;
4896 this.label87.Text = "Silent Assassin";
4897 this.label87.TextAlign = ContentAlignment.MiddleCenter;
4898 this.label87.Click += this.label87_Click;
4899 this.pictureBox84.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox84.BackgroundImage");
4900 this.pictureBox84.BackgroundImageLayout = ImageLayout.Stretch;
4901 this.pictureBox84.Location = new Point(3, 3);
4902 this.pictureBox84.Name = "pictureBox84";
4903 this.pictureBox84.Size = new Size(100, 100);
4904 this.pictureBox84.TabIndex = 11;
4905 this.pictureBox84.TabStop = false;
4906 this.pictureBox84.Click += this.pictureBox84_Click;
4907 this.panel88.Controls.Add(this.label88);
4908 this.panel88.Controls.Add(this.pictureBox85);
4909 this.panel88.Location = new Point(114, 2129);
4910 this.panel88.Name = "panel88";
4911 this.panel88.Size = new Size(105, 131);
4912 this.panel88.TabIndex = 85;
4913 this.label88.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4914 this.label88.ForeColor = Color.White;
4915 this.label88.Location = new Point(4, 106);
4916 this.label88.Name = "label88";
4917 this.label88.Size = new Size(98, 19);
4918 this.label88.TabIndex = 1;
4919 this.label88.Text = "Wing Simulator";
4920 this.label88.TextAlign = ContentAlignment.MiddleCenter;
4921 this.label88.Click += this.label88_Click;
4922 this.pictureBox85.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox85.BackgroundImage");
4923 this.pictureBox85.BackgroundImageLayout = ImageLayout.Stretch;
4924 this.pictureBox85.Location = new Point(3, 3);
4925 this.pictureBox85.Name = "pictureBox85";
4926 this.pictureBox85.Size = new Size(100, 100);
4927 this.pictureBox85.TabIndex = 11;
4928 this.pictureBox85.TabStop = false;
4929 this.pictureBox85.Click += this.pictureBox85_Click;
4930 this.panel89.Controls.Add(this.label89);
4931 this.panel89.Controls.Add(this.pictureBox86);
4932 this.panel89.Location = new Point(225, 2129);
4933 this.panel89.Name = "panel89";
4934 this.panel89.Size = new Size(105, 131);
4935 this.panel89.TabIndex = 86;
4936 this.label89.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4937 this.label89.ForeColor = Color.White;
4938 this.label89.Location = new Point(4, 106);
4939 this.label89.Name = "label89";
4940 this.label89.Size = new Size(98, 19);
4941 this.label89.TabIndex = 1;
4942 this.label89.Text = "Galactic Conquest";
4943 this.label89.TextAlign = ContentAlignment.MiddleCenter;
4944 this.label89.Click += this.label89_Click;
4945 this.pictureBox86.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox86.BackgroundImage");
4946 this.pictureBox86.BackgroundImageLayout = ImageLayout.Stretch;
4947 this.pictureBox86.Location = new Point(3, 3);
4948 this.pictureBox86.Name = "pictureBox86";
4949 this.pictureBox86.Size = new Size(100, 100);
4950 this.pictureBox86.TabIndex = 11;
4951 this.pictureBox86.TabStop = false;
4952 this.pictureBox86.Click += this.pictureBox86_Click;
4953 this.panel90.Controls.Add(this.label90);
4954 this.panel90.Controls.Add(this.pictureBox87);
4955 this.panel90.Location = new Point(336, 2129);
4956 this.panel90.Name = "panel90";
4957 this.panel90.Size = new Size(105, 131);
4958 this.panel90.TabIndex = 87;
4959 this.label90.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4960 this.label90.ForeColor = Color.White;
4961 this.label90.Location = new Point(4, 106);
4962 this.label90.Name = "label90";
4963 this.label90.Size = new Size(98, 19);
4964 this.label90.TabIndex = 1;
4965 this.label90.Text = "Monster Simulator";
4966 this.label90.TextAlign = ContentAlignment.MiddleCenter;
4967 this.label90.Click += this.label90_Click;
4968 this.pictureBox87.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox87.BackgroundImage");
4969 this.pictureBox87.BackgroundImageLayout = ImageLayout.Stretch;
4970 this.pictureBox87.Location = new Point(3, 3);
4971 this.pictureBox87.Name = "pictureBox87";
4972 this.pictureBox87.Size = new Size(100, 100);
4973 this.pictureBox87.TabIndex = 11;
4974 this.pictureBox87.TabStop = false;
4975 this.pictureBox87.Click += this.pictureBox87_Click;
4976 this.panel91.Controls.Add(this.label91);
4977 this.panel91.Controls.Add(this.pictureBox88);
4978 this.panel91.Location = new Point(447, 2129);
4979 this.panel91.Name = "panel91";
4980 this.panel91.Size = new Size(105, 131);
4981 this.panel91.TabIndex = 88;
4982 this.label91.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
4983 this.label91.ForeColor = Color.White;
4984 this.label91.Location = new Point(4, 106);
4985 this.label91.Name = "label91";
4986 this.label91.Size = new Size(98, 19);
4987 this.label91.TabIndex = 1;
4988 this.label91.Text = "Flood Escape 2";
4989 this.label91.TextAlign = ContentAlignment.MiddleCenter;
4990 this.label91.Click += this.label91_Click;
4991 this.pictureBox88.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox88.BackgroundImage");
4992 this.pictureBox88.BackgroundImageLayout = ImageLayout.Stretch;
4993 this.pictureBox88.Location = new Point(3, 3);
4994 this.pictureBox88.Name = "pictureBox88";
4995 this.pictureBox88.Size = new Size(100, 100);
4996 this.pictureBox88.TabIndex = 11;
4997 this.pictureBox88.TabStop = false;
4998 this.pictureBox88.Click += this.pictureBox88_Click;
4999 this.panel93.Controls.Add(this.label93);
5000 this.panel93.Controls.Add(this.pictureBox90);
5001 this.panel93.Location = new Point(3, 2266);
5002 this.panel93.Name = "panel93";
5003 this.panel93.Size = new Size(105, 131);
5004 this.panel93.TabIndex = 90;
5005 this.label93.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5006 this.label93.ForeColor = Color.White;
5007 this.label93.Location = new Point(4, 106);
5008 this.label93.Name = "label93";
5009 this.label93.Size = new Size(98, 19);
5010 this.label93.TabIndex = 1;
5011 this.label93.Text = " Really easy obby";
5012 this.label93.TextAlign = ContentAlignment.MiddleCenter;
5013 this.label93.Click += this.label93_Click;
5014 this.pictureBox90.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox90.BackgroundImage");
5015 this.pictureBox90.BackgroundImageLayout = ImageLayout.Stretch;
5016 this.pictureBox90.Location = new Point(3, 3);
5017 this.pictureBox90.Name = "pictureBox90";
5018 this.pictureBox90.Size = new Size(100, 100);
5019 this.pictureBox90.TabIndex = 11;
5020 this.pictureBox90.TabStop = false;
5021 this.pictureBox90.Click += this.pictureBox90_Click;
5022 this.panel94.Controls.Add(this.label94);
5023 this.panel94.Controls.Add(this.pictureBox91);
5024 this.panel94.Location = new Point(114, 2266);
5025 this.panel94.Name = "panel94";
5026 this.panel94.Size = new Size(105, 131);
5027 this.panel94.TabIndex = 91;
5028 this.label94.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5029 this.label94.ForeColor = Color.White;
5030 this.label94.Location = new Point(4, 106);
5031 this.label94.Name = "label94";
5032 this.label94.Size = new Size(98, 19);
5033 this.label94.TabIndex = 1;
5034 this.label94.Text = "Demon Slayer";
5035 this.label94.TextAlign = ContentAlignment.MiddleCenter;
5036 this.label94.Click += this.label94_Click;
5037 this.pictureBox91.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox91.BackgroundImage");
5038 this.pictureBox91.BackgroundImageLayout = ImageLayout.Stretch;
5039 this.pictureBox91.Location = new Point(3, 3);
5040 this.pictureBox91.Name = "pictureBox91";
5041 this.pictureBox91.Size = new Size(100, 100);
5042 this.pictureBox91.TabIndex = 11;
5043 this.pictureBox91.TabStop = false;
5044 this.pictureBox91.Click += this.pictureBox91_Click;
5045 this.panel95.Controls.Add(this.label95);
5046 this.panel95.Controls.Add(this.pictureBox92);
5047 this.panel95.Location = new Point(225, 2266);
5048 this.panel95.Name = "panel95";
5049 this.panel95.Size = new Size(105, 131);
5050 this.panel95.TabIndex = 92;
5051 this.panel95.Paint += this.panel95_Paint;
5052 this.label95.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5053 this.label95.ForeColor = Color.White;
5054 this.label95.Location = new Point(4, 106);
5055 this.label95.Name = "label95";
5056 this.label95.Size = new Size(98, 19);
5057 this.label95.TabIndex = 1;
5058 this.label95.Text = "Mineverse";
5059 this.label95.TextAlign = ContentAlignment.MiddleCenter;
5060 this.label95.Click += this.label95_Click;
5061 this.pictureBox92.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox92.BackgroundImage");
5062 this.pictureBox92.BackgroundImageLayout = ImageLayout.Stretch;
5063 this.pictureBox92.Location = new Point(3, 3);
5064 this.pictureBox92.Name = "pictureBox92";
5065 this.pictureBox92.Size = new Size(100, 100);
5066 this.pictureBox92.TabIndex = 11;
5067 this.pictureBox92.TabStop = false;
5068 this.pictureBox92.Click += this.pictureBox92_Click;
5069 this.panel97.Controls.Add(this.label97);
5070 this.panel97.Controls.Add(this.pictureBox94);
5071 this.panel97.Location = new Point(336, 2266);
5072 this.panel97.Name = "panel97";
5073 this.panel97.Size = new Size(105, 131);
5074 this.panel97.TabIndex = 94;
5075 this.label97.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5076 this.label97.ForeColor = Color.White;
5077 this.label97.Location = new Point(4, 106);
5078 this.label97.Name = "label97";
5079 this.label97.Size = new Size(98, 19);
5080 this.label97.TabIndex = 1;
5081 this.label97.Text = "Building Sim. 2";
5082 this.label97.TextAlign = ContentAlignment.MiddleCenter;
5083 this.label97.Click += this.label97_Click;
5084 this.pictureBox94.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox94.BackgroundImage");
5085 this.pictureBox94.BackgroundImageLayout = ImageLayout.Stretch;
5086 this.pictureBox94.Location = new Point(3, 3);
5087 this.pictureBox94.Name = "pictureBox94";
5088 this.pictureBox94.Size = new Size(100, 100);
5089 this.pictureBox94.TabIndex = 11;
5090 this.pictureBox94.TabStop = false;
5091 this.pictureBox94.Click += this.pictureBox94_Click;
5092 this.panel98.Controls.Add(this.label98);
5093 this.panel98.Controls.Add(this.pictureBox95);
5094 this.panel98.Location = new Point(447, 2266);
5095 this.panel98.Name = "panel98";
5096 this.panel98.Size = new Size(105, 131);
5097 this.panel98.TabIndex = 95;
5098 this.label98.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5099 this.label98.ForeColor = Color.White;
5100 this.label98.Location = new Point(4, 106);
5101 this.label98.Name = "label98";
5102 this.label98.Size = new Size(98, 19);
5103 this.label98.TabIndex = 1;
5104 this.label98.Text = "Vehicle Tycoon";
5105 this.label98.TextAlign = ContentAlignment.MiddleCenter;
5106 this.label98.Click += this.label98_Click;
5107 this.pictureBox95.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox95.BackgroundImage");
5108 this.pictureBox95.BackgroundImageLayout = ImageLayout.Stretch;
5109 this.pictureBox95.Location = new Point(3, 3);
5110 this.pictureBox95.Name = "pictureBox95";
5111 this.pictureBox95.Size = new Size(100, 100);
5112 this.pictureBox95.TabIndex = 11;
5113 this.pictureBox95.TabStop = false;
5114 this.pictureBox95.Click += this.pictureBox95_Click;
5115 this.panel99.Controls.Add(this.label99);
5116 this.panel99.Controls.Add(this.pictureBox96);
5117 this.panel99.Location = new Point(3, 2403);
5118 this.panel99.Name = "panel99";
5119 this.panel99.Size = new Size(105, 131);
5120 this.panel99.TabIndex = 96;
5121 this.label99.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5122 this.label99.ForeColor = Color.White;
5123 this.label99.Location = new Point(4, 106);
5124 this.label99.Name = "label99";
5125 this.label99.Size = new Size(98, 19);
5126 this.label99.TabIndex = 1;
5127 this.label99.Text = "Isle, 8";
5128 this.label99.TextAlign = ContentAlignment.MiddleCenter;
5129 this.label99.Click += this.label99_Click;
5130 this.pictureBox96.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox96.BackgroundImage");
5131 this.pictureBox96.BackgroundImageLayout = ImageLayout.Stretch;
5132 this.pictureBox96.Location = new Point(3, 3);
5133 this.pictureBox96.Name = "pictureBox96";
5134 this.pictureBox96.Size = new Size(100, 100);
5135 this.pictureBox96.TabIndex = 11;
5136 this.pictureBox96.TabStop = false;
5137 this.pictureBox96.Click += this.pictureBox96_Click;
5138 this.panel96.Controls.Add(this.label96);
5139 this.panel96.Controls.Add(this.pictureBox93);
5140 this.panel96.Location = new Point(114, 2403);
5141 this.panel96.Name = "panel96";
5142 this.panel96.Size = new Size(105, 131);
5143 this.panel96.TabIndex = 97;
5144 this.label96.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5145 this.label96.ForeColor = Color.White;
5146 this.label96.Location = new Point(4, 106);
5147 this.label96.Name = "label96";
5148 this.label96.Size = new Size(98, 19);
5149 this.label96.TabIndex = 1;
5150 this.label96.Text = "Heroes Of Speed";
5151 this.label96.TextAlign = ContentAlignment.MiddleCenter;
5152 this.label96.Click += this.label96_Click_1;
5153 this.pictureBox93.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox93.BackgroundImage");
5154 this.pictureBox93.BackgroundImageLayout = ImageLayout.Stretch;
5155 this.pictureBox93.Location = new Point(3, 3);
5156 this.pictureBox93.Name = "pictureBox93";
5157 this.pictureBox93.Size = new Size(100, 100);
5158 this.pictureBox93.TabIndex = 11;
5159 this.pictureBox93.TabStop = false;
5160 this.pictureBox93.Click += this.pictureBox93_Click_1;
5161 this.panel100.Controls.Add(this.label100);
5162 this.panel100.Controls.Add(this.pictureBox97);
5163 this.panel100.Location = new Point(225, 2403);
5164 this.panel100.Name = "panel100";
5165 this.panel100.Size = new Size(105, 131);
5166 this.panel100.TabIndex = 98;
5167 this.label100.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5168 this.label100.ForeColor = Color.White;
5169 this.label100.Location = new Point(4, 106);
5170 this.label100.Name = "label100";
5171 this.label100.Size = new Size(98, 19);
5172 this.label100.TabIndex = 1;
5173 this.label100.Text = "Bow Simulator";
5174 this.label100.TextAlign = ContentAlignment.MiddleCenter;
5175 this.label100.Click += this.label100_Click;
5176 this.pictureBox97.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox97.BackgroundImage");
5177 this.pictureBox97.BackgroundImageLayout = ImageLayout.Stretch;
5178 this.pictureBox97.Location = new Point(3, 3);
5179 this.pictureBox97.Name = "pictureBox97";
5180 this.pictureBox97.Size = new Size(100, 100);
5181 this.pictureBox97.TabIndex = 11;
5182 this.pictureBox97.TabStop = false;
5183 this.pictureBox97.Click += this.pictureBox97_Click;
5184 this.panel103.Controls.Add(this.label102);
5185 this.panel103.Controls.Add(this.pictureBox100);
5186 this.panel103.Location = new Point(336, 2403);
5187 this.panel103.Name = "panel103";
5188 this.panel103.Size = new Size(105, 131);
5189 this.panel103.TabIndex = 101;
5190 this.label102.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5191 this.label102.ForeColor = Color.White;
5192 this.label102.Location = new Point(4, 106);
5193 this.label102.Name = "label102";
5194 this.label102.Size = new Size(98, 19);
5195 this.label102.TabIndex = 1;
5196 this.label102.Text = "King Piece";
5197 this.label102.TextAlign = ContentAlignment.MiddleCenter;
5198 this.label102.Click += this.label102_Click;
5199 this.pictureBox100.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox100.BackgroundImage");
5200 this.pictureBox100.BackgroundImageLayout = ImageLayout.Stretch;
5201 this.pictureBox100.Location = new Point(3, 3);
5202 this.pictureBox100.Name = "pictureBox100";
5203 this.pictureBox100.Size = new Size(100, 100);
5204 this.pictureBox100.TabIndex = 11;
5205 this.pictureBox100.TabStop = false;
5206 this.pictureBox100.Click += this.pictureBox100_Click;
5207 this.panel101.Controls.Add(this.label101);
5208 this.panel101.Controls.Add(this.pictureBox98);
5209 this.panel101.Location = new Point(447, 2403);
5210 this.panel101.Name = "panel101";
5211 this.panel101.Size = new Size(105, 131);
5212 this.panel101.TabIndex = 102;
5213 this.label101.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5214 this.label101.ForeColor = Color.White;
5215 this.label101.Location = new Point(4, 106);
5216 this.label101.Name = "label101";
5217 this.label101.Size = new Size(98, 19);
5218 this.label101.TabIndex = 1;
5219 this.label101.Text = "LUCKY BLOCK";
5220 this.label101.TextAlign = ContentAlignment.MiddleCenter;
5221 this.label101.Click += this.label101_Click_1;
5222 this.pictureBox98.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox98.BackgroundImage");
5223 this.pictureBox98.BackgroundImageLayout = ImageLayout.Stretch;
5224 this.pictureBox98.Location = new Point(3, 3);
5225 this.pictureBox98.Name = "pictureBox98";
5226 this.pictureBox98.Size = new Size(100, 100);
5227 this.pictureBox98.TabIndex = 11;
5228 this.pictureBox98.TabStop = false;
5229 this.pictureBox98.Click += this.pictureBox98_Click_1;
5230 this.panel104.Controls.Add(this.label103);
5231 this.panel104.Controls.Add(this.pictureBox101);
5232 this.panel104.Location = new Point(3, 2540);
5233 this.panel104.Name = "panel104";
5234 this.panel104.Size = new Size(105, 131);
5235 this.panel104.TabIndex = 103;
5236 this.label103.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5237 this.label103.ForeColor = Color.White;
5238 this.label103.Location = new Point(4, 106);
5239 this.label103.Name = "label103";
5240 this.label103.Size = new Size(100, 19);
5241 this.label103.TabIndex = 1;
5242 this.label103.Text = "Dragon Adventures";
5243 this.label103.TextAlign = ContentAlignment.MiddleCenter;
5244 this.label103.Click += this.label103_Click;
5245 this.pictureBox101.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox101.BackgroundImage");
5246 this.pictureBox101.BackgroundImageLayout = ImageLayout.Stretch;
5247 this.pictureBox101.Location = new Point(3, 3);
5248 this.pictureBox101.Name = "pictureBox101";
5249 this.pictureBox101.Size = new Size(100, 100);
5250 this.pictureBox101.TabIndex = 11;
5251 this.pictureBox101.TabStop = false;
5252 this.pictureBox101.Click += this.pictureBox101_Click;
5253 this.panel105.Controls.Add(this.label104);
5254 this.panel105.Controls.Add(this.pictureBox102);
5255 this.panel105.Location = new Point(114, 2540);
5256 this.panel105.Name = "panel105";
5257 this.panel105.Size = new Size(105, 131);
5258 this.panel105.TabIndex = 103;
5259 this.label104.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5260 this.label104.ForeColor = Color.White;
5261 this.label104.Location = new Point(4, 106);
5262 this.label104.Name = "label104";
5263 this.label104.Size = new Size(98, 19);
5264 this.label104.TabIndex = 1;
5265 this.label104.Text = "Army Tycoon";
5266 this.label104.TextAlign = ContentAlignment.MiddleCenter;
5267 this.label104.Click += this.label104_Click;
5268 this.pictureBox102.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox102.BackgroundImage");
5269 this.pictureBox102.BackgroundImageLayout = ImageLayout.Stretch;
5270 this.pictureBox102.Location = new Point(3, 3);
5271 this.pictureBox102.Name = "pictureBox102";
5272 this.pictureBox102.Size = new Size(100, 100);
5273 this.pictureBox102.TabIndex = 11;
5274 this.pictureBox102.TabStop = false;
5275 this.pictureBox102.Click += this.pictureBox102_Click;
5276 this.panel107.Controls.Add(this.label106);
5277 this.panel107.Controls.Add(this.pictureBox104);
5278 this.panel107.Location = new Point(225, 2540);
5279 this.panel107.Name = "panel107";
5280 this.panel107.Size = new Size(105, 131);
5281 this.panel107.TabIndex = 105;
5282 this.label106.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5283 this.label106.ForeColor = Color.White;
5284 this.label106.Location = new Point(4, 106);
5285 this.label106.Name = "label106";
5286 this.label106.Size = new Size(98, 19);
5287 this.label106.TabIndex = 1;
5288 this.label106.Text = "Bubble Gum Sim.";
5289 this.label106.TextAlign = ContentAlignment.MiddleCenter;
5290 this.label106.Click += this.label106_Click;
5291 this.pictureBox104.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox104.BackgroundImage");
5292 this.pictureBox104.BackgroundImageLayout = ImageLayout.Stretch;
5293 this.pictureBox104.Location = new Point(3, 3);
5294 this.pictureBox104.Name = "pictureBox104";
5295 this.pictureBox104.Size = new Size(100, 100);
5296 this.pictureBox104.TabIndex = 11;
5297 this.pictureBox104.TabStop = false;
5298 this.pictureBox104.Click += this.pictureBox104_Click;
5299 this.panel108.Controls.Add(this.label107);
5300 this.panel108.Controls.Add(this.pictureBox105);
5301 this.panel108.Location = new Point(336, 2540);
5302 this.panel108.Name = "panel108";
5303 this.panel108.Size = new Size(105, 131);
5304 this.panel108.TabIndex = 106;
5305 this.label107.FlatStyle = FlatStyle.Flat;
5306 this.label107.Font = new Font("Segoe UI Semilight", 7f, FontStyle.Regular, GraphicsUnit.Point, 0);
5307 this.label107.ForeColor = Color.White;
5308 this.label107.Location = new Point(4, 106);
5309 this.label107.Name = "label107";
5310 this.label107.Size = new Size(98, 25);
5311 this.label107.TabIndex = 1;
5312 this.label107.Text = "Grandma's House\r\nObby";
5313 this.label107.TextAlign = ContentAlignment.TopCenter;
5314 this.label107.UseMnemonic = false;
5315 this.label107.Click += this.label107_Click;
5316 this.pictureBox105.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox105.BackgroundImage");
5317 this.pictureBox105.BackgroundImageLayout = ImageLayout.Stretch;
5318 this.pictureBox105.Location = new Point(3, 3);
5319 this.pictureBox105.Name = "pictureBox105";
5320 this.pictureBox105.Size = new Size(100, 100);
5321 this.pictureBox105.TabIndex = 11;
5322 this.pictureBox105.TabStop = false;
5323 this.pictureBox105.Click += this.pictureBox105_Click;
5324 this.panel106.Controls.Add(this.label105);
5325 this.panel106.Controls.Add(this.pictureBox103);
5326 this.panel106.Location = new Point(447, 2540);
5327 this.panel106.Name = "panel106";
5328 this.panel106.Size = new Size(105, 131);
5329 this.panel106.TabIndex = 104;
5330 this.label105.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5331 this.label105.ForeColor = Color.White;
5332 this.label105.Location = new Point(4, 106);
5333 this.label105.Name = "label105";
5334 this.label105.Size = new Size(98, 19);
5335 this.label105.TabIndex = 1;
5336 this.label105.Text = "Viking Simulator";
5337 this.label105.TextAlign = ContentAlignment.MiddleCenter;
5338 this.label105.Click += this.label105_Click;
5339 this.pictureBox103.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox103.BackgroundImage");
5340 this.pictureBox103.BackgroundImageLayout = ImageLayout.Stretch;
5341 this.pictureBox103.Location = new Point(3, 3);
5342 this.pictureBox103.Name = "pictureBox103";
5343 this.pictureBox103.Size = new Size(100, 100);
5344 this.pictureBox103.TabIndex = 11;
5345 this.pictureBox103.TabStop = false;
5346 this.pictureBox103.Click += this.pictureBox103_Click;
5347 this.panel102.Controls.Add(this.label16);
5348 this.panel102.Controls.Add(this.pictureBox99);
5349 this.panel102.Location = new Point(3, 2677);
5350 this.panel102.Name = "panel102";
5351 this.panel102.Size = new Size(105, 131);
5352 this.panel102.TabIndex = 100;
5353 this.label16.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5354 this.label16.ForeColor = Color.White;
5355 this.label16.Location = new Point(4, 106);
5356 this.label16.Name = "label16";
5357 this.label16.Size = new Size(98, 19);
5358 this.label16.TabIndex = 1;
5359 this.label16.Text = "Lawn Mowing Sim.";
5360 this.label16.TextAlign = ContentAlignment.MiddleCenter;
5361 this.label16.Click += this.label16_Click_1;
5362 this.pictureBox99.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox99.BackgroundImage");
5363 this.pictureBox99.BackgroundImageLayout = ImageLayout.Stretch;
5364 this.pictureBox99.Location = new Point(3, 3);
5365 this.pictureBox99.Name = "pictureBox99";
5366 this.pictureBox99.Size = new Size(100, 100);
5367 this.pictureBox99.TabIndex = 11;
5368 this.pictureBox99.TabStop = false;
5369 this.pictureBox99.Click += this.pictureBox99_Click;
5370 this.panel71.Controls.Add(this.label71);
5371 this.panel71.Controls.Add(this.pictureBox68);
5372 this.panel71.Location = new Point(114, 2677);
5373 this.panel71.Name = "panel71";
5374 this.panel71.Size = new Size(105, 131);
5375 this.panel71.TabIndex = 68;
5376 this.label71.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5377 this.label71.ForeColor = Color.White;
5378 this.label71.Location = new Point(4, 106);
5379 this.label71.Name = "label71";
5380 this.label71.Size = new Size(98, 19);
5381 this.label71.TabIndex = 1;
5382 this.label71.Text = "Phantom Forces";
5383 this.label71.TextAlign = ContentAlignment.MiddleCenter;
5384 this.label71.Click += this.label71_Click;
5385 this.pictureBox68.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox68.BackgroundImage");
5386 this.pictureBox68.BackgroundImageLayout = ImageLayout.Stretch;
5387 this.pictureBox68.Location = new Point(3, 3);
5388 this.pictureBox68.Name = "pictureBox68";
5389 this.pictureBox68.Size = new Size(100, 100);
5390 this.pictureBox68.TabIndex = 11;
5391 this.pictureBox68.TabStop = false;
5392 this.pictureBox68.Click += this.pictureBox68_Click;
5393 this.panel109.Controls.Add(this.label108);
5394 this.panel109.Controls.Add(this.pictureBox106);
5395 this.panel109.Location = new Point(225, 2677);
5396 this.panel109.Name = "panel109";
5397 this.panel109.Size = new Size(105, 131);
5398 this.panel109.TabIndex = 69;
5399 this.label108.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5400 this.label108.ForeColor = Color.White;
5401 this.label108.Location = new Point(4, 106);
5402 this.label108.Name = "label108";
5403 this.label108.Size = new Size(98, 19);
5404 this.label108.TabIndex = 1;
5405 this.label108.Text = "Horror Tycoon";
5406 this.label108.TextAlign = ContentAlignment.MiddleCenter;
5407 this.label108.Click += this.label108_Click;
5408 this.pictureBox106.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox106.BackgroundImage");
5409 this.pictureBox106.BackgroundImageLayout = ImageLayout.Stretch;
5410 this.pictureBox106.Location = new Point(3, 3);
5411 this.pictureBox106.Name = "pictureBox106";
5412 this.pictureBox106.Size = new Size(100, 100);
5413 this.pictureBox106.TabIndex = 11;
5414 this.pictureBox106.TabStop = false;
5415 this.pictureBox106.Click += this.pictureBox106_Click;
5416 this.panel110.Controls.Add(this.label109);
5417 this.panel110.Controls.Add(this.pictureBox107);
5418 this.panel110.Location = new Point(336, 2677);
5419 this.panel110.Name = "panel110";
5420 this.panel110.Size = new Size(105, 131);
5421 this.panel110.TabIndex = 70;
5422 this.label109.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5423 this.label109.ForeColor = Color.White;
5424 this.label109.Location = new Point(4, 106);
5425 this.label109.Name = "label109";
5426 this.label109.Size = new Size(98, 19);
5427 this.label109.TabIndex = 1;
5428 this.label109.Text = "Blox Hunt";
5429 this.label109.TextAlign = ContentAlignment.MiddleCenter;
5430 this.label109.Click += this.label109_Click;
5431 this.pictureBox107.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox107.BackgroundImage");
5432 this.pictureBox107.BackgroundImageLayout = ImageLayout.Stretch;
5433 this.pictureBox107.Location = new Point(3, 3);
5434 this.pictureBox107.Name = "pictureBox107";
5435 this.pictureBox107.Size = new Size(100, 100);
5436 this.pictureBox107.TabIndex = 11;
5437 this.pictureBox107.TabStop = false;
5438 this.pictureBox107.Click += this.pictureBox107_Click;
5439 this.panel111.Controls.Add(this.label110);
5440 this.panel111.Controls.Add(this.pictureBox108);
5441 this.panel111.Location = new Point(447, 2677);
5442 this.panel111.Name = "panel111";
5443 this.panel111.Size = new Size(105, 131);
5444 this.panel111.TabIndex = 71;
5445 this.label110.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5446 this.label110.ForeColor = Color.White;
5447 this.label110.Location = new Point(4, 106);
5448 this.label110.Name = "label110";
5449 this.label110.Size = new Size(98, 19);
5450 this.label110.TabIndex = 1;
5451 this.label110.Text = "Superhero Sim.";
5452 this.label110.TextAlign = ContentAlignment.MiddleCenter;
5453 this.label110.Click += this.label110_Click;
5454 this.pictureBox108.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox108.BackgroundImage");
5455 this.pictureBox108.BackgroundImageLayout = ImageLayout.Stretch;
5456 this.pictureBox108.Location = new Point(3, 3);
5457 this.pictureBox108.Name = "pictureBox108";
5458 this.pictureBox108.Size = new Size(100, 100);
5459 this.pictureBox108.TabIndex = 11;
5460 this.pictureBox108.TabStop = false;
5461 this.pictureBox108.Click += this.pictureBox108_Click;
5462 this.panel112.Controls.Add(this.label111);
5463 this.panel112.Controls.Add(this.pictureBox109);
5464 this.panel112.Location = new Point(3, 2814);
5465 this.panel112.Name = "panel112";
5466 this.panel112.Size = new Size(105, 131);
5467 this.panel112.TabIndex = 72;
5468 this.label111.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5469 this.label111.ForeColor = Color.White;
5470 this.label111.Location = new Point(4, 106);
5471 this.label111.Name = "label111";
5472 this.label111.Size = new Size(98, 19);
5473 this.label111.TabIndex = 1;
5474 this.label111.Text = "Survive the Killer!";
5475 this.label111.TextAlign = ContentAlignment.MiddleCenter;
5476 this.label111.Click += this.label111_Click;
5477 this.pictureBox109.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox109.BackgroundImage");
5478 this.pictureBox109.BackgroundImageLayout = ImageLayout.Stretch;
5479 this.pictureBox109.Location = new Point(3, 3);
5480 this.pictureBox109.Name = "pictureBox109";
5481 this.pictureBox109.Size = new Size(100, 100);
5482 this.pictureBox109.TabIndex = 11;
5483 this.pictureBox109.TabStop = false;
5484 this.pictureBox109.Click += this.pictureBox109_Click;
5485 this.panel113.Controls.Add(this.label112);
5486 this.panel113.Controls.Add(this.pictureBox110);
5487 this.panel113.Location = new Point(114, 2814);
5488 this.panel113.Name = "panel113";
5489 this.panel113.Size = new Size(105, 131);
5490 this.panel113.TabIndex = 73;
5491 this.label112.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5492 this.label112.ForeColor = Color.White;
5493 this.label112.Location = new Point(4, 106);
5494 this.label112.Name = "label112";
5495 this.label112.Size = new Size(98, 19);
5496 this.label112.TabIndex = 1;
5497 this.label112.Text = "A Modded Day";
5498 this.label112.TextAlign = ContentAlignment.MiddleCenter;
5499 this.label112.Click += this.label112_Click;
5500 this.pictureBox110.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox110.BackgroundImage");
5501 this.pictureBox110.BackgroundImageLayout = ImageLayout.Stretch;
5502 this.pictureBox110.Location = new Point(3, 3);
5503 this.pictureBox110.Name = "pictureBox110";
5504 this.pictureBox110.Size = new Size(100, 100);
5505 this.pictureBox110.TabIndex = 11;
5506 this.pictureBox110.TabStop = false;
5507 this.pictureBox110.Click += this.pictureBox110_Click;
5508 this.panel92.Controls.Add(this.label92);
5509 this.panel92.Controls.Add(this.pictureBox89);
5510 this.panel92.Location = new Point(225, 2814);
5511 this.panel92.Name = "panel92";
5512 this.panel92.Size = new Size(105, 131);
5513 this.panel92.TabIndex = 74;
5514 this.label92.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5515 this.label92.ForeColor = Color.White;
5516 this.label92.Location = new Point(4, 106);
5517 this.label92.Name = "label92";
5518 this.label92.Size = new Size(98, 19);
5519 this.label92.TabIndex = 1;
5520 this.label92.Text = "Murder Mystery 3";
5521 this.label92.TextAlign = ContentAlignment.MiddleCenter;
5522 this.label92.Click += this.label92_Click_1;
5523 this.pictureBox89.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox89.BackgroundImage");
5524 this.pictureBox89.BackgroundImageLayout = ImageLayout.Stretch;
5525 this.pictureBox89.Location = new Point(3, 3);
5526 this.pictureBox89.Name = "pictureBox89";
5527 this.pictureBox89.Size = new Size(100, 100);
5528 this.pictureBox89.TabIndex = 11;
5529 this.pictureBox89.TabStop = false;
5530 this.pictureBox89.Click += this.pictureBox89_Click_1;
5531 this.panel114.Controls.Add(this.label113);
5532 this.panel114.Controls.Add(this.pictureBox111);
5533 this.panel114.Location = new Point(336, 2814);
5534 this.panel114.Name = "panel114";
5535 this.panel114.Size = new Size(105, 131);
5536 this.panel114.TabIndex = 75;
5537 this.label113.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5538 this.label113.ForeColor = Color.White;
5539 this.label113.Location = new Point(4, 106);
5540 this.label113.Name = "label113";
5541 this.label113.Size = new Size(98, 19);
5542 this.label113.TabIndex = 1;
5543 this.label113.Text = "Breaking Point";
5544 this.label113.TextAlign = ContentAlignment.MiddleCenter;
5545 this.label113.Click += this.label113_Click;
5546 this.pictureBox111.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox111.BackgroundImage");
5547 this.pictureBox111.BackgroundImageLayout = ImageLayout.Stretch;
5548 this.pictureBox111.Location = new Point(3, 3);
5549 this.pictureBox111.Name = "pictureBox111";
5550 this.pictureBox111.Size = new Size(100, 100);
5551 this.pictureBox111.TabIndex = 11;
5552 this.pictureBox111.TabStop = false;
5553 this.pictureBox111.Click += this.pictureBox111_Click;
5554 this.panel59.Controls.Add(this.label60);
5555 this.panel59.Controls.Add(this.pictureBox56);
5556 this.panel59.Location = new Point(447, 2814);
5557 this.panel59.Name = "panel59";
5558 this.panel59.Size = new Size(105, 125);
5559 this.panel59.TabIndex = 54;
5560 this.label60.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5561 this.label60.ForeColor = Color.White;
5562 this.label60.Location = new Point(4, 106);
5563 this.label60.Name = "label60";
5564 this.label60.Size = new Size(98, 19);
5565 this.label60.TabIndex = 1;
5566 this.label60.Text = "Dungeon Quest";
5567 this.label60.TextAlign = ContentAlignment.MiddleCenter;
5568 this.label60.Click += this.label60_Click;
5569 this.pictureBox56.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox56.BackgroundImage");
5570 this.pictureBox56.BackgroundImageLayout = ImageLayout.Stretch;
5571 this.pictureBox56.Location = new Point(3, 3);
5572 this.pictureBox56.Name = "pictureBox56";
5573 this.pictureBox56.Size = new Size(100, 100);
5574 this.pictureBox56.TabIndex = 11;
5575 this.pictureBox56.TabStop = false;
5576 this.pictureBox56.Click += this.pictureBox56_Click;
5577 this.panel115.Controls.Add(this.label114);
5578 this.panel115.Controls.Add(this.pictureBox112);
5579 this.panel115.Location = new Point(3, 2951);
5580 this.panel115.Name = "panel115";
5581 this.panel115.Size = new Size(105, 125);
5582 this.panel115.TabIndex = 55;
5583 this.label114.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5584 this.label114.ForeColor = Color.White;
5585 this.label114.Location = new Point(4, 106);
5586 this.label114.Name = "label114";
5587 this.label114.Size = new Size(98, 19);
5588 this.label114.TabIndex = 1;
5589 this.label114.Text = "Egg Clicker";
5590 this.label114.TextAlign = ContentAlignment.MiddleCenter;
5591 this.label114.Click += this.label114_Click;
5592 this.pictureBox112.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox112.BackgroundImage");
5593 this.pictureBox112.BackgroundImageLayout = ImageLayout.Stretch;
5594 this.pictureBox112.Location = new Point(3, 3);
5595 this.pictureBox112.Name = "pictureBox112";
5596 this.pictureBox112.Size = new Size(100, 100);
5597 this.pictureBox112.TabIndex = 11;
5598 this.pictureBox112.TabStop = false;
5599 this.pictureBox112.Click += this.pictureBox112_Click;
5600 this.panel116.Controls.Add(this.label115);
5601 this.panel116.Controls.Add(this.pictureBox113);
5602 this.panel116.Location = new Point(114, 2951);
5603 this.panel116.Name = "panel116";
5604 this.panel116.Size = new Size(105, 125);
5605 this.panel116.TabIndex = 56;
5606 this.label115.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5607 this.label115.ForeColor = Color.White;
5608 this.label115.Location = new Point(4, 106);
5609 this.label115.Name = "label115";
5610 this.label115.Size = new Size(98, 19);
5611 this.label115.TabIndex = 1;
5612 this.label115.Text = "Thick Legends";
5613 this.label115.TextAlign = ContentAlignment.MiddleCenter;
5614 this.label115.Click += this.label115_Click;
5615 this.pictureBox113.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox113.BackgroundImage");
5616 this.pictureBox113.BackgroundImageLayout = ImageLayout.Stretch;
5617 this.pictureBox113.Location = new Point(3, 3);
5618 this.pictureBox113.Name = "pictureBox113";
5619 this.pictureBox113.Size = new Size(100, 100);
5620 this.pictureBox113.TabIndex = 11;
5621 this.pictureBox113.TabStop = false;
5622 this.pictureBox113.Click += this.pictureBox113_Click;
5623 this.panel117.Controls.Add(this.label116);
5624 this.panel117.Controls.Add(this.pictureBox114);
5625 this.panel117.Location = new Point(225, 2951);
5626 this.panel117.Name = "panel117";
5627 this.panel117.Size = new Size(105, 125);
5628 this.panel117.TabIndex = 57;
5629 this.label116.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5630 this.label116.ForeColor = Color.White;
5631 this.label116.Location = new Point(4, 106);
5632 this.label116.Name = "label116";
5633 this.label116.Size = new Size(98, 19);
5634 this.label116.TabIndex = 1;
5635 this.label116.Text = "Thief Life Simulator";
5636 this.label116.TextAlign = ContentAlignment.MiddleCenter;
5637 this.label116.Click += this.label116_Click;
5638 this.pictureBox114.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox114.BackgroundImage");
5639 this.pictureBox114.BackgroundImageLayout = ImageLayout.Stretch;
5640 this.pictureBox114.Location = new Point(3, 3);
5641 this.pictureBox114.Name = "pictureBox114";
5642 this.pictureBox114.Size = new Size(100, 100);
5643 this.pictureBox114.TabIndex = 11;
5644 this.pictureBox114.TabStop = false;
5645 this.pictureBox114.Click += this.pictureBox114_Click;
5646 this.button7.BackColor = Color.FromArgb(50, 50, 50);
5647 this.button7.FlatAppearance.BorderSize = 0;
5648 this.button7.FlatStyle = FlatStyle.Flat;
5649 this.button7.Font = new Font("Segoe UI Semilight", 9.75f, FontStyle.Bold);
5650 this.button7.ForeColor = Color.White;
5651 this.button7.Location = new Point(606, 15);
5652 this.button7.Name = "button7";
5653 this.button7.Size = new Size(147, 46);
5654 this.button7.TabIndex = 8;
5655 this.button7.Text = "Executor";
5656 this.button7.UseMnemonic = false;
5657 this.button7.UseVisualStyleBackColor = false;
5658 this.button7.Click += this.Button7_Click;
5659 this.panel1.Location = new Point(12, 32);
5660 this.panel1.Name = "panel1";
5661 this.panel1.Size = new Size(773, 11);
5662 this.panel1.TabIndex = 5;
5663 this.panel2.Location = new Point(11, 433);
5664 this.panel2.Name = "panel2";
5665 this.panel2.Size = new Size(774, 11);
5666 this.panel2.TabIndex = 6;
5667 this.panel3.Location = new Point(784, 30);
5668 this.panel3.Name = "panel3";
5669 this.panel3.Size = new Size(10, 414);
5670 this.panel3.TabIndex = 7;
5671 this.panel4.Location = new Point(6, 40);
5672 this.panel4.Name = "panel4";
5673 this.panel4.Size = new Size(10, 393);
5674 this.panel4.TabIndex = 8;
5675 this.contextMenuStrip1.Name = "contextMenuStrip1";
5676 this.contextMenuStrip1.Size = new Size(61, 4);
5677 this.timer1.Enabled = true;
5678 this.timer1.Interval = 1;
5679 this.panel118.Controls.Add(this.label117);
5680 this.panel118.Controls.Add(this.pictureBox115);
5681 this.panel118.Location = new Point(336, 2951);
5682 this.panel118.Name = "panel118";
5683 this.panel118.Size = new Size(105, 125);
5684 this.panel118.TabIndex = 58;
5685 this.label117.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5686 this.label117.ForeColor = Color.White;
5687 this.label117.Location = new Point(4, 106);
5688 this.label117.Name = "label117";
5689 this.label117.Size = new Size(98, 19);
5690 this.label117.TabIndex = 1;
5691 this.label117.Text = "Hotel Elephant";
5692 this.label117.TextAlign = ContentAlignment.MiddleCenter;
5693 this.label117.Click += this.label117_Click;
5694 this.pictureBox115.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox115.BackgroundImage");
5695 this.pictureBox115.BackgroundImageLayout = ImageLayout.Stretch;
5696 this.pictureBox115.Location = new Point(3, 3);
5697 this.pictureBox115.Name = "pictureBox115";
5698 this.pictureBox115.Size = new Size(100, 100);
5699 this.pictureBox115.TabIndex = 11;
5700 this.pictureBox115.TabStop = false;
5701 this.pictureBox115.Click += this.pictureBox115_Click;
5702 this.panel119.Controls.Add(this.label118);
5703 this.panel119.Controls.Add(this.pictureBox116);
5704 this.panel119.Location = new Point(447, 2951);
5705 this.panel119.Name = "panel119";
5706 this.panel119.Size = new Size(105, 125);
5707 this.panel119.TabIndex = 59;
5708 this.label118.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5709 this.label118.ForeColor = Color.White;
5710 this.label118.Location = new Point(4, 106);
5711 this.label118.Name = "label118";
5712 this.label118.Size = new Size(98, 19);
5713 this.label118.TabIndex = 1;
5714 this.label118.Text = "RPG Simulator";
5715 this.label118.TextAlign = ContentAlignment.MiddleCenter;
5716 this.label118.Click += this.label118_Click;
5717 this.pictureBox116.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox116.BackgroundImage");
5718 this.pictureBox116.BackgroundImageLayout = ImageLayout.Stretch;
5719 this.pictureBox116.Location = new Point(3, 3);
5720 this.pictureBox116.Name = "pictureBox116";
5721 this.pictureBox116.Size = new Size(100, 100);
5722 this.pictureBox116.TabIndex = 11;
5723 this.pictureBox116.TabStop = false;
5724 this.pictureBox116.Click += this.pictureBox116_Click;
5725 this.panel120.Controls.Add(this.label119);
5726 this.panel120.Controls.Add(this.pictureBox117);
5727 this.panel120.Location = new Point(3, 3082);
5728 this.panel120.Name = "panel120";
5729 this.panel120.Size = new Size(105, 125);
5730 this.panel120.TabIndex = 60;
5731 this.label119.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5732 this.label119.ForeColor = Color.White;
5733 this.label119.Location = new Point(4, 106);
5734 this.label119.Name = "label119";
5735 this.label119.Size = new Size(98, 19);
5736 this.label119.TabIndex = 1;
5737 this.label119.Text = "Robot 64";
5738 this.label119.TextAlign = ContentAlignment.MiddleCenter;
5739 this.label119.Click += this.label119_Click;
5740 this.pictureBox117.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox117.BackgroundImage");
5741 this.pictureBox117.BackgroundImageLayout = ImageLayout.Stretch;
5742 this.pictureBox117.Location = new Point(3, 3);
5743 this.pictureBox117.Name = "pictureBox117";
5744 this.pictureBox117.Size = new Size(100, 100);
5745 this.pictureBox117.TabIndex = 11;
5746 this.pictureBox117.TabStop = false;
5747 this.pictureBox117.Click += this.pictureBox117_Click;
5748 this.panel121.Controls.Add(this.label120);
5749 this.panel121.Controls.Add(this.pictureBox118);
5750 this.panel121.Location = new Point(114, 3082);
5751 this.panel121.Name = "panel121";
5752 this.panel121.Size = new Size(105, 125);
5753 this.panel121.TabIndex = 61;
5754 this.label120.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5755 this.label120.ForeColor = Color.White;
5756 this.label120.Location = new Point(4, 106);
5757 this.label120.Name = "label120";
5758 this.label120.Size = new Size(98, 19);
5759 this.label120.TabIndex = 1;
5760 this.label120.Text = "Fishing Simulator";
5761 this.label120.TextAlign = ContentAlignment.MiddleCenter;
5762 this.label120.Click += this.label120_Click;
5763 this.pictureBox118.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox118.BackgroundImage");
5764 this.pictureBox118.BackgroundImageLayout = ImageLayout.Stretch;
5765 this.pictureBox118.Location = new Point(3, 3);
5766 this.pictureBox118.Name = "pictureBox118";
5767 this.pictureBox118.Size = new Size(100, 100);
5768 this.pictureBox118.TabIndex = 11;
5769 this.pictureBox118.TabStop = false;
5770 this.pictureBox118.Click += this.pictureBox118_Click;
5771 this.panel122.Controls.Add(this.label121);
5772 this.panel122.Controls.Add(this.pictureBox119);
5773 this.panel122.Location = new Point(225, 3082);
5774 this.panel122.Name = "panel122";
5775 this.panel122.Size = new Size(105, 125);
5776 this.panel122.TabIndex = 62;
5777 this.label121.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5778 this.label121.ForeColor = Color.White;
5779 this.label121.Location = new Point(4, 106);
5780 this.label121.Name = "label121";
5781 this.label121.Size = new Size(98, 19);
5782 this.label121.TabIndex = 1;
5783 this.label121.Text = "Legends Of Speed";
5784 this.label121.TextAlign = ContentAlignment.MiddleCenter;
5785 this.label121.Click += this.label121_Click;
5786 this.pictureBox119.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox119.BackgroundImage");
5787 this.pictureBox119.BackgroundImageLayout = ImageLayout.Stretch;
5788 this.pictureBox119.Location = new Point(3, 3);
5789 this.pictureBox119.Name = "pictureBox119";
5790 this.pictureBox119.Size = new Size(100, 100);
5791 this.pictureBox119.TabIndex = 11;
5792 this.pictureBox119.TabStop = false;
5793 this.pictureBox119.Click += this.pictureBox119_Click;
5794 this.panel123.Controls.Add(this.label122);
5795 this.panel123.Controls.Add(this.pictureBox120);
5796 this.panel123.Location = new Point(336, 3082);
5797 this.panel123.Name = "panel123";
5798 this.panel123.Size = new Size(105, 125);
5799 this.panel123.TabIndex = 63;
5800 this.label122.Font = new Font("Segoe UI Semilight", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
5801 this.label122.ForeColor = Color.White;
5802 this.label122.Location = new Point(4, 106);
5803 this.label122.Name = "label122";
5804 this.label122.Size = new Size(98, 19);
5805 this.label122.TabIndex = 1;
5806 this.label122.Text = "Billionaire Simulator";
5807 this.label122.TextAlign = ContentAlignment.MiddleCenter;
5808 this.label122.Click += this.label122_Click;
5809 this.pictureBox120.BackgroundImage = (Image)componentResourceManager.GetObject("pictureBox120.BackgroundImage");
5810 this.pictureBox120.BackgroundImageLayout = ImageLayout.Stretch;
5811 this.pictureBox120.Location = new Point(3, 3);
5812 this.pictureBox120.Name = "pictureBox120";
5813 this.pictureBox120.Size = new Size(100, 100);
5814 this.pictureBox120.TabIndex = 11;
5815 this.pictureBox120.TabStop = false;
5816 base.AutoScaleDimensions = new SizeF(6f, 13f);
5817 base.AutoScaleMode = AutoScaleMode.Font;
5818 this.BackColor = Color.FromArgb(33, 33, 33);
5819 base.ClientSize = new Size(800, 450);
5820 base.Controls.Add(this.panel4);
5821 base.Controls.Add(this.panel3);
5822 base.Controls.Add(this.panel2);
5823 base.Controls.Add(this.panel1);
5824 base.Controls.Add(this.furkTabs);
5825 base.Controls.Add(this.border2);
5826 base.Controls.Add(this.border1);
5827 base.Controls.Add(this.border3);
5828 base.Controls.Add(this.topBar);
5829 base.FormBorderStyle = FormBorderStyle.None;
5830 base.Icon = (Icon)componentResourceManager.GetObject("$this.Icon");
5831 base.Name = "Form1";
5832 this.Text = "Furk OS ";
5833 base.Load += this.Form1_Load;
5834 this.topBar.ResumeLayout(false);
5835 this.topBar.PerformLayout();
5836 ((ISupportInitialize)this.pictureBox1).EndInit();
5837 this.furkTabs.ResumeLayout(false);
5838 this.execPage.ResumeLayout(false);
5839 this.scriptHub.ResumeLayout(false);
5840 this.flowLayoutPanel1.ResumeLayout(false);
5841 this.panel6.ResumeLayout(false);
5842 ((ISupportInitialize)this.pictureBox3).EndInit();
5843 this.panel5.ResumeLayout(false);
5844 ((ISupportInitialize)this.pictureBox4).EndInit();
5845 this.panel7.ResumeLayout(false);
5846 ((ISupportInitialize)this.pictureBox5).EndInit();
5847 this.panel8.ResumeLayout(false);
5848 ((ISupportInitialize)this.pictureBox6).EndInit();
5849 this.panel9.ResumeLayout(false);
5850 ((ISupportInitialize)this.pictureBox7).EndInit();
5851 this.panel10.ResumeLayout(false);
5852 ((ISupportInitialize)this.pictureBox8).EndInit();
5853 this.panel11.ResumeLayout(false);
5854 ((ISupportInitialize)this.pictureBox9).EndInit();
5855 this.panel12.ResumeLayout(false);
5856 ((ISupportInitialize)this.pictureBox10).EndInit();
5857 this.panel13.ResumeLayout(false);
5858 ((ISupportInitialize)this.pictureBox11).EndInit();
5859 this.panel14.ResumeLayout(false);
5860 ((ISupportInitialize)this.pictureBox12).EndInit();
5861 this.panel20.ResumeLayout(false);
5862 ((ISupportInitialize)this.pictureBox17).EndInit();
5863 this.panel19.ResumeLayout(false);
5864 ((ISupportInitialize)this.pictureBox16).EndInit();
5865 this.panel18.ResumeLayout(false);
5866 ((ISupportInitialize)this.pictureBox15).EndInit();
5867 this.panel17.ResumeLayout(false);
5868 ((ISupportInitialize)this.pictureBox2).EndInit();
5869 this.panel15.ResumeLayout(false);
5870 ((ISupportInitialize)this.pictureBox14).EndInit();
5871 this.panel25.ResumeLayout(false);
5872 ((ISupportInitialize)this.pictureBox22).EndInit();
5873 this.panel23.ResumeLayout(false);
5874 ((ISupportInitialize)this.pictureBox20).EndInit();
5875 this.panel22.ResumeLayout(false);
5876 ((ISupportInitialize)this.pictureBox19).EndInit();
5877 this.panel21.ResumeLayout(false);
5878 ((ISupportInitialize)this.pictureBox18).EndInit();
5879 this.panel24.ResumeLayout(false);
5880 ((ISupportInitialize)this.pictureBox21).EndInit();
5881 this.panel16.ResumeLayout(false);
5882 ((ISupportInitialize)this.pictureBox13).EndInit();
5883 this.panel26.ResumeLayout(false);
5884 ((ISupportInitialize)this.pictureBox23).EndInit();
5885 this.panel27.ResumeLayout(false);
5886 ((ISupportInitialize)this.pictureBox24).EndInit();
5887 this.panel29.ResumeLayout(false);
5888 ((ISupportInitialize)this.pictureBox26).EndInit();
5889 this.panel30.ResumeLayout(false);
5890 ((ISupportInitialize)this.pictureBox27).EndInit();
5891 this.panel31.ResumeLayout(false);
5892 ((ISupportInitialize)this.pictureBox28).EndInit();
5893 this.panel32.ResumeLayout(false);
5894 ((ISupportInitialize)this.pictureBox29).EndInit();
5895 this.panel33.ResumeLayout(false);
5896 ((ISupportInitialize)this.pictureBox30).EndInit();
5897 this.panel34.ResumeLayout(false);
5898 ((ISupportInitialize)this.pictureBox31).EndInit();
5899 this.panel35.ResumeLayout(false);
5900 ((ISupportInitialize)this.pictureBox32).EndInit();
5901 this.panel36.ResumeLayout(false);
5902 ((ISupportInitialize)this.pictureBox33).EndInit();
5903 this.panel37.ResumeLayout(false);
5904 ((ISupportInitialize)this.pictureBox34).EndInit();
5905 this.panel38.ResumeLayout(false);
5906 ((ISupportInitialize)this.pictureBox35).EndInit();
5907 this.panel39.ResumeLayout(false);
5908 ((ISupportInitialize)this.pictureBox36).EndInit();
5909 this.panel40.ResumeLayout(false);
5910 ((ISupportInitialize)this.pictureBox37).EndInit();
5911 this.panel41.ResumeLayout(false);
5912 ((ISupportInitialize)this.pictureBox38).EndInit();
5913 this.panel42.ResumeLayout(false);
5914 ((ISupportInitialize)this.pictureBox39).EndInit();
5915 this.panel43.ResumeLayout(false);
5916 ((ISupportInitialize)this.pictureBox40).EndInit();
5917 this.panel44.ResumeLayout(false);
5918 ((ISupportInitialize)this.pictureBox41).EndInit();
5919 this.panel45.ResumeLayout(false);
5920 ((ISupportInitialize)this.pictureBox42).EndInit();
5921 this.panel46.ResumeLayout(false);
5922 ((ISupportInitialize)this.pictureBox43).EndInit();
5923 this.panel47.ResumeLayout(false);
5924 ((ISupportInitialize)this.pictureBox44).EndInit();
5925 this.panel48.ResumeLayout(false);
5926 ((ISupportInitialize)this.pictureBox45).EndInit();
5927 this.panel49.ResumeLayout(false);
5928 ((ISupportInitialize)this.pictureBox46).EndInit();
5929 this.panel50.ResumeLayout(false);
5930 ((ISupportInitialize)this.pictureBox47).EndInit();
5931 this.panel51.ResumeLayout(false);
5932 ((ISupportInitialize)this.pictureBox48).EndInit();
5933 this.panel52.ResumeLayout(false);
5934 ((ISupportInitialize)this.pictureBox49).EndInit();
5935 this.panel53.ResumeLayout(false);
5936 ((ISupportInitialize)this.pictureBox50).EndInit();
5937 this.panel54.ResumeLayout(false);
5938 ((ISupportInitialize)this.pictureBox51).EndInit();
5939 this.panel55.ResumeLayout(false);
5940 ((ISupportInitialize)this.pictureBox52).EndInit();
5941 this.panel56.ResumeLayout(false);
5942 ((ISupportInitialize)this.pictureBox53).EndInit();
5943 this.panel57.ResumeLayout(false);
5944 ((ISupportInitialize)this.pictureBox54).EndInit();
5945 this.panel60.ResumeLayout(false);
5946 ((ISupportInitialize)this.pictureBox57).EndInit();
5947 this.panel61.ResumeLayout(false);
5948 ((ISupportInitialize)this.pictureBox58).EndInit();
5949 this.panel62.ResumeLayout(false);
5950 ((ISupportInitialize)this.pictureBox59).EndInit();
5951 this.panel63.ResumeLayout(false);
5952 ((ISupportInitialize)this.pictureBox60).EndInit();
5953 this.panel64.ResumeLayout(false);
5954 ((ISupportInitialize)this.pictureBox61).EndInit();
5955 this.panel65.ResumeLayout(false);
5956 ((ISupportInitialize)this.pictureBox62).EndInit();
5957 this.panel66.ResumeLayout(false);
5958 ((ISupportInitialize)this.pictureBox63).EndInit();
5959 this.panel28.ResumeLayout(false);
5960 ((ISupportInitialize)this.pictureBox25).EndInit();
5961 this.panel58.ResumeLayout(false);
5962 ((ISupportInitialize)this.pictureBox55).EndInit();
5963 this.panel67.ResumeLayout(false);
5964 ((ISupportInitialize)this.pictureBox64).EndInit();
5965 this.panel68.ResumeLayout(false);
5966 ((ISupportInitialize)this.pictureBox65).EndInit();
5967 this.panel69.ResumeLayout(false);
5968 ((ISupportInitialize)this.pictureBox66).EndInit();
5969 this.panel70.ResumeLayout(false);
5970 ((ISupportInitialize)this.pictureBox67).EndInit();
5971 this.panel72.ResumeLayout(false);
5972 ((ISupportInitialize)this.pictureBox69).EndInit();
5973 this.panel73.ResumeLayout(false);
5974 ((ISupportInitialize)this.pictureBox70).EndInit();
5975 this.panel74.ResumeLayout(false);
5976 ((ISupportInitialize)this.pictureBox71).EndInit();
5977 this.panel75.ResumeLayout(false);
5978 ((ISupportInitialize)this.pictureBox72).EndInit();
5979 this.panel76.ResumeLayout(false);
5980 ((ISupportInitialize)this.pictureBox73).EndInit();
5981 this.panel77.ResumeLayout(false);
5982 ((ISupportInitialize)this.pictureBox74).EndInit();
5983 this.panel78.ResumeLayout(false);
5984 ((ISupportInitialize)this.pictureBox75).EndInit();
5985 this.panel79.ResumeLayout(false);
5986 ((ISupportInitialize)this.pictureBox76).EndInit();
5987 this.panel80.ResumeLayout(false);
5988 ((ISupportInitialize)this.pictureBox77).EndInit();
5989 this.panel81.ResumeLayout(false);
5990 ((ISupportInitialize)this.pictureBox78).EndInit();
5991 this.panel82.ResumeLayout(false);
5992 ((ISupportInitialize)this.pictureBox79).EndInit();
5993 this.panel83.ResumeLayout(false);
5994 ((ISupportInitialize)this.pictureBox80).EndInit();
5995 this.panel84.ResumeLayout(false);
5996 ((ISupportInitialize)this.pictureBox81).EndInit();
5997 this.panel85.ResumeLayout(false);
5998 ((ISupportInitialize)this.pictureBox82).EndInit();
5999 this.panel86.ResumeLayout(false);
6000 ((ISupportInitialize)this.pictureBox83).EndInit();
6001 this.panel87.ResumeLayout(false);
6002 ((ISupportInitialize)this.pictureBox84).EndInit();
6003 this.panel88.ResumeLayout(false);
6004 ((ISupportInitialize)this.pictureBox85).EndInit();
6005 this.panel89.ResumeLayout(false);
6006 ((ISupportInitialize)this.pictureBox86).EndInit();
6007 this.panel90.ResumeLayout(false);
6008 ((ISupportInitialize)this.pictureBox87).EndInit();
6009 this.panel91.ResumeLayout(false);
6010 ((ISupportInitialize)this.pictureBox88).EndInit();
6011 this.panel93.ResumeLayout(false);
6012 ((ISupportInitialize)this.pictureBox90).EndInit();
6013 this.panel94.ResumeLayout(false);
6014 ((ISupportInitialize)this.pictureBox91).EndInit();
6015 this.panel95.ResumeLayout(false);
6016 ((ISupportInitialize)this.pictureBox92).EndInit();
6017 this.panel97.ResumeLayout(false);
6018 ((ISupportInitialize)this.pictureBox94).EndInit();
6019 this.panel98.ResumeLayout(false);
6020 ((ISupportInitialize)this.pictureBox95).EndInit();
6021 this.panel99.ResumeLayout(false);
6022 ((ISupportInitialize)this.pictureBox96).EndInit();
6023 this.panel96.ResumeLayout(false);
6024 ((ISupportInitialize)this.pictureBox93).EndInit();
6025 this.panel100.ResumeLayout(false);
6026 ((ISupportInitialize)this.pictureBox97).EndInit();
6027 this.panel103.ResumeLayout(false);
6028 ((ISupportInitialize)this.pictureBox100).EndInit();
6029 this.panel101.ResumeLayout(false);
6030 ((ISupportInitialize)this.pictureBox98).EndInit();
6031 this.panel104.ResumeLayout(false);
6032 ((ISupportInitialize)this.pictureBox101).EndInit();
6033 this.panel105.ResumeLayout(false);
6034 ((ISupportInitialize)this.pictureBox102).EndInit();
6035 this.panel107.ResumeLayout(false);
6036 ((ISupportInitialize)this.pictureBox104).EndInit();
6037 this.panel108.ResumeLayout(false);
6038 ((ISupportInitialize)this.pictureBox105).EndInit();
6039 this.panel106.ResumeLayout(false);
6040 ((ISupportInitialize)this.pictureBox103).EndInit();
6041 this.panel102.ResumeLayout(false);
6042 ((ISupportInitialize)this.pictureBox99).EndInit();
6043 this.panel71.ResumeLayout(false);
6044 ((ISupportInitialize)this.pictureBox68).EndInit();
6045 this.panel109.ResumeLayout(false);
6046 ((ISupportInitialize)this.pictureBox106).EndInit();
6047 this.panel110.ResumeLayout(false);
6048 ((ISupportInitialize)this.pictureBox107).EndInit();
6049 this.panel111.ResumeLayout(false);
6050 ((ISupportInitialize)this.pictureBox108).EndInit();
6051 this.panel112.ResumeLayout(false);
6052 ((ISupportInitialize)this.pictureBox109).EndInit();
6053 this.panel113.ResumeLayout(false);
6054 ((ISupportInitialize)this.pictureBox110).EndInit();
6055 this.panel92.ResumeLayout(false);
6056 ((ISupportInitialize)this.pictureBox89).EndInit();
6057 this.panel114.ResumeLayout(false);
6058 ((ISupportInitialize)this.pictureBox111).EndInit();
6059 this.panel59.ResumeLayout(false);
6060 ((ISupportInitialize)this.pictureBox56).EndInit();
6061 this.panel115.ResumeLayout(false);
6062 ((ISupportInitialize)this.pictureBox112).EndInit();
6063 this.panel116.ResumeLayout(false);
6064 ((ISupportInitialize)this.pictureBox113).EndInit();
6065 this.panel117.ResumeLayout(false);
6066 ((ISupportInitialize)this.pictureBox114).EndInit();
6067 this.panel118.ResumeLayout(false);
6068 ((ISupportInitialize)this.pictureBox115).EndInit();
6069 this.panel119.ResumeLayout(false);
6070 ((ISupportInitialize)this.pictureBox116).EndInit();
6071 this.panel120.ResumeLayout(false);
6072 ((ISupportInitialize)this.pictureBox117).EndInit();
6073 this.panel121.ResumeLayout(false);
6074 ((ISupportInitialize)this.pictureBox118).EndInit();
6075 this.panel122.ResumeLayout(false);
6076 ((ISupportInitialize)this.pictureBox119).EndInit();
6077 this.panel123.ResumeLayout(false);
6078 ((ISupportInitialize)this.pictureBox120).EndInit();
6079 base.ResumeLayout(false);
6080 }
6081
6082 // Token: 0x04000001 RID: 1
6083 private WebClient webLoader = new WebClient();
6084
6085 // Token: 0x04000002 RID: 2
6086 private Module api = new Module();
6087
6088 // Token: 0x04000003 RID: 3
6089 public const int WM_NCLBUTTONDOWN = 161;
6090
6091 // Token: 0x04000004 RID: 4
6092 public const int HT_CAPTION = 2;
6093
6094 // Token: 0x04000005 RID: 5
6095 private OpenFileDialog open = new OpenFileDialog
6096 {
6097 Filter = "Lua Script (*.txt)|*.txt|Lua Script (*.lua)|*.lua",
6098 FilterIndex = 1,
6099 Title = "Open Script"
6100 };
6101
6102 // Token: 0x04000006 RID: 6
6103 private IContainer components;
6104
6105 // Token: 0x04000007 RID: 7
6106 private Panel topBar;
6107
6108 // Token: 0x04000008 RID: 8
6109 private Panel border3;
6110
6111 // Token: 0x04000009 RID: 9
6112 private Panel border1;
6113
6114 // Token: 0x0400000A RID: 10
6115 private Panel border2;
6116
6117 // Token: 0x0400000B RID: 11
6118 private PictureBox pictureBox1;
6119
6120 // Token: 0x0400000C RID: 12
6121 private TabControl furkTabs;
6122
6123 // Token: 0x0400000D RID: 13
6124 private TabPage execPage;
6125
6126 // Token: 0x0400000E RID: 14
6127 private TabPage scriptHub;
6128
6129 // Token: 0x0400000F RID: 15
6130 private Panel panel1;
6131
6132 // Token: 0x04000010 RID: 16
6133 private Panel panel2;
6134
6135 // Token: 0x04000011 RID: 17
6136 private Panel panel3;
6137
6138 // Token: 0x04000012 RID: 18
6139 private Panel panel4;
6140
6141 // Token: 0x04000013 RID: 19
6142 private Label label1;
6143
6144 // Token: 0x04000014 RID: 20
6145 private Label label2;
6146
6147 // Token: 0x04000015 RID: 21
6148 private Button button2;
6149
6150 // Token: 0x04000016 RID: 22
6151 private WebBrowser Monaco;
6152
6153 // Token: 0x04000017 RID: 23
6154 private Button button5;
6155
6156 // Token: 0x04000018 RID: 24
6157 private Button button3;
6158
6159 // Token: 0x04000019 RID: 25
6160 private Button button4;
6161
6162 // Token: 0x0400001A RID: 26
6163 private Button button1;
6164
6165 // Token: 0x0400001B RID: 27
6166 private Button button6;
6167
6168 // Token: 0x0400001C RID: 28
6169 private FlowLayoutPanel flowLayoutPanel1;
6170
6171 // Token: 0x0400001D RID: 29
6172 private Button button7;
6173
6174 // Token: 0x0400001E RID: 30
6175 private Label label3;
6176
6177 // Token: 0x0400001F RID: 31
6178 private PictureBox pictureBox4;
6179
6180 // Token: 0x04000020 RID: 32
6181 private PictureBox pictureBox5;
6182
6183 // Token: 0x04000021 RID: 33
6184 private PictureBox pictureBox6;
6185
6186 // Token: 0x04000022 RID: 34
6187 private PictureBox pictureBox7;
6188
6189 // Token: 0x04000023 RID: 35
6190 private PictureBox pictureBox8;
6191
6192 // Token: 0x04000024 RID: 36
6193 private PictureBox pictureBox9;
6194
6195 // Token: 0x04000025 RID: 37
6196 private PictureBox pictureBox10;
6197
6198 // Token: 0x04000026 RID: 38
6199 private PictureBox pictureBox11;
6200
6201 // Token: 0x04000027 RID: 39
6202 private PictureBox pictureBox12;
6203
6204 // Token: 0x04000028 RID: 40
6205 private PictureBox pictureBox13;
6206
6207 // Token: 0x04000029 RID: 41
6208 private PictureBox pictureBox14;
6209
6210 // Token: 0x0400002A RID: 42
6211 private Button button8;
6212
6213 // Token: 0x0400002B RID: 43
6214 private Panel panel6;
6215
6216 // Token: 0x0400002C RID: 44
6217 private Label label5;
6218
6219 // Token: 0x0400002D RID: 45
6220 private PictureBox pictureBox3;
6221
6222 // Token: 0x0400002E RID: 46
6223 private Panel panel5;
6224
6225 // Token: 0x0400002F RID: 47
6226 private Label label4;
6227
6228 // Token: 0x04000030 RID: 48
6229 private Panel panel7;
6230
6231 // Token: 0x04000031 RID: 49
6232 private Label label6;
6233
6234 // Token: 0x04000032 RID: 50
6235 private Panel panel8;
6236
6237 // Token: 0x04000033 RID: 51
6238 private Label label7;
6239
6240 // Token: 0x04000034 RID: 52
6241 private Panel panel9;
6242
6243 // Token: 0x04000035 RID: 53
6244 private Label label8;
6245
6246 // Token: 0x04000036 RID: 54
6247 private Panel panel10;
6248
6249 // Token: 0x04000037 RID: 55
6250 private Label label9;
6251
6252 // Token: 0x04000038 RID: 56
6253 private Panel panel11;
6254
6255 // Token: 0x04000039 RID: 57
6256 private Label label10;
6257
6258 // Token: 0x0400003A RID: 58
6259 private Panel panel12;
6260
6261 // Token: 0x0400003B RID: 59
6262 private Label label11;
6263
6264 // Token: 0x0400003C RID: 60
6265 private Panel panel13;
6266
6267 // Token: 0x0400003D RID: 61
6268 private Label label12;
6269
6270 // Token: 0x0400003E RID: 62
6271 private Panel panel14;
6272
6273 // Token: 0x0400003F RID: 63
6274 private Label label13;
6275
6276 // Token: 0x04000040 RID: 64
6277 private Panel panel15;
6278
6279 // Token: 0x04000041 RID: 65
6280 private Label label14;
6281
6282 // Token: 0x04000042 RID: 66
6283 private Panel panel16;
6284
6285 // Token: 0x04000043 RID: 67
6286 private Label label15;
6287
6288 // Token: 0x04000044 RID: 68
6289 private ContextMenuStrip contextMenuStrip1;
6290
6291 // Token: 0x04000045 RID: 69
6292 private Panel panel18;
6293
6294 // Token: 0x04000046 RID: 70
6295 private Label label19;
6296
6297 // Token: 0x04000047 RID: 71
6298 private PictureBox pictureBox15;
6299
6300 // Token: 0x04000048 RID: 72
6301 private Panel panel19;
6302
6303 // Token: 0x04000049 RID: 73
6304 private Label label20;
6305
6306 // Token: 0x0400004A RID: 74
6307 private PictureBox pictureBox16;
6308
6309 // Token: 0x0400004B RID: 75
6310 private Panel panel20;
6311
6312 // Token: 0x0400004C RID: 76
6313 private Label label21;
6314
6315 // Token: 0x0400004D RID: 77
6316 private PictureBox pictureBox17;
6317
6318 // Token: 0x0400004E RID: 78
6319 private Panel panel21;
6320
6321 // Token: 0x0400004F RID: 79
6322 private Label label22;
6323
6324 // Token: 0x04000050 RID: 80
6325 private PictureBox pictureBox18;
6326
6327 // Token: 0x04000051 RID: 81
6328 private Panel panel22;
6329
6330 // Token: 0x04000052 RID: 82
6331 private Label label23;
6332
6333 // Token: 0x04000053 RID: 83
6334 private PictureBox pictureBox19;
6335
6336 // Token: 0x04000054 RID: 84
6337 private Panel panel17;
6338
6339 // Token: 0x04000055 RID: 85
6340 private Label label18;
6341
6342 // Token: 0x04000056 RID: 86
6343 private PictureBox pictureBox2;
6344
6345 // Token: 0x04000057 RID: 87
6346 private Panel panel23;
6347
6348 // Token: 0x04000058 RID: 88
6349 private Label label24;
6350
6351 // Token: 0x04000059 RID: 89
6352 private PictureBox pictureBox20;
6353
6354 // Token: 0x0400005A RID: 90
6355 private Panel panel24;
6356
6357 // Token: 0x0400005B RID: 91
6358 private Label label25;
6359
6360 // Token: 0x0400005C RID: 92
6361 private PictureBox pictureBox21;
6362
6363 // Token: 0x0400005D RID: 93
6364 private Panel panel25;
6365
6366 // Token: 0x0400005E RID: 94
6367 private Label label26;
6368
6369 // Token: 0x0400005F RID: 95
6370 private PictureBox pictureBox22;
6371
6372 // Token: 0x04000060 RID: 96
6373 private Panel panel26;
6374
6375 // Token: 0x04000061 RID: 97
6376 private Label label27;
6377
6378 // Token: 0x04000062 RID: 98
6379 private PictureBox pictureBox23;
6380
6381 // Token: 0x04000063 RID: 99
6382 private Panel panel27;
6383
6384 // Token: 0x04000064 RID: 100
6385 private Label label28;
6386
6387 // Token: 0x04000065 RID: 101
6388 private PictureBox pictureBox24;
6389
6390 // Token: 0x04000066 RID: 102
6391 private Panel panel29;
6392
6393 // Token: 0x04000067 RID: 103
6394 private Label label30;
6395
6396 // Token: 0x04000068 RID: 104
6397 private PictureBox pictureBox26;
6398
6399 // Token: 0x04000069 RID: 105
6400 private Panel panel30;
6401
6402 // Token: 0x0400006A RID: 106
6403 private Label label31;
6404
6405 // Token: 0x0400006B RID: 107
6406 private PictureBox pictureBox27;
6407
6408 // Token: 0x0400006C RID: 108
6409 private Panel panel31;
6410
6411 // Token: 0x0400006D RID: 109
6412 private Label label32;
6413
6414 // Token: 0x0400006E RID: 110
6415 private PictureBox pictureBox28;
6416
6417 // Token: 0x0400006F RID: 111
6418 private Panel panel32;
6419
6420 // Token: 0x04000070 RID: 112
6421 private Label label33;
6422
6423 // Token: 0x04000071 RID: 113
6424 private PictureBox pictureBox29;
6425
6426 // Token: 0x04000072 RID: 114
6427 private Panel panel33;
6428
6429 // Token: 0x04000073 RID: 115
6430 private Label label34;
6431
6432 // Token: 0x04000074 RID: 116
6433 private PictureBox pictureBox30;
6434
6435 // Token: 0x04000075 RID: 117
6436 private Panel panel34;
6437
6438 // Token: 0x04000076 RID: 118
6439 private Label label35;
6440
6441 // Token: 0x04000077 RID: 119
6442 private PictureBox pictureBox31;
6443
6444 // Token: 0x04000078 RID: 120
6445 private Panel panel35;
6446
6447 // Token: 0x04000079 RID: 121
6448 private Label label36;
6449
6450 // Token: 0x0400007A RID: 122
6451 private PictureBox pictureBox32;
6452
6453 // Token: 0x0400007B RID: 123
6454 private Panel panel36;
6455
6456 // Token: 0x0400007C RID: 124
6457 private Label label37;
6458
6459 // Token: 0x0400007D RID: 125
6460 private PictureBox pictureBox33;
6461
6462 // Token: 0x0400007E RID: 126
6463 private Panel panel37;
6464
6465 // Token: 0x0400007F RID: 127
6466 private Label label38;
6467
6468 // Token: 0x04000080 RID: 128
6469 private PictureBox pictureBox34;
6470
6471 // Token: 0x04000081 RID: 129
6472 private Panel panel38;
6473
6474 // Token: 0x04000082 RID: 130
6475 private Label label39;
6476
6477 // Token: 0x04000083 RID: 131
6478 private PictureBox pictureBox35;
6479
6480 // Token: 0x04000084 RID: 132
6481 private Panel panel39;
6482
6483 // Token: 0x04000085 RID: 133
6484 private Label label40;
6485
6486 // Token: 0x04000086 RID: 134
6487 private PictureBox pictureBox36;
6488
6489 // Token: 0x04000087 RID: 135
6490 private Panel panel40;
6491
6492 // Token: 0x04000088 RID: 136
6493 private Label label41;
6494
6495 // Token: 0x04000089 RID: 137
6496 private PictureBox pictureBox37;
6497
6498 // Token: 0x0400008A RID: 138
6499 private Panel panel41;
6500
6501 // Token: 0x0400008B RID: 139
6502 private Label label42;
6503
6504 // Token: 0x0400008C RID: 140
6505 private PictureBox pictureBox38;
6506
6507 // Token: 0x0400008D RID: 141
6508 private Panel panel42;
6509
6510 // Token: 0x0400008E RID: 142
6511 private Label label43;
6512
6513 // Token: 0x0400008F RID: 143
6514 private PictureBox pictureBox39;
6515
6516 // Token: 0x04000090 RID: 144
6517 private Panel panel43;
6518
6519 // Token: 0x04000091 RID: 145
6520 private Label label44;
6521
6522 // Token: 0x04000092 RID: 146
6523 private PictureBox pictureBox40;
6524
6525 // Token: 0x04000093 RID: 147
6526 private Panel panel44;
6527
6528 // Token: 0x04000094 RID: 148
6529 private Label label45;
6530
6531 // Token: 0x04000095 RID: 149
6532 private PictureBox pictureBox41;
6533
6534 // Token: 0x04000096 RID: 150
6535 private Panel panel45;
6536
6537 // Token: 0x04000097 RID: 151
6538 private Label label46;
6539
6540 // Token: 0x04000098 RID: 152
6541 private PictureBox pictureBox42;
6542
6543 // Token: 0x04000099 RID: 153
6544 private Panel panel46;
6545
6546 // Token: 0x0400009A RID: 154
6547 private Label label47;
6548
6549 // Token: 0x0400009B RID: 155
6550 private PictureBox pictureBox43;
6551
6552 // Token: 0x0400009C RID: 156
6553 private Panel panel47;
6554
6555 // Token: 0x0400009D RID: 157
6556 private Label label48;
6557
6558 // Token: 0x0400009E RID: 158
6559 private PictureBox pictureBox44;
6560
6561 // Token: 0x0400009F RID: 159
6562 private Panel panel48;
6563
6564 // Token: 0x040000A0 RID: 160
6565 private Label label49;
6566
6567 // Token: 0x040000A1 RID: 161
6568 private PictureBox pictureBox45;
6569
6570 // Token: 0x040000A2 RID: 162
6571 private Panel panel49;
6572
6573 // Token: 0x040000A3 RID: 163
6574 private Label label50;
6575
6576 // Token: 0x040000A4 RID: 164
6577 private PictureBox pictureBox46;
6578
6579 // Token: 0x040000A5 RID: 165
6580 private Panel panel50;
6581
6582 // Token: 0x040000A6 RID: 166
6583 private Label label51;
6584
6585 // Token: 0x040000A7 RID: 167
6586 private PictureBox pictureBox47;
6587
6588 // Token: 0x040000A8 RID: 168
6589 private Panel panel51;
6590
6591 // Token: 0x040000A9 RID: 169
6592 private Label label52;
6593
6594 // Token: 0x040000AA RID: 170
6595 private PictureBox pictureBox48;
6596
6597 // Token: 0x040000AB RID: 171
6598 private Panel panel52;
6599
6600 // Token: 0x040000AC RID: 172
6601 private Label label53;
6602
6603 // Token: 0x040000AD RID: 173
6604 private PictureBox pictureBox49;
6605
6606 // Token: 0x040000AE RID: 174
6607 private Panel panel53;
6608
6609 // Token: 0x040000AF RID: 175
6610 private Label label54;
6611
6612 // Token: 0x040000B0 RID: 176
6613 private PictureBox pictureBox50;
6614
6615 // Token: 0x040000B1 RID: 177
6616 private Panel panel54;
6617
6618 // Token: 0x040000B2 RID: 178
6619 private Label label55;
6620
6621 // Token: 0x040000B3 RID: 179
6622 private PictureBox pictureBox51;
6623
6624 // Token: 0x040000B4 RID: 180
6625 private Panel panel55;
6626
6627 // Token: 0x040000B5 RID: 181
6628 private Label label56;
6629
6630 // Token: 0x040000B6 RID: 182
6631 private PictureBox pictureBox52;
6632
6633 // Token: 0x040000B7 RID: 183
6634 private Panel panel56;
6635
6636 // Token: 0x040000B8 RID: 184
6637 private Label label57;
6638
6639 // Token: 0x040000B9 RID: 185
6640 private PictureBox pictureBox53;
6641
6642 // Token: 0x040000BA RID: 186
6643 private Panel panel57;
6644
6645 // Token: 0x040000BB RID: 187
6646 private Label label58;
6647
6648 // Token: 0x040000BC RID: 188
6649 private PictureBox pictureBox54;
6650
6651 // Token: 0x040000BD RID: 189
6652 private Panel panel59;
6653
6654 // Token: 0x040000BE RID: 190
6655 private Label label60;
6656
6657 // Token: 0x040000BF RID: 191
6658 private PictureBox pictureBox56;
6659
6660 // Token: 0x040000C0 RID: 192
6661 private Panel panel60;
6662
6663 // Token: 0x040000C1 RID: 193
6664 private Label label61;
6665
6666 // Token: 0x040000C2 RID: 194
6667 private PictureBox pictureBox57;
6668
6669 // Token: 0x040000C3 RID: 195
6670 private Panel panel61;
6671
6672 // Token: 0x040000C4 RID: 196
6673 private Label label62;
6674
6675 // Token: 0x040000C5 RID: 197
6676 private PictureBox pictureBox58;
6677
6678 // Token: 0x040000C6 RID: 198
6679 private Panel panel62;
6680
6681 // Token: 0x040000C7 RID: 199
6682 private Label label63;
6683
6684 // Token: 0x040000C8 RID: 200
6685 private PictureBox pictureBox59;
6686
6687 // Token: 0x040000C9 RID: 201
6688 private Panel panel63;
6689
6690 // Token: 0x040000CA RID: 202
6691 private Label label64;
6692
6693 // Token: 0x040000CB RID: 203
6694 private PictureBox pictureBox60;
6695
6696 // Token: 0x040000CC RID: 204
6697 private Panel panel64;
6698
6699 // Token: 0x040000CD RID: 205
6700 private Label label65;
6701
6702 // Token: 0x040000CE RID: 206
6703 private PictureBox pictureBox61;
6704
6705 // Token: 0x040000CF RID: 207
6706 private Panel panel65;
6707
6708 // Token: 0x040000D0 RID: 208
6709 private Label label17;
6710
6711 // Token: 0x040000D1 RID: 209
6712 private PictureBox pictureBox62;
6713
6714 // Token: 0x040000D2 RID: 210
6715 private Panel panel66;
6716
6717 // Token: 0x040000D3 RID: 211
6718 private Label label66;
6719
6720 // Token: 0x040000D4 RID: 212
6721 private PictureBox pictureBox63;
6722
6723 // Token: 0x040000D5 RID: 213
6724 private Panel panel28;
6725
6726 // Token: 0x040000D6 RID: 214
6727 private Label label29;
6728
6729 // Token: 0x040000D7 RID: 215
6730 private PictureBox pictureBox25;
6731
6732 // Token: 0x040000D8 RID: 216
6733 private Panel panel58;
6734
6735 // Token: 0x040000D9 RID: 217
6736 private Label label59;
6737
6738 // Token: 0x040000DA RID: 218
6739 private PictureBox pictureBox55;
6740
6741 // Token: 0x040000DB RID: 219
6742 private Panel panel67;
6743
6744 // Token: 0x040000DC RID: 220
6745 private Label label67;
6746
6747 // Token: 0x040000DD RID: 221
6748 private PictureBox pictureBox64;
6749
6750 // Token: 0x040000DE RID: 222
6751 private Panel panel68;
6752
6753 // Token: 0x040000DF RID: 223
6754 private Label label68;
6755
6756 // Token: 0x040000E0 RID: 224
6757 private PictureBox pictureBox65;
6758
6759 // Token: 0x040000E1 RID: 225
6760 private Panel panel69;
6761
6762 // Token: 0x040000E2 RID: 226
6763 private Label label69;
6764
6765 // Token: 0x040000E3 RID: 227
6766 private PictureBox pictureBox66;
6767
6768 // Token: 0x040000E4 RID: 228
6769 private Panel panel70;
6770
6771 // Token: 0x040000E5 RID: 229
6772 private Label label70;
6773
6774 // Token: 0x040000E6 RID: 230
6775 private PictureBox pictureBox67;
6776
6777 // Token: 0x040000E7 RID: 231
6778 private Panel panel71;
6779
6780 // Token: 0x040000E8 RID: 232
6781 private Label label71;
6782
6783 // Token: 0x040000E9 RID: 233
6784 private PictureBox pictureBox68;
6785
6786 // Token: 0x040000EA RID: 234
6787 private Panel panel72;
6788
6789 // Token: 0x040000EB RID: 235
6790 private Label label72;
6791
6792 // Token: 0x040000EC RID: 236
6793 private PictureBox pictureBox69;
6794
6795 // Token: 0x040000ED RID: 237
6796 private Panel panel73;
6797
6798 // Token: 0x040000EE RID: 238
6799 private Label label73;
6800
6801 // Token: 0x040000EF RID: 239
6802 private PictureBox pictureBox70;
6803
6804 // Token: 0x040000F0 RID: 240
6805 private Panel panel74;
6806
6807 // Token: 0x040000F1 RID: 241
6808 private Label label74;
6809
6810 // Token: 0x040000F2 RID: 242
6811 private PictureBox pictureBox71;
6812
6813 // Token: 0x040000F3 RID: 243
6814 private Panel panel75;
6815
6816 // Token: 0x040000F4 RID: 244
6817 private Label label75;
6818
6819 // Token: 0x040000F5 RID: 245
6820 private PictureBox pictureBox72;
6821
6822 // Token: 0x040000F6 RID: 246
6823 private Panel panel76;
6824
6825 // Token: 0x040000F7 RID: 247
6826 private Label label76;
6827
6828 // Token: 0x040000F8 RID: 248
6829 private PictureBox pictureBox73;
6830
6831 // Token: 0x040000F9 RID: 249
6832 private Panel panel77;
6833
6834 // Token: 0x040000FA RID: 250
6835 private Label label77;
6836
6837 // Token: 0x040000FB RID: 251
6838 private PictureBox pictureBox74;
6839
6840 // Token: 0x040000FC RID: 252
6841 private Panel panel78;
6842
6843 // Token: 0x040000FD RID: 253
6844 private Label label78;
6845
6846 // Token: 0x040000FE RID: 254
6847 private PictureBox pictureBox75;
6848
6849 // Token: 0x040000FF RID: 255
6850 private Panel panel79;
6851
6852 // Token: 0x04000100 RID: 256
6853 private Label label79;
6854
6855 // Token: 0x04000101 RID: 257
6856 private PictureBox pictureBox76;
6857
6858 // Token: 0x04000102 RID: 258
6859 private Panel panel80;
6860
6861 // Token: 0x04000103 RID: 259
6862 private Label label80;
6863
6864 // Token: 0x04000104 RID: 260
6865 private PictureBox pictureBox77;
6866
6867 // Token: 0x04000105 RID: 261
6868 private Panel panel81;
6869
6870 // Token: 0x04000106 RID: 262
6871 private Label label81;
6872
6873 // Token: 0x04000107 RID: 263
6874 private PictureBox pictureBox78;
6875
6876 // Token: 0x04000108 RID: 264
6877 private Panel panel82;
6878
6879 // Token: 0x04000109 RID: 265
6880 private Label label82;
6881
6882 // Token: 0x0400010A RID: 266
6883 private PictureBox pictureBox79;
6884
6885 // Token: 0x0400010B RID: 267
6886 private Panel panel83;
6887
6888 // Token: 0x0400010C RID: 268
6889 private Label label83;
6890
6891 // Token: 0x0400010D RID: 269
6892 private PictureBox pictureBox80;
6893
6894 // Token: 0x0400010E RID: 270
6895 private Panel panel84;
6896
6897 // Token: 0x0400010F RID: 271
6898 private Label label84;
6899
6900 // Token: 0x04000110 RID: 272
6901 private PictureBox pictureBox81;
6902
6903 // Token: 0x04000111 RID: 273
6904 private Panel panel85;
6905
6906 // Token: 0x04000112 RID: 274
6907 private Label label85;
6908
6909 // Token: 0x04000113 RID: 275
6910 private PictureBox pictureBox82;
6911
6912 // Token: 0x04000114 RID: 276
6913 private Panel panel86;
6914
6915 // Token: 0x04000115 RID: 277
6916 private Label label86;
6917
6918 // Token: 0x04000116 RID: 278
6919 private PictureBox pictureBox83;
6920
6921 // Token: 0x04000117 RID: 279
6922 private Panel panel87;
6923
6924 // Token: 0x04000118 RID: 280
6925 private Label label87;
6926
6927 // Token: 0x04000119 RID: 281
6928 private PictureBox pictureBox84;
6929
6930 // Token: 0x0400011A RID: 282
6931 private Panel panel88;
6932
6933 // Token: 0x0400011B RID: 283
6934 private Label label88;
6935
6936 // Token: 0x0400011C RID: 284
6937 private PictureBox pictureBox85;
6938
6939 // Token: 0x0400011D RID: 285
6940 private Panel panel89;
6941
6942 // Token: 0x0400011E RID: 286
6943 private Label label89;
6944
6945 // Token: 0x0400011F RID: 287
6946 private PictureBox pictureBox86;
6947
6948 // Token: 0x04000120 RID: 288
6949 private Panel panel90;
6950
6951 // Token: 0x04000121 RID: 289
6952 private Label label90;
6953
6954 // Token: 0x04000122 RID: 290
6955 private PictureBox pictureBox87;
6956
6957 // Token: 0x04000123 RID: 291
6958 private Panel panel91;
6959
6960 // Token: 0x04000124 RID: 292
6961 private Label label91;
6962
6963 // Token: 0x04000125 RID: 293
6964 private PictureBox pictureBox88;
6965
6966 // Token: 0x04000126 RID: 294
6967 private Panel panel93;
6968
6969 // Token: 0x04000127 RID: 295
6970 private Label label93;
6971
6972 // Token: 0x04000128 RID: 296
6973 private PictureBox pictureBox90;
6974
6975 // Token: 0x04000129 RID: 297
6976 private Panel panel94;
6977
6978 // Token: 0x0400012A RID: 298
6979 private Label label94;
6980
6981 // Token: 0x0400012B RID: 299
6982 private PictureBox pictureBox91;
6983
6984 // Token: 0x0400012C RID: 300
6985 private Panel panel95;
6986
6987 // Token: 0x0400012D RID: 301
6988 private Label label95;
6989
6990 // Token: 0x0400012E RID: 302
6991 private PictureBox pictureBox92;
6992
6993 // Token: 0x0400012F RID: 303
6994 private Panel panel97;
6995
6996 // Token: 0x04000130 RID: 304
6997 private Label label97;
6998
6999 // Token: 0x04000131 RID: 305
7000 private PictureBox pictureBox94;
7001
7002 // Token: 0x04000132 RID: 306
7003 private Button button10;
7004
7005 // Token: 0x04000133 RID: 307
7006 private Panel panel98;
7007
7008 // Token: 0x04000134 RID: 308
7009 private Label label98;
7010
7011 // Token: 0x04000135 RID: 309
7012 private PictureBox pictureBox95;
7013
7014 // Token: 0x04000136 RID: 310
7015 private Panel panel99;
7016
7017 // Token: 0x04000137 RID: 311
7018 private Label label99;
7019
7020 // Token: 0x04000138 RID: 312
7021 private PictureBox pictureBox96;
7022
7023 // Token: 0x04000139 RID: 313
7024 private Panel panel96;
7025
7026 // Token: 0x0400013A RID: 314
7027 private Label label96;
7028
7029 // Token: 0x0400013B RID: 315
7030 private PictureBox pictureBox93;
7031
7032 // Token: 0x0400013C RID: 316
7033 private Panel panel100;
7034
7035 // Token: 0x0400013D RID: 317
7036 private Label label100;
7037
7038 // Token: 0x0400013E RID: 318
7039 private PictureBox pictureBox97;
7040
7041 // Token: 0x0400013F RID: 319
7042 private Button button9;
7043
7044 // Token: 0x04000140 RID: 320
7045 private Panel panel102;
7046
7047 // Token: 0x04000141 RID: 321
7048 private Label label16;
7049
7050 // Token: 0x04000142 RID: 322
7051 private PictureBox pictureBox99;
7052
7053 // Token: 0x04000143 RID: 323
7054 private Panel panel103;
7055
7056 // Token: 0x04000144 RID: 324
7057 private Label label102;
7058
7059 // Token: 0x04000145 RID: 325
7060 private PictureBox pictureBox100;
7061
7062 // Token: 0x04000146 RID: 326
7063 private Panel panel101;
7064
7065 // Token: 0x04000147 RID: 327
7066 private Label label101;
7067
7068 // Token: 0x04000148 RID: 328
7069 private PictureBox pictureBox98;
7070
7071 // Token: 0x04000149 RID: 329
7072 private ListBox listBox1;
7073
7074 // Token: 0x0400014A RID: 330
7075 private Timer timer1;
7076
7077 // Token: 0x0400014B RID: 331
7078 private Panel panel104;
7079
7080 // Token: 0x0400014C RID: 332
7081 private Label label103;
7082
7083 // Token: 0x0400014D RID: 333
7084 private PictureBox pictureBox101;
7085
7086 // Token: 0x0400014E RID: 334
7087 private Panel panel105;
7088
7089 // Token: 0x0400014F RID: 335
7090 private Label label104;
7091
7092 // Token: 0x04000150 RID: 336
7093 private PictureBox pictureBox102;
7094
7095 // Token: 0x04000151 RID: 337
7096 private Panel panel106;
7097
7098 // Token: 0x04000152 RID: 338
7099 private Label label105;
7100
7101 // Token: 0x04000153 RID: 339
7102 private PictureBox pictureBox103;
7103
7104 // Token: 0x04000154 RID: 340
7105 private Panel panel107;
7106
7107 // Token: 0x04000155 RID: 341
7108 private Label label106;
7109
7110 // Token: 0x04000156 RID: 342
7111 private PictureBox pictureBox104;
7112
7113 // Token: 0x04000157 RID: 343
7114 private Panel panel108;
7115
7116 // Token: 0x04000158 RID: 344
7117 private Label label107;
7118
7119 // Token: 0x04000159 RID: 345
7120 private PictureBox pictureBox105;
7121
7122 // Token: 0x0400015A RID: 346
7123 private Button button11;
7124
7125 // Token: 0x0400015B RID: 347
7126 private Panel panel109;
7127
7128 // Token: 0x0400015C RID: 348
7129 private Label label108;
7130
7131 // Token: 0x0400015D RID: 349
7132 private PictureBox pictureBox106;
7133
7134 // Token: 0x0400015E RID: 350
7135 private Panel panel110;
7136
7137 // Token: 0x0400015F RID: 351
7138 private Label label109;
7139
7140 // Token: 0x04000160 RID: 352
7141 private PictureBox pictureBox107;
7142
7143 // Token: 0x04000161 RID: 353
7144 private Panel panel111;
7145
7146 // Token: 0x04000162 RID: 354
7147 private Label label110;
7148
7149 // Token: 0x04000163 RID: 355
7150 private PictureBox pictureBox108;
7151
7152 // Token: 0x04000164 RID: 356
7153 private Panel panel112;
7154
7155 // Token: 0x04000165 RID: 357
7156 private Label label111;
7157
7158 // Token: 0x04000166 RID: 358
7159 private PictureBox pictureBox109;
7160
7161 // Token: 0x04000167 RID: 359
7162 private Panel panel113;
7163
7164 // Token: 0x04000168 RID: 360
7165 private Label label112;
7166
7167 // Token: 0x04000169 RID: 361
7168 private PictureBox pictureBox110;
7169
7170 // Token: 0x0400016A RID: 362
7171 private Panel panel92;
7172
7173 // Token: 0x0400016B RID: 363
7174 private Label label92;
7175
7176 // Token: 0x0400016C RID: 364
7177 private PictureBox pictureBox89;
7178
7179 // Token: 0x0400016D RID: 365
7180 private Panel panel114;
7181
7182 // Token: 0x0400016E RID: 366
7183 private Label label113;
7184
7185 // Token: 0x0400016F RID: 367
7186 private PictureBox pictureBox111;
7187
7188 // Token: 0x04000170 RID: 368
7189 private Panel panel115;
7190
7191 // Token: 0x04000171 RID: 369
7192 private Label label114;
7193
7194 // Token: 0x04000172 RID: 370
7195 private PictureBox pictureBox112;
7196
7197 // Token: 0x04000173 RID: 371
7198 private Panel panel116;
7199
7200 // Token: 0x04000174 RID: 372
7201 private Label label115;
7202
7203 // Token: 0x04000175 RID: 373
7204 private PictureBox pictureBox113;
7205
7206 // Token: 0x04000176 RID: 374
7207 private Panel panel117;
7208
7209 // Token: 0x04000177 RID: 375
7210 private Label label116;
7211
7212 // Token: 0x04000178 RID: 376
7213 private PictureBox pictureBox114;
7214
7215 // Token: 0x04000179 RID: 377
7216 private Panel panel118;
7217
7218 // Token: 0x0400017A RID: 378
7219 private Label label117;
7220
7221 // Token: 0x0400017B RID: 379
7222 private PictureBox pictureBox115;
7223
7224 // Token: 0x0400017C RID: 380
7225 private Panel panel119;
7226
7227 // Token: 0x0400017D RID: 381
7228 private Label label118;
7229
7230 // Token: 0x0400017E RID: 382
7231 private PictureBox pictureBox116;
7232
7233 // Token: 0x0400017F RID: 383
7234 private Panel panel120;
7235
7236 // Token: 0x04000180 RID: 384
7237 private Label label119;
7238
7239 // Token: 0x04000181 RID: 385
7240 private PictureBox pictureBox117;
7241
7242 // Token: 0x04000182 RID: 386
7243 private Panel panel121;
7244
7245 // Token: 0x04000183 RID: 387
7246 private Label label120;
7247
7248 // Token: 0x04000184 RID: 388
7249 private PictureBox pictureBox118;
7250
7251 // Token: 0x04000185 RID: 389
7252 private Panel panel122;
7253
7254 // Token: 0x04000186 RID: 390
7255 private Label label121;
7256
7257 // Token: 0x04000187 RID: 391
7258 private PictureBox pictureBox119;
7259
7260 // Token: 0x04000188 RID: 392
7261 private Panel panel123;
7262
7263 // Token: 0x04000189 RID: 393
7264 private Label label122;
7265
7266 // Token: 0x0400018A RID: 394
7267 private PictureBox pictureBox120;
7268 }
7269}